From 671b04911746daf3cf7ba308ea812b6f395d0ff6 Mon Sep 17 00:00:00 2001 From: tous <tous@disroot.org> Date: Tue, 18 Jul 2023 14:22:14 +0000 Subject: [PATCH 001/119] Rename Tails Installer as Tails Cloner --- .../python3/dist-packages/tails_installer/gui.py | 2 +- .../usr/lib/python3/dist-packages/tps/device.py | 4 ++-- .../usr/local/bin/tails-backup | 4 ++-- .../lib/tails-boot-device-can-have-persistence | 2 +- .../applications/tails-installer.desktop.in | 2 +- .../src/iuk/features/frontend/Frontend.feature | 2 +- .../usr/src/iuk/lib/Tails/IUK/Frontend.pm | 2 +- features/images/TailsClonerWindow.png | Bin 0 -> 1293 bytes features/images/TailsInstallerWindow.png | Bin 1368 -> 0 bytes features/step_definitions/usb.rb | 4 ++-- wiki/src/contribute/design/UEFI.mdwn | 8 ++++---- wiki/src/contribute/design/installation.mdwn | 12 ++++++------ .../design/installation_instructions.mdwn | 2 +- wiki/src/contribute/design/upgrades.mdwn | 2 +- wiki/src/contribute/how/code.mdwn | 2 +- wiki/src/doc/first_steps/desktop.mdwn | 2 +- wiki/src/doc/persistent_storage/backup.mdwn | 4 ++-- wiki/src/doc/upgrade.mdwn | 4 ++-- wiki/src/install/inc/steps/clone.inline.mdwn | 12 ++++++------ wiki/src/security/argon2id.mdwn | 6 +++--- .../argon2id/tails_installer.inline.mdwn | 2 +- 21 files changed, 39 insertions(+), 39 deletions(-) create mode 100755 features/images/TailsClonerWindow.png delete mode 100644 features/images/TailsInstallerWindow.png diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py index 505cde16bdb..34ae34aefdf 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py @@ -293,7 +293,7 @@ class TailsInstallerWindow(Gtk.ApplicationWindow): # Set windows properties self.set_deletable(True) self.connect('delete-event', Gtk.main_quit) - self.set_title(_('Tails Installer')) + self.set_title(_('Tails Cloner')) # Import window content from UI file builder = Gtk.Builder.new_from_file(os.path.join(_get_datadir(), 'tails-installer.ui')) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 492fd3234be..2772290fa76 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -69,7 +69,7 @@ class BootDevice(object): logger.debug(f"Partition table type: {partition_table_type}") raise InvalidBootDeviceError( "You can only create a Persistent Storage on a USB stick " - "installed with a USB image or Tails Installer." + "installed with a USB image or Tails Cloner." ) self.block = self.udisks_object.get_block() if not self.block: @@ -103,7 +103,7 @@ class BootDevice(object): logger.debug(f"Partition name: {partition_name}") raise InvalidBootDeviceError( "You can only create a Persistent Storage on a USB stick " - "installed with a USB image or Tails Installer." + "installed with a USB image or Tails Cloner." ) return BootDevice(udisks.get_object(partition.props.table)) diff --git a/config/chroot_local-includes/usr/local/bin/tails-backup b/config/chroot_local-includes/usr/local/bin/tails-backup index 867e0a98a7e..be45d27f655 100755 --- a/config/chroot_local-includes/usr/local/bin/tails-backup +++ b/config/chroot_local-includes/usr/local/bin/tails-backup @@ -63,7 +63,7 @@ if [ ! -d "$SOURCE" ] || [ ! -b "$(backup_luks_device)" ]; then fi fi -msg="$(gettext -s 'Do you want to back up your Persistent Storage now?\n\nThis will replace all data in the Persistent Storage of your backup Tails USB stick.\n\nThis will not update the version of Tails on your backup Tails USB stick. Use Tails Installer to do so.')" +msg="$(gettext -s 'Do you want to back up your Persistent Storage now?\n\nThis will replace all data in the Persistent Storage of your backup Tails USB stick.\n\nThis will not update the version of Tails on your backup Tails USB stick. Use Tails Cloner to do so.')" if ! zenity --question --ellipsize --title "$title" --text "$msg" --ok-label "$(gettext -s 'Back Up')" --cancel-label "$(gettext -s 'Cancel')" ; then exit 1 fi @@ -102,7 +102,7 @@ then echo "Done!" gio mount --eject "${DEST}" title="$(gettext -s 'Persistent Storage Backup Successful')" - msg="$(gettext -s '<b>Your Persistent Storage was backed up successfully to your backup Tails USB stick!</b>\n\nYou can now safely unplug your backup Tails USB stick.\n\nIf your backup Tails USB stick has an outdated version of Tails, we recommend you\nupdate it by cloning your current Tails using <i>Tails Installer</i>.\n\nSee <a href="file:///usr/share/doc/tails/website/upgrade/clone.en.html#upgrade">manually upgrade from another Tails</a>.')" + msg="$(gettext -s '<b>Your Persistent Storage was backed up successfully to your backup Tails USB stick!</b>\n\nYou can now safely unplug your backup Tails USB stick.\n\nIf your backup Tails USB stick has an outdated version of Tails, we recommend you\nupdate it by cloning your current Tails using <i>Tails Cloner</i>.\n\nSee <a href="file:///usr/share/doc/tails/website/upgrade/clone.en.html#upgrade">manually upgrade from another Tails</a>.')" zenity --info --ellipsize --title "$title" --text "$msg" else title="$(gettext -s 'Persistent Storage Backup Failed')" diff --git a/config/chroot_local-includes/usr/local/lib/tails-boot-device-can-have-persistence b/config/chroot_local-includes/usr/local/lib/tails-boot-device-can-have-persistence index 7a3b285c10b..ea9ec3fb08d 100755 --- a/config/chroot_local-includes/usr/local/lib/tails-boot-device-can-have-persistence +++ b/config/chroot_local-includes/usr/local/lib/tails-boot-device-can-have-persistence @@ -22,7 +22,7 @@ if (! $running_system->started_from_writable_device) { } if (! $running_system->started_from_device_installed_with_tails_installer) { - say STDERR "The boot device was not created using a USB image or Tails Installer"; + say STDERR "The boot device was not created using a USB image or Tails Cloner"; exit 32; } diff --git a/config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in b/config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in index 5b8e135d53e..34108eec8a2 100644 --- a/config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in +++ b/config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in @@ -1,6 +1,6 @@ [Desktop Entry] Type=Application -_Name=Tails Installer +_Name=Tails Cloner _Comment=Install, clone, upgrade Tails Icon=tails-installer.svg Exec=/usr/local/bin/tails-installer diff --git a/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature b/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature index 070a80c05e9..f5ada104c75 100644 --- a/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature +++ b/config/chroot_local-includes/usr/src/iuk/features/frontend/Frontend.feature @@ -27,7 +27,7 @@ Feature: upgrade frontend When I run tails-upgrade-frontend in batch mode Then it should succeed And I should be proposed to download this full upgrade - And I should be told "your device was not created using a USB image or Tails Installer" + And I should be told "your device was not created using a USB image or Tails Cloner" Scenario: DVD: no upgrade is available Given Tails is running from a DVD diff --git a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm index 83d1eb6c285..c22041ba793 100644 --- a/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm +++ b/config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm @@ -361,7 +361,7 @@ method no_incremental_explanation (Str $no_incremental_reason) { } elsif ($no_incremental_reason eq 'not-installed-with-tails-installer') { $explanation = __( - q{your device was not created using a USB image or Tails Installer} + q{your device was not created using a USB image or Tails Cloner} ); } elsif ($no_incremental_reason eq 'non-writable-device') { diff --git a/features/images/TailsClonerWindow.png b/features/images/TailsClonerWindow.png new file mode 100755 index 0000000000000000000000000000000000000000..7289b02a1d60402e8346fb77bc7cb27b16c73cb4 GIT binary patch literal 1293 zcmV+o1@iidP)<h;3K|Lk000e1NJLTq003P8001lq0ssI2h;1YA000EkNkl<ZcmeH} z^R^^O5Qpo9#-3~2*4Uow#<gwRwr#8J(VOgVIu~^|w|eb7=ldfnGCH#ItE$ZAzI-$? zXt*yQ3^WYx^9KV3<JWp&UYHj>4TJk^($g@wPbNKshItY6qGQl-pNzUcki*@b<AYrU z|8@kughfZ6zj~eK<(oG`KhY><S8rKex3bZx6!NoU6r;&6zm=xurn?Ux+Bv)4u(tIJ z3MnfqqniA6a37628jzin^X%nI;N=&9n+psLBbVis6+%BT=`{hNp&=0w2xQ+ai7ult zXjOL}JU~5+ghoaMheuq!ZT&tzo@(;f0WVt1<mTt$=9-(E5dU&yXGdg7h=1V}PoBR} z%1%heq*rTHGOEd6$8Yg+xW9vk>Ehvqug2BW8wFSf8M<z5W9RHbdueTL@eK;PW@YW* z>W)`KuTdaL&}kG`ZdqA5IH?t<mgVZy@|5&6H*fD7Hg*xwG4pdX#2{)!5^-E&f{l~2 zy^Cu}SqZ6^pB}!CjdO5uL-W^f-^or6NFMcKsWc-q1GgG=_pX2!gVr*+dEa^YE^~6Y zhmQ9jKgM2T>*S2l>Y8dYM7$u7otl>v6^(dle(u7x8%`b`xRoT42=~hGzq~k)%7;&$ z(o^%Bfcp<0<1#cN^1+iQ2w-z}Yu%(%BL?o?zE~tCLOe4yfxLfk2x?*z;-9{Ffh2C2 z^g(>_`b|8f(8y?!M1l;>uk%8)FgH!6wBV(^trhX3r%w-dx9JXDogEl`9~WoY%k1<d z;+T8)Kj<~M#P)|vtcrNSYk~mzwDfdb<`?7-^!Fl2Oim`P0z<>0OskY5CL7t#<_2OR zxDN)6WpeX!&0ZS$$&rzv$IqVO6~G3GQS7xOPrM+IogSK(6ovTo=)l?C6PLg*IHa$) zhu>;udIEWT7xdKpCe<}nh|9{$$k5u#A}*uv-ZSb{2+*J8ySqDaDM^tQ6&KNm>CwS1 zYWVd+{1z{>GgEjEaY9W^j_>Yl{HzyX&?-AS+h4zXhb;-uZGLVVNrK|+7@12qZf$R_ zS@2R)T7tNwtdtBbEX<hS!6!fR0_ns{U41Qr_wjMd%L{;j;$Q4Vud&E?UYZ&a6Ud_| zEGk5-JUb>{$k10WPA&*!Cx_;}APTWjs{*7TBQq2EhK73n6!D3PNCt$2?rv|84EYtm z$v|H(iAk$G^J$QklY>jLP9(v%UZm35=_#`5=+z43`S9z7_$^+#x;l}uadN`PjJM_| zy%;pg%QtW1KVET3@%ZS7le>pVEKbkN#6FF8ZFy;dKZX4C*e4*6Y^6bA;ddW={dbov z67id0{iFsnK7aKZO|0x4Ax_8(;(HGtAr1@)!y|kf8;j(x@}jm3&x@L1(y5X~$+zw7 zp#T9sa(E#_#0!b5Dl1T9@8Z_d+!z^i2Ztp-B2Pd6mX;=Z7QI@YpPz@b24^rT!=s~H zTbuYz_I5Uo4|iX_c@4AHj?UP{aTuY%s8y16A_jfE-NXxGe4?poscv3AFdG;Wnx2_K zYWVd+a5(=d7=m7y7oD1h0WT^VhJY951%GvD7#z-j8V0;5X&B54^YUxp3|b`x170)= z8is%u=4EYuf`-9`UX{`?{<&V57v_a|VP2RQ=7sSM@&@G=*Qbb^00000NkvXXu0mjf D$Kh^_ literal 0 HcmV?d00001 diff --git a/features/images/TailsInstallerWindow.png b/features/images/TailsInstallerWindow.png deleted file mode 100644 index 37bda64c59319a3a9b574b31d5651fefa0874fbb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1368 zcmV-e1*iInP)<h;3K|Lk000e1NJLTq003VA001Kh0ssI2ea=A`000FaNkl<ZXx{Bu zdr(w$6h3?J-344+7T8^$3oH+l3?x9Lz#!xep-_=BA%>GNG*lx)=0F;17#PkVgBgvb z&6HR%Sbzd;2$I^M&?1lJkq9i07<NHpcX{vakA-bv_bv<l)7bsy{&Du+^E>Ce-~F9) z?q15no=zY^0OVh;9~+ZM#>byjbufI%I+A@-*x9Y=vEzB)^t4p1i>IciQ`6r^5aiP5 zMKg1=``%1--Ms14v8+|IDsvT`$+fYvS`*#r=^2G$!N|ynLZRqz`%5ZSkx{qTtPa4U zK5nkArY0r;AQ~JJ4GlXx@;Gc30Ju0iseD$zfJWtVZ7>w2Qqh??l@G3Wc6=?)007y! zr-hx}7ta?mO&F_1)=Yt~L!Ct=#K$R(lG3XsKa@p=1_uTBuTqu>lK*k`6Wn(&ErM!j zEtZU5E-h<o7fw8SWM*m_xWg|#HU>cu0N9g!(8$p6t8-@;otGX}UBm4kE3c1?j?(FL zuB~-u`g>F=b!7@16bp*D*WZW=4W6BwYi#}<MUa;w!eXN%wMICalPB!z27vu3X&e@- z_-sBQF?BM_iA_#UUi{{YptWswe%{mF?LgvQ27>_ryAzV4!$S>d)Y_ZB+S*v3$oyd0 z-q8URMVbXIjy#7=E>5lO9VMk@493RDkex*S4|@9w&KI*-W>I0m@~P?Bnb~F1XrQu& zZ*6J$l(SQFOY5a?uWWX4rcr5{5rP9>5KAOuV#)5P2y=6@br4f16vs}T77Yyt_&+C; z$?I?3mda%xW*kypy;j4gQZb&rgPpCdsw)$19$a;a$u#-$T!GRa`ExY&(BURQOGHSJ z+5%jC)!@i5j^jK#Zdh;-n`OS_urdX{l)}uES@>xVf*@aC{;sV2T5E^Ug2UE~5ES6g zud5#uOLj#^FijXZ;Kan#Z{Z*No<Pvs*B=)AVoGun0AyrkHw*4h&&(JY&;Y=IM$6AR zZe__)5yteaKtXGJ)z825_V+)2JP80&sZ@uv`!ieEZ1ct@L1UAE=U~6*<yapt4_)Pr zV#+#oadHHJNvSj>C{WJ`Ya%8Z90q`D{*7w>4b@4RT&`4Sqp`748l8PdquF=$JUEe? z@91EEa9^SYhyBjsOf6$U?I)AL_$)u~w|h-@n*?_n?|yQoAn*85XGfl{k%a>Qpa`m0 zgr$Xq#0W-~F`W(oI|Ft^g@>wGFc}P@v8LDFY47Y*C=|Ziyu3X<<Z`*LL8@3RZwiIt zx828YyAR9Utn{afz5$UIb%;R}0YxzYn3T$t6J0kkB^h<wp34OQVOLK|auSAN`b>0u z)wc#q3l0F3S5?bo^41QaHl6VeMur%M^$iS^Ra83jc!k9md^|l23=M1R8xRC>a&!Rg z4Gv#9#+1)P*r_!F&yL&HAuRghg4b5JS7T#{h^do_i3n5KvC)y9Tiu&m?jQN+q_2<n z(8!4K26}ShUTp<&DnoMuDi7anUJ)Td3-b$g4YypJc<x)C)+i=GP;`I7YZ!)B zRPn{*;~X~o=AFih>ovy4^t87QIM{J<EhR`;od}9(jqplbjE~o|{UT9yZJl_0f{55M zG7}RjdsHmWc=zpHQQ<QA)c04*MWP`pjjEM~@}T_D)lUA~T+7=a3H|yG`2~Z7K3_0M zkbQ^jJ7nJ>)gim`f4(b|`jC~izP&Rv@Q_r22$Xp5EK&usvPgAEbx3tcbx3tcbx3vo aulO5K&cDZ6t#tbU0000<MNUMnLSTZtY=n&f diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index f725b688572..56d98f03e58 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -145,14 +145,14 @@ When /^I start Tails Installer$/ do command = "/usr/local/bin/tails-installer --verbose 2>&1 | tee #{@installer_log_path} | logger -t tails-installer" step "I run \"#{command}\" in GNOME Terminal" @installer = Dogtail::Application.new('tails-installer') - @installer.child('Tails Installer', roleName: 'frame') + @installer.child('Tails Cloner', roleName: 'frame') # Sometimes Dogtail will find the Installer and click its window # before it is shown (searchShowingOnly is not perfect) which # generally means clicking somewhere on the Terminal => the click is # lost *and* the installer does not go to the foreground. So let's # wait a bit extra. sleep 3 - @screen.wait('TailsInstallerWindow.png', 10).click + @screen.wait('TailsClonerWindow.png', 10).click end When /^I am told by Tails Installer that.*"([^"]+)".*$/ do |status| diff --git a/wiki/src/contribute/design/UEFI.mdwn b/wiki/src/contribute/design/UEFI.mdwn index 555881fd623..668cc4f2bcf 100644 --- a/wiki/src/contribute/design/UEFI.mdwn +++ b/wiki/src/contribute/design/UEFI.mdwn @@ -8,9 +8,9 @@ Goals and non-goals Goals ----- -* devices produced by Tails Installer should boot on most UEFI-only +* devices produced by Tails Cloner should boot on most UEFI-only hardware (e.g. some relevant set of Macs) -* devices produced by Tails Installer should boot on most hardware +* devices produced by Tails Cloner should boot on most hardware that only supports UEFI boot for GPT devices (e.g. ThinkPad X220) * Legacy BIOS boot support should be left unaffected (modulo a tiny amount of really crazy firmware bugs, probably) @@ -106,9 +106,9 @@ The UEFI boot loader setup is taken care of by: * `config/binary_local-includes/EFI/debian/grub.cfg` * `config/binary_local-includes/EFI/debian/grub/splash.png` -### Tails Installer +### Tails Cloner -Tails Installer creates the Tails system partition as an EFI System +Tails Cloner creates the Tails system partition as an EFI System Partition (ESP), with the corresponding GUID. Future work diff --git a/wiki/src/contribute/design/installation.mdwn b/wiki/src/contribute/design/installation.mdwn index 35ffc5314e5..3604cedc52f 100644 --- a/wiki/src/contribute/design/installation.mdwn +++ b/wiki/src/contribute/design/installation.mdwn @@ -1,8 +1,8 @@ -[[!meta title="Tails Installer"]] +[[!meta title="Tails Cloner"]] Tails is easily installed to a USB storage device by cloning an existing Tails system that is running from DVD or USB. -Tails Installer also supports upgrades from an ISO image or from +Tails Cloner also supports upgrades from an ISO image or from the currently running Tails system. The choice between possible destination @@ -19,7 +19,7 @@ Related documents Upgrades ======== -Tails Installer can perform a full upgrade of an already installed +Tails Cloner can perform a full upgrade of an already installed USB stick. During this process, nothing is modified on the target drive but the Tails system partition and the [[!wikipedia Master boot record]]. @@ -32,9 +32,9 @@ modules that are shipped by the version of Tails the target drive was just upgraded to. Security discussion: with this mechanism in place, anyone who can feed -an arbitrary ISO into Tails Installer can run arbitrary code (stored +an arbitrary ISO into Tails Cloner can run arbitrary code (stored in the ISO filesystem as `utils/linux/syslinux`) as the user running -Tails Installer. We have no mechanism to run Tails Installer with +Tails Cloner. We have no mechanism to run Tails Cloner with elevated privileges currently, so this should not be a problem: being able to run `tails-installer` with arbitrary arguments is equivalent to being able to run arbitrary code already. @@ -122,5 +122,5 @@ future upstream of ours. Source code =========== -The Tails Installer source code lives in the [[!tails_gitweb_repo installer]] +The Tails Cloner source code lives in the [[!tails_gitweb_repo installer]] Git repository. diff --git a/wiki/src/contribute/design/installation_instructions.mdwn b/wiki/src/contribute/design/installation_instructions.mdwn index feb74c7d932..3dbb08a69c3 100644 --- a/wiki/src/contribute/design/installation_instructions.mdwn +++ b/wiki/src/contribute/design/installation_instructions.mdwn @@ -30,7 +30,7 @@ scenarios|doc/upgrade#manual]]: Related documents ================= -- [[Design document of *Tails Installer*|installation]] +- [[Design document of *Tails Cloner*|installation]] - [[Design document of the download verification|download_verification]] - [Archive of our design artifacts](https://gitlab.tails.boum.org/tails/ux/-/tree/master/installation%20assistant) - [[!tails_ticket 18074 desc="Usability tests from December 2021"]] diff --git a/wiki/src/contribute/design/upgrades.mdwn b/wiki/src/contribute/design/upgrades.mdwn index 2150c90ea65..92504dcb175 100644 --- a/wiki/src/contribute/design/upgrades.mdwn +++ b/wiki/src/contribute/design/upgrades.mdwn @@ -430,7 +430,7 @@ Resources: ### full upgrade -The Tails installer is still in charge of performing full upgrades. +The Tails Cloner is still in charge of performing full upgrades. It deletes any `live/*.squashfs` file other than the one shipped in the new ISO. diff --git a/wiki/src/contribute/how/code.mdwn b/wiki/src/contribute/how/code.mdwn index 4d102978ffb..d8424d4fb66 100644 --- a/wiki/src/contribute/how/code.mdwn +++ b/wiki/src/contribute/how/code.mdwn @@ -80,7 +80,7 @@ Let's see how we can help you picking up a task. A few tips: - Python: - *Onion Circuits* - Welcome Screen - - *Tails Installer* + - *Tails Cloner* - *WhisperBack* - Persistent Storage - Perl: diff --git a/wiki/src/doc/first_steps/desktop.mdwn b/wiki/src/doc/first_steps/desktop.mdwn index 47686dc24e9..3942dcfb4b1 100644 --- a/wiki/src/doc/first_steps/desktop.mdwn +++ b/wiki/src/doc/first_steps/desktop.mdwn @@ -127,7 +127,7 @@ shortcuts allow you to launch the most frequently used applications: <div class="icon"> [[!img lib/apps/tails-installer.png link="no" alt=""]] <div class="text"> -<strong>Tails Installer</strong> to clone Tails to another USB stick<br/> +<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/> </div> </div> diff --git a/wiki/src/doc/persistent_storage/backup.mdwn b/wiki/src/doc/persistent_storage/backup.mdwn index a7de9bbcbf7..200950562d1 100644 --- a/wiki/src/doc/persistent_storage/backup.mdwn +++ b/wiki/src/doc/persistent_storage/backup.mdwn @@ -23,7 +23,7 @@ replace it immediately with your backup Tails. 1. Plug in the new USB stick on which you want to create your backup Tails USB stick. -1. Choose **Applications** â–¸ **Tails Installer**. +1. Choose **Applications** â–¸ **Tails Cloner**. 1. Turn on the option **Clone the current Persistent Storage** below the option **Clone the current Tails**. @@ -76,7 +76,7 @@ replace it immediately with your backup Tails. </div> 1. If your backup Tails has an outdated version of Tails, we recommend you upgrade it by cloning your - current Tails using <span class="application">Tails Installer</span>. + current Tails using <span class="application">Tails Cloner</span>. For detailed instructions, see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]. diff --git a/wiki/src/doc/upgrade.mdwn b/wiki/src/doc/upgrade.mdwn index c9a63b525df..f0894d89eeb 100644 --- a/wiki/src/doc/upgrade.mdwn +++ b/wiki/src/doc/upgrade.mdwn @@ -122,7 +122,7 @@ version becomes 4.8, and then: [[!img manual.svg link="no" alt=""]] -<h1 id="manual">Manual upgrade using <i>Tails Installer</i></h1> +<h1 id="manual">Manual upgrade using <i>Tails Cloner</i></h1> It might not always be possible to do an automatic upgrade as described [[above|upgrade#automatic]]. For example, when: @@ -142,7 +142,7 @@ For example, when: Internet connection. After connecting to Tor, a dialog informs you if you have to -upgrade your USB stick using <span class="application">Tails Installer</span> +upgrade your USB stick using <span class="application">Tails Cloner</span> to a newer version of Tails. [[!img upgrader_manual.png link=no]] diff --git a/wiki/src/install/inc/steps/clone.inline.mdwn b/wiki/src/install/inc/steps/clone.inline.mdwn index 096954ecb51..bb5fce99a0d 100644 --- a/wiki/src/install/inc/steps/clone.inline.mdwn +++ b/wiki/src/install/inc/steps/clone.inline.mdwn @@ -12,7 +12,7 @@ <span class="upgrade-clone">other</span> <span class="upgrade-tails upgrade-os">intermediary</span> Tails using - <span class="application">Tails Installer</span>. + <span class="application">Tails Cloner</span>. </p> 1. Plug @@ -28,12 +28,12 @@ <span class="menuchoice"> <span class="guimenu">Applications</span> â–¸ <span class="guisubmenu">Tails</span> â–¸ - <span class="guimenuitem">Tails Installer</span> + <span class="guimenuitem">Tails Cloner</span> </span> - to start <span class="application">Tails Installer</span>. + to start <span class="application">Tails Cloner</span>. - [[!img install/inc/screenshots/tails_installer.png link="no" class="pc-clone mac-clone" alt="Tails Installer: 'Clone the current Tails'"]] - [[!img install/inc/screenshots/tails_installer_upgrade.png link="no" class="upgrade" alt="Tails Installer: 'Clone the current Tails'"]] + [[!img install/inc/screenshots/tails_installer.png link="no" class="pc-clone mac-clone" alt="Tails Cloner: 'Clone the current Tails'"]] + [[!img install/inc/screenshots/tails_installer_upgrade.png link="no" class="upgrade" alt="Tails Cloner: 'Clone the current Tails'"]] 1. Choose <span class="pc-clone mac-clone">the new</span> @@ -63,7 +63,7 @@ while synchronizing data on disk.</p> </div> -1. After the installation finishes, close <span class="application">Tails Installer</span>. +1. After the installation finishes, close <span class="application">Tails Cloner</span>. [[!img install/inc/screenshots/installation_complete.png link="no" alt=""]] diff --git a/wiki/src/security/argon2id.mdwn b/wiki/src/security/argon2id.mdwn index 833eb94ea2c..fd726aea32a 100644 --- a/wiki/src/security/argon2id.mdwn +++ b/wiki/src/security/argon2id.mdwn @@ -178,7 +178,7 @@ To secure your [[backup Tails|doc/persistent_storage/backup]], if you have one: 1. Update your main Tails USB stick to Tails 5.14. -1. Create a new backup Tails using *Tails Installer* +1. Create a new backup Tails using *Tails Cloner* If you created your Persistent Storage with Tails 5.12 or earlier, we recommend you create your new backup Tails on a different USB stick and @@ -307,7 +307,7 @@ To secure your [[backup Tails|doc/persistent_storage/backup]], if you have one: 1. Update your main Tails USB stick to Tails 5.14. -1. Update your backup or create a new backup Tails using *Tails Installer*. +1. Update your backup or create a new backup Tails using *Tails Cloner*. If you created your backup Tails with Tails 5.12 or earlier and are worried about a very powerful adversary, consider creating your new backup Tails on a @@ -404,7 +404,7 @@ If you want to upgrade your backup Tails to LUKS2 anyway: 1. Update your main Tails USB stick to Tails 5.14. -1. Update your backup using *Tails Installer*. +1. Update your backup using *Tails Cloner*. [[!toggle id="6_backup_tails_installer" text="Display the instructions to update your backup."]] [[!toggleable id="6_backup_tails_installer" text=""" diff --git a/wiki/src/security/argon2id/tails_installer.inline.mdwn b/wiki/src/security/argon2id/tails_installer.inline.mdwn index 60b8d53ad54..c0ba579e8f0 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.mdwn +++ b/wiki/src/security/argon2id/tails_installer.inline.mdwn @@ -2,7 +2,7 @@ 1. Plug in the new USB stick. - 1. Choose **Applications** â–¸ **Tails Installer**. + 1. Choose **Applications** â–¸ **Tails Cloner**. 1. Turn on the option **Clone the current Persistent Storage** below the option **Clone the current Tails**. -- GitLab From 32c0381c4cdef1378fc676f7da57976548001505 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Thu, 10 Aug 2023 09:28:28 +0000 Subject: [PATCH 002/119] GitLab CI: allow forcing to run a pipeline by setting $CI_FORCE_RUN This is useful for example when someone without commit access created a MR for a branch in their own repository. In this case, we don't get Jenkins nor GitLab CI results, so usually we will push a copy of the branch to the main repo. This will give us Jenkins results, but not GitLab CI. With this change, one can manually trigger a GitLab CI pipeline run, setting the $CI_FORCE_RUN pipeline variable. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d5ff24c0ee..33fc9b83db8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,6 @@ workflow: rules: + - if: $CI_FORCE_RUN - if: $CI_MERGE_REQUEST_IID - if: $CI_COMMIT_TAG - if: '$CI_COMMIT_BRANCH =~ /^master|stable|testing|devel$/' -- GitLab From b073a8902b765750458e09a7e33994d9f970bf85 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 11:42:56 -0600 Subject: [PATCH 003/119] Removed fixed problem We've received several reports from different people using MacBookPro16,1 without this option. --- wiki/src/support/known_issues.mdwn | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/wiki/src/support/known_issues.mdwn b/wiki/src/support/known_issues.mdwn index f0b9b781ef5..991539ce5c7 100644 --- a/wiki/src/support/known_issues.mdwn +++ b/wiki/src/support/known_issues.mdwn @@ -136,7 +136,6 @@ for general troubleshooting tips.</p> Last updated: - MacBook Air Retina 2019: 2019-11-01 - MacBook Pro 8,3: 2019-11-01 -- MacBook Pro 16,1: 2021-08-12 --> ### MacBook Air Retina 2018 and 2019 @@ -149,16 +148,6 @@ starting Tails|doc/advanced_topics/boot_options]]: Still, the trackpad and keyboard might not work. You can use an external mouse and keyboard. -### MacBook Pro 16,1 (A2141) - -The computer freezes then automatically restarts. An error message -appears saying that the computer was restarted because of a problem. - -To prevent this from occurring, [[add the following boot option when -starting Tails|doc/advanced_topics/boot_options]]: - - amdgpu.dpm=0 - <h2 id="pc-not-entirely">PC</h2> This section lists known problems with specific hardware. -- GitLab From 2c974428a146fe6d813421dca6c58258233dafac Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:11:10 -0600 Subject: [PATCH 004/119] Have a list of recommended hardware Closes #15026 --- wiki/src/about.html | 2 +- wiki/src/doc/about.index.mdwn | 2 +- wiki/src/doc/about/requirements.mdwn | 35 ++++++++++++++++++++++++---- wiki/src/install/dvd.mdwn | 2 +- wiki/src/support/faq.mdwn | 2 +- 5 files changed, 34 insertions(+), 9 deletions(-) diff --git a/wiki/src/about.html b/wiki/src/about.html index e96265d0bdf..cb9f936075f 100644 --- a/wiki/src/about.html +++ b/wiki/src/about.html @@ -44,7 +44,7 @@ <ul> <li>[[Warnings: Tails is safe but not magic!|doc/about/warnings]]</li> <li>[[Download and install Tails|install]]</li> - <li>[[System requirements|doc/about/requirements]]</li> + <li>[[System requirements and recommended hardware|doc/about/requirements]]</li> </ul> </div> diff --git a/wiki/src/doc/about.index.mdwn b/wiki/src/doc/about.index.mdwn index e51470afe77..d5cea947782 100644 --- a/wiki/src/doc/about.index.mdwn +++ b/wiki/src/doc/about.index.mdwn @@ -1,4 +1,4 @@ - - [[System requirements|about/requirements]] + - [[System requirements and recommended hardware|about/requirements]] - [[Warnings: Tails is safe but not magic!|about/warnings]] - [[Protecting your identity when using Tails|about/warnings/identity]] - [[Limitations of the Tor network|about/warnings/tor]] diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 1278327b755..698aa4b4d93 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -1,4 +1,4 @@ -[[!meta title="System requirements"]] +[[!meta title="System requirements and recommended hardware"]] Tails works on most computers less than 10 years old. @@ -18,7 +18,8 @@ issues|support/known_issues]].</p> </div> -Hardware requirements: +Hardware requirements +===================== - A USB stick of 8 GB minimum or a recordable DVD. @@ -31,11 +32,35 @@ Hardware requirements: - <span class="definition">[[!wikipedia IBM_PC_compatible]]</span> but not <span class="definition">[[!wikipedia PowerPC]]</span> nor <span class="definition">[[!wikipedia ARM_architecture desc="ARM"]]</span>. - - Most Mac computers are IBM PC compatible since 2006. - - Tails does not work with Mac models that use the [[!wikipedia Apple_silicon#M_series desc="Apple M1 or M2"]] chips. + - Tails works on some older Mac computers with an Intel processor. + - Tails does not work on newer Mac computers with an [[!wikipedia Apple_silicon#M_series desc="Apple processors"]] (M1 or M2). - Tails does not work on 32-bit computers since [[Tails 3.0|news/Tails_3.0_will_require_a_64-bit_processor]] (June 2017). - - Tails does not work on most tablets and phones. + - Tails does not work on phone or tablets. - 2 GB of RAM to work smoothly. Tails can work with less than 2 GB RAM but might behave strangely or crash. + +Recommended hardware +==================== + +Laptop models evolve too rapidly for us to be able to provide an up-to-date +list of recommended hardware. Below are some guidelines if you, or your +organization, are considering acquiring a laptop dedicated to running Tails. + +### For PC + +- Avoid "gaming" models with Nvidia or AMD Radeon graphics cards. +- Consider buying a refurbished laptop from a high-end (professional) series. + These are cheaper and will last longer than new but lower-quality laptops. + * For example, the Lenovo ThinkPad series work very well with Tails, + including the X250, X1 Carbon, T440, T480, and T490 models. + * If you live in a part of the world where buying refurbished laptops is + uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed + Guarantee](https://www.amazon.com/gp/help/customer/display.html?nodeId=G4ZAA22U35N373NX). +- Consider buying a new laptop from vendors who guarantee the compatibility + with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/). + +### For Mac + +- The MacBookPro16,1 and MacBookPro16,2 from 2019 work with Tails. diff --git a/wiki/src/install/dvd.mdwn b/wiki/src/install/dvd.mdwn index 8f86503dddb..78d79779450 100644 --- a/wiki/src/install/dvd.mdwn +++ b/wiki/src/install/dvd.mdwn @@ -9,7 +9,7 @@ <div class="tip"> -<p>Check our [[system requirements|doc/about/requirements]].</p> +<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p> </div> diff --git a/wiki/src/support/faq.mdwn b/wiki/src/support/faq.mdwn index 1f66b6546e4..254aee03dd2 100644 --- a/wiki/src/support/faq.mdwn +++ b/wiki/src/support/faq.mdwn @@ -74,7 +74,7 @@ we want to [[limit the amount of software included in Tails|faq#new-software]]. See also: -- [[System requirements|doc/about/requirements]] +- [[System requirements and recommended hardware|doc/about/requirements]] - [[Known issues|support/known_issues]] <h2 id="32-bit">Does Tails work on 32-bit computers?</h2> -- GitLab From 8aeb846900084660860cf53cfd418a09b4fe8a60 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:11:33 -0600 Subject: [PATCH 005/119] Improve summary --- wiki/src/doc/about/requirements.mdwn | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 698aa4b4d93..45971667f3e 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -1,19 +1,17 @@ [[!meta title="System requirements and recommended hardware"]] -Tails works on most computers less than 10 years old. - -<div class="note"> - -<p>Tails might not work on:</p> - -<ul> -<li>Some older computers, for example, if they don't have enough -RAM.</li> -<li>Some newer computers, for example, if their [[graphics card is -not compatible with Linux|support/known_issues/graphics]].</li> -</ul> - -<p>See the [[known hardware compatibility +Summary +======= + +- Tails works on most PC computers that are less than 10 years old. +- Tails works on some older Mac computers with an Intel processor. +- Tails does not work on newer Mac computers with an Apple processor (M1 or M2). +- Tails might not work on: + * Some older computers, for example, if they don't have enough RAM. + * Some newer computers, for example, if their [[graphics card is incompatible with Linux|support/known_issues/graphics]]. + * "Gaming" graphics cards like Nvidia or AMD Radeon, which are often incompatible. + +<p>See our [[list of known hardware compatibility issues|support/known_issues]].</p> </div> -- GitLab From 4b62e5f3904e0e4bdf377e0d2916e45c6ca9655b Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:11:44 -0600 Subject: [PATCH 006/119] Document how to update the list --- wiki/src/doc/about/requirements.mdwn | 33 ++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 45971667f3e..519af56cf80 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -62,3 +62,36 @@ organization, are considering acquiring a laptop dedicated to running Tails. ### For Mac - The MacBookPro16,1 and MacBookPro16,2 from 2019 work with Tails. + +<!-- + +To update the list of Mac computer: + +1. Store an archive of WhisperBack reports from the last 6 months in a folder. + +2. Decrypt all the reports: + + ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb + +3. Extract the list of computer models: + + ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb "/usr/sbin/dmidecode -s system-product-name" > machines + +4. Sort and count identical models: + + grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top + +5. Analyze the reports corresponding from each model: + + - Check whether they were sent from the same email address, if any + - Check whether the wlan0 interface was the same hardware device + * XXX: How to do that actually? + - Check whether the report was about hardware compatibility issues + +To update the list of PC computers: + +- Check what's commonly available with refurbishing companies. + +- Ask tails-assembly@ for models. + +--> -- GitLab From 33f6d53bae32f2a5a8a669b31f478e54f72e6240 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:11:58 -0600 Subject: [PATCH 007/119] Embed requirements and recommended hardware in installation instructions --- wiki/src/install/inc/overview.html | 10 ++++++++++ wiki/src/install/inc/stylesheets/overview.css | 1 + 2 files changed, 11 insertions(+) diff --git a/wiki/src/install/inc/overview.html b/wiki/src/install/inc/overview.html index eebd6aba70b..38eae510f58 100644 --- a/wiki/src/install/inc/overview.html +++ b/wiki/src/install/inc/overview.html @@ -105,6 +105,16 @@ </div> +<p class="windows linux mac expert">[[!toggle id="requirements" text="Detailed system requirements and recommended hardware."]]</p> + +[[!toggleable id="requirements" text=""" + +<span class="hide">[[!toggle id="requirements" text=""]]</span> + +[[!inline pages="doc/about/requirements" raw="yes" sort="age"]] + +"""]] + <h2>Your steps</h2> <div id="steps"> diff --git a/wiki/src/install/inc/stylesheets/overview.css b/wiki/src/install/inc/stylesheets/overview.css index 6cd7309f51b..31a18adcacd 100644 --- a/wiki/src/install/inc/stylesheets/overview.css +++ b/wiki/src/install/inc/stylesheets/overview.css @@ -2,6 +2,7 @@ display: flex; flex-wrap: wrap; justify-content: left; + margin-bottom: 2em; } #needs div, #steps a { -- GitLab From 52fc75acd2c8ac252fe38b51c7531782356bdbc3 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:20:50 -0600 Subject: [PATCH 008/119] Simplify --- wiki/src/doc/about/requirements.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 519af56cf80..75cd56a29e3 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -51,7 +51,7 @@ organization, are considering acquiring a laptop dedicated to running Tails. - Avoid "gaming" models with Nvidia or AMD Radeon graphics cards. - Consider buying a refurbished laptop from a high-end (professional) series. These are cheaper and will last longer than new but lower-quality laptops. - * For example, the Lenovo ThinkPad series work very well with Tails, + * For example, the Lenovo ThinkPad series work well with Tails, including the X250, X1 Carbon, T440, T480, and T490 models. * If you live in a part of the world where buying refurbished laptops is uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed @@ -61,7 +61,7 @@ organization, are considering acquiring a laptop dedicated to running Tails. ### For Mac -- The MacBookPro16,1 and MacBookPro16,2 from 2019 work with Tails. +- The MacBookPro16,1 and MacBookPro16,2 from 2019 work well with Tails. <!-- -- GitLab From ca304ef4c6d7285fd538c2cb707ff2708ba81971 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Fri, 11 Aug 2023 16:23:38 -0600 Subject: [PATCH 009/119] Check how old the Mac models are --- wiki/src/doc/about/requirements.mdwn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 75cd56a29e3..ab0e068dd02 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -88,6 +88,8 @@ To update the list of Mac computer: * XXX: How to do that actually? - Check whether the report was about hardware compatibility issues +6. Check whether these Mac models still support the latest version of macOS. + To update the list of PC computers: - Check what's commonly available with refurbishing companies. -- GitLab From 0020f0312873fb57ac1f1627bb57719654851027 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 13:11:57 +0200 Subject: [PATCH 010/119] standardize locale otherwise, you might end up with date written in the RM language! --- bin/generate-call-for-manual-testers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/generate-call-for-manual-testers b/bin/generate-call-for-manual-testers index ba76b0f3c25..cb7a46035ac 100755 --- a/bin/generate-call-for-manual-testers +++ b/bin/generate-call-for-manual-testers @@ -6,7 +6,7 @@ from subprocess import check_output def end_date() -> str: when = 'now + 24 hours' - cmd = ['env', 'TZ=UTC', 'date', '-d' , when, '+%A %H:00 %Z'] + cmd = ['env', 'LC_ALL=C', 'TZ=UTC', 'date', '-d', when, '+%A %H:00 %Z'] return check_output(cmd).decode('utf8').strip() def call_for_testing_contents(args) -> str: -- GitLab From f9d67ebf82eef550474774944812dfe47474aa83 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 13:12:49 +0200 Subject: [PATCH 011/119] black reformatting --- bin/generate-call-for-manual-testers | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/bin/generate-call-for-manual-testers b/bin/generate-call-for-manual-testers index cb7a46035ac..51325f9dc23 100755 --- a/bin/generate-call-for-manual-testers +++ b/bin/generate-call-for-manual-testers @@ -4,29 +4,33 @@ import jinja2 import datetime from subprocess import check_output + def end_date() -> str: - when = 'now + 24 hours' - cmd = ['env', 'LC_ALL=C', 'TZ=UTC', 'date', '-d', when, '+%A %H:00 %Z'] - return check_output(cmd).decode('utf8').strip() + when = "now + 24 hours" + cmd = ["env", "LC_ALL=C", "TZ=UTC", "date", "-d", when, "+%A %H:00 %Z"] + return check_output(cmd).decode("utf8").strip() + def call_for_testing_contents(args) -> str: jinja2_env = jinja2.Environment( # nosec jinja2_autoescape_false - loader=jinja2.FileSystemLoader('config/release_management/templates')) + loader=jinja2.FileSystemLoader("config/release_management/templates") + ) - return (jinja2_env.get_template('call_for_manual_testers.mdwn').render( + return jinja2_env.get_template("call_for_manual_testers.mdwn").render( dist=args.dist, pad=args.pad, version=args.version, end=end_date(), - )) + ) -if __name__ == '__main__': +if __name__ == "__main__": import argparse + parser = argparse.ArgumentParser() - parser.add_argument('--dist', required=True) - parser.add_argument('--version', required=True) - parser.add_argument('--pad', required=True) + parser.add_argument("--dist", required=True) + parser.add_argument("--version", required=True) + parser.add_argument("--pad", required=True) args = parser.parse_args() print(call_for_testing_contents(args)) -- GitLab From 9a768950c923f0ea97225789321b0664b3ef6905 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 13:35:20 +0200 Subject: [PATCH 012/119] fix python strings I have *not* tested it, but the previous notation didn't seem correct --- bin/check-po-msgfmt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/check-po-msgfmt b/bin/check-po-msgfmt index f019d0d4b37..076642a0624 100755 --- a/bin/check-po-msgfmt +++ b/bin/check-po-msgfmt @@ -16,12 +16,12 @@ import sys WARNINGS = [ - re.compile('^[^\s]+\.po:[0-9]: warning:'), - re.compile('^msgfmt: [^\s]+\.po: warning:'), - re.compile('^\s*warning:'), + re.compile(r'^[^\s]+\.po:[0-9]: warning:'), + re.compile(r'^msgfmt: [^\s]+\.po: warning:'), + re.compile(r'^\s*warning:'), ] -ERRORS = re.compile('^([^\s]+\.po):([0-9]+): ') +ERRORS = re.compile(r'^([^\s]+\.po):([0-9]+): ') def find_context_start(msgstr_line, content): -- GitLab From 48335d166dc0b8788276758424dee6f03ec41824 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 13:49:58 +0200 Subject: [PATCH 013/119] explicitly say which stage we're in now this is useful if you want to save this information somewhere --- wiki/src/contribute/release_process.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index ee588613d21..f151925798e 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -192,7 +192,7 @@ you need to set a bunch of environment variables. 4. Generate the resulting environment variables and export them into your environment: - . $(./bin/rm-config generate-environment) + . $(./bin/rm-config generate-environment --stage base) ### Notes -- GitLab From 7ff370d8bea5d60b154b0abb5661593398f7229f Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 15:05:42 +0200 Subject: [PATCH 014/119] list possible stages in rm-config help --- bin/rm-config | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/bin/rm-config b/bin/rm-config index ee4f9fd36c3..f706919603d 100755 --- a/bin/rm-config +++ b/bin/rm-config @@ -243,37 +243,46 @@ def validate_configuration(stage: str): def main(): """Command-line entry point""" parser = argparse.ArgumentParser( - description="Query and manage Release Management configuration") + description="Query and manage Release Management configuration", + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + ) parser.add_argument("--debug", action="store_true", help="debug output") subparsers = parser.add_subparsers(help="sub-command help", dest="command") parser_generate_boilerplate = subparsers.add_parser( "generate-boilerplate", + formatter_class=argparse.ArgumentDefaultsHelpFormatter, help="Creates a configuration file template that you will fill") parser_generate_boilerplate.add_argument("--stage", type=str, action="store", default="base", - help="") + choices=STAGES, + help="Select stage") parser_generate_boilerplate.set_defaults(func=generate_boilerplate) parser_validate_configuration = subparsers.add_parser( - "validate-configuration", help="Validate configuration files") + "validate-configuration", + formatter_class=argparse.ArgumentDefaultsHelpFormatter, + help="Validate configuration files") parser_validate_configuration.add_argument("--stage", type=str, action="store", default="base", - help="") + choices=STAGES, + help="Select stage") parser_validate_configuration.set_defaults(func=validate_configuration) parser_generate_environment = subparsers.add_parser( "generate-environment", + formatter_class=argparse.ArgumentDefaultsHelpFormatter, help="Creates a shell sourceable file with resulting environment") parser_generate_environment.add_argument("--stage", type=str, action="store", default="base", - help="") + choices=STAGES, + help="Select stage") parser_generate_environment.set_defaults(func=generate_environment) args = parser.parse_args() -- GitLab From 006a0dabba251057b421cfd817940db8dc0f3329 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 18:32:55 +0200 Subject: [PATCH 015/119] follow links! whether this is necessary depends on small details, but why not --- wiki/src/contribute/release_process.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index f151925798e..bb8ed381d9b 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -1068,7 +1068,7 @@ on <https://iso-history.tails.boum.org/?C=M&O=D>: sleep 10 done echo "Dir created: ${dirurl}" - expected_size="$(stat -c %s "${isopath}")" + expected_size="$(stat -L -c %s "${isopath}")" while true do size=$(curl --silent --head "${isourl}" | grep -iPo '^content-length:\s*\K\d+') -- GitLab From 44ef00c17139a03109c640f5d762b68bd8649fad Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 18:33:26 +0200 Subject: [PATCH 016/119] expected timing updated we're now at the 20th release, so quite far in a suite lifecycle, and 15 minutes is the longest I see. Hooray for hardware improvements! --- wiki/src/contribute/release_process.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index bb8ed381d9b..091f9474cf2 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -1130,7 +1130,7 @@ Build the Incremental Upgrade Kits on Jenkins . $(./bin/rm-config generate-environment --stage built-iuks) 5. Wait until the `build_IUKs` build completes successfully. - It should take about 20-25 minutes for each member of + It should take about 15 minutes for each member of the `$IUK_SOURCE_VERSIONS` list, distributed across `isoworkerN` workers. If you have a fast computer, you'll be waiting for Jenkins to be done, while -- GitLab From 9f431458025fb27b236eb7c4c8412ef9d243a227 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Mon, 14 Aug 2023 16:16:06 -0600 Subject: [PATCH 017/119] I don't know how to do this --- wiki/src/doc/about/requirements.mdwn | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index ab0e068dd02..73066e4a0f1 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -81,12 +81,8 @@ To update the list of Mac computer: grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top -5. Analyze the reports corresponding from each model: - - - Check whether they were sent from the same email address, if any - - Check whether the wlan0 interface was the same hardware device - * XXX: How to do that actually? - - Check whether the report was about hardware compatibility issues +5. Share WhisperBack reports number with the Foundations team and ask them to + evaluate hardware compatibility hints in those reports. 6. Check whether these Mac models still support the latest version of macOS. -- GitLab From 5690751e356c807ec2cb9c0d5c9b16f79c3099d9 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Mon, 14 Aug 2023 16:19:31 -0600 Subject: [PATCH 018/119] Actually, both models seem to have hardware compatibility issues --- wiki/src/doc/about/requirements.mdwn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 73066e4a0f1..0641c4f4b0e 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -61,7 +61,8 @@ organization, are considering acquiring a laptop dedicated to running Tails. ### For Mac -- The MacBookPro16,1 and MacBookPro16,2 from 2019 work well with Tails. +We don't know of any Mac model that works well in Tails and can run the latest +macOS version. <!-- -- GitLab From 5661dbed69a308575a32d918b168bf4a981ac86c Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Mon, 14 Aug 2023 16:23:01 -0600 Subject: [PATCH 019/119] Be sorry --- wiki/src/doc/about/requirements.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 0641c4f4b0e..1c3e7500594 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -61,8 +61,8 @@ organization, are considering acquiring a laptop dedicated to running Tails. ### For Mac -We don't know of any Mac model that works well in Tails and can run the latest -macOS version. +Unfortunately, we don't know of any Mac model that works well in Tails and can +run the latest macOS version. <!-- -- GitLab From 30553bcf1fe744a028f4c82016fd36d8c80f59ea Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Tue, 15 Aug 2023 12:55:54 +0200 Subject: [PATCH 020/119] twitter credentials explained --- wiki/src/contribute/release_process.mdwn | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index 091f9474cf2..bce21b86c8f 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -1955,7 +1955,19 @@ to the release notes: echo "Tails ${VERSION:?} is out: https://tails.net/news/version_${TAG:?}/" -The credentials are in keyringer in `rm.git`. +To login: + + - Get username and password: + + keyringer tails-rm decrypt credentials.asc | grep twitter.com + + - Get the OTP code: + + oathtool -b --totp \ + "$(keyringer tails decrypt credentials.asc | + grep 'twitter OTP code' | + grep -Po 'otpauth://totp/.*[?]secret=\K[A-Z0-9]*' )" + Request the publication of the Tor blog post -------------------------------------------- -- GitLab From 1125c02cbe3a111785ea1da5687de4ac40bcf8f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Tue, 15 Aug 2023 15:06:08 +0200 Subject: [PATCH 021/119] =?UTF-8?q?Display=20binary=20package=20names?= =?UTF-8?q?=C2=B7=20if=20not=20everything=20needs=20an=20update=20tails#16?= =?UTF-8?q?375?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/needed-package-updates | 45 +++++++++++++++++++++++++++++++++----- 1 file changed, 39 insertions(+), 6 deletions(-) diff --git a/bin/needed-package-updates b/bin/needed-package-updates index 75ccf533aaf..64478d579d1 100755 --- a/bin/needed-package-updates +++ b/bin/needed-package-updates @@ -179,6 +179,16 @@ class UDD: f"{name}: the package version({version}) is higher than the version on {suite} ({suite_version})" ) + def packages_by_source(self, source: str, suite: str) -> set[str]: + ret = set() + for name, pkg in self.packages.items(): + if suite not in pkg: + continue + p = pkg[suite] + if p.source == source: + ret.add(name) + return ret + def strip_tails_version(version: str) -> Version: """if we have a Tails own fork get the Debian version.""" @@ -199,17 +209,23 @@ class NewVersionIssue: suite_source_version: Version def __str__(self): + binaries = getattr(self, 'log_binaries', None) + if binaries: + binaries = ", ".join(binaries) + return f"{self.source}[{binaries}] ({self.version}) to Debian {self.suite} ({self.suite_source_version})" return f"{self.source} ({self.version}) to Debian {self.suite} ({self.suite_source_version})" def tails_fork(self): return re.search(".0tails[0-9]+$", str(self.version)) is not None -def get_issues( - package_dict: dict[str, Version], suites: tuple[str] +def get_udd(package_dict: dict[str, Version], suites: tuple[str]) -> UDD: + return UDD(package_dict.keys(), suites) # type: ignore[arg-type] + +def get_issues(udd: UDD, + package_dict: dict[str, Version] ) -> Iterator[NewVersionIssue]: """Get a issue list of updateable packages.""" - udd = UDD(package_dict.keys(), suites) # type: ignore[arg-type] for package, version in package_dict.items(): striped_version = strip_tails_version(str(version)) try: @@ -249,7 +265,9 @@ def check_build_manifest( continue pkg_dict[p] = v - issues = list(get_issues(pkg_dict, suites)) + udd = get_udd(pkg_dict, suites) + + issues = list(get_issues(udd, pkg_dict)) def _is_ignored(issue): if issue.source in general_ignore: @@ -277,12 +295,27 @@ def check_build_manifest( else: return str(issue) + def log_group(source, issues): + issue = issues[0] + suite = issue.suite + names = set(i.name for i in issues) + if names != udd.packages_by_source(source, suite): + issue.log_binaries = names + + return _log_issue(issue) + + + def _log(issues): + for source, i in itertools.groupby(non_forked,key=operator.attrgetter("source")): + yield log_group(source, list(i)) + if forked: - l = "\n - ".join(sorted(set(map(_log_issue, forked)))) + l = "\n - ".join(sorted(_log(forked))) logger.info(f"Need to upgrade our own forked package:\n - {l}") + if non_forked: - l = "\n - ".join(sorted(set(map(_log_issue, non_forked)))) + l = "\n - ".join(sorted(_log(non_forked))) logger.info(f"Need to upgrade to a new APT snapshot:\n - {l}") # Check if we have at least one non ignored issue -- GitLab From a83958e5171ca632100c81bd0b31990800f2a5e0 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 15 Aug 2023 14:16:26 +0000 Subject: [PATCH 022/119] Apply 1 suggestion(s) to 1 file(s) --- wiki/src/contribute/release_process.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process.mdwn b/wiki/src/contribute/release_process.mdwn index bce21b86c8f..0fa418ab585 100644 --- a/wiki/src/contribute/release_process.mdwn +++ b/wiki/src/contribute/release_process.mdwn @@ -92,7 +92,7 @@ Packages To release Tails you'll need some packages installed: -* `gitlab-cli j2cli jq tidy libnotify-bin mktorrent podman python3-bs4 python3-debian python3-gitlab python3-jinja2 python3-html2text python3-voluptuous transmission-cli moreutils wl-clipboard` +* `oathtool gitlab-cli j2cli jq tidy libnotify-bin mktorrent podman python3-bs4 python3-debian python3-gitlab python3-jinja2 python3-html2text python3-voluptuous transmission-cli moreutils wl-clipboard` - Note: if the Debian version you are running does not include all required Go packages, such as [[!debpts podman]], you should be able to install them from a more recent Debian release with APT pinning. -- GitLab From 187e9130d732d5ce9165b119cb503510a4e84fbb Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Tue, 15 Aug 2023 12:19:17 -0600 Subject: [PATCH 023/119] Mention #19942 --- wiki/src/support/faq.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/support/faq.mdwn b/wiki/src/support/faq.mdwn index 1f66b6546e4..da3625d2a16 100644 --- a/wiki/src/support/faq.mdwn +++ b/wiki/src/support/faq.mdwn @@ -274,7 +274,7 @@ is not needed, for example: We are now considering adding VPN support to Tails, either: - By adding another browser that would use a VPN instead of Tor. - ([[!tails_ticket 19465]]) + ([[!tails_ticket 19465]] or [[!tails_ticket 19942]]) - By giving the option to use a VPN instead of Tor for the whole system and still having Tor Browser to use Tor only ([[!tails_ticket 19901]]) -- GitLab From 4b0c43006455fdf7c7ef0f5908a76236520ab16e Mon Sep 17 00:00:00 2001 From: IkiWiki <ikiwiki.info> Date: Tue, 15 Aug 2023 18:22:01 +0000 Subject: [PATCH 024/119] updated PO files --- wiki/src/support/faq.de.po | 4 ++-- wiki/src/support/faq.es.po | 4 ++-- wiki/src/support/faq.fr.po | 4 ++-- wiki/src/support/faq.it.po | 4 ++-- wiki/src/support/faq.pt.po | 4 ++-- wiki/src/support/faq.ru.po | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po index a316ccb6c3b..e1eb7cdf79e 100644 --- a/wiki/src/support/faq.de.po +++ b/wiki/src/support/faq.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: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-03-11 13:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -604,7 +604,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po index deaeda74a98..9978c9a9982 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: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/faq/" @@ -770,7 +770,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/support/faq.fr.po b/wiki/src/support/faq.fr.po index a37f800d3fd..a6583cb130d 100644 --- a/wiki/src/support/faq.fr.po +++ b/wiki/src/support/faq.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -772,7 +772,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/support/faq.it.po b/wiki/src/support/faq.it.po index cf47dc02406..6728b021b8a 100644 --- a/wiki/src/support/faq.it.po +++ b/wiki/src/support/faq.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: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: Carlo Gandolfi <gand61@gmail.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -759,7 +759,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po index 49d2e20cf64..d161599ad98 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: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -757,7 +757,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' diff --git a/wiki/src/support/faq.ru.po b/wiki/src/support/faq.ru.po index 75d6e83af78..2ba2d4ec42e 100644 --- a/wiki/src/support/faq.ru.po +++ b/wiki/src/support/faq.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-11 01:59+0000\n" +"POT-Creation-Date: 2023-08-15 18:22+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -734,7 +734,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "By adding another browser that would use a VPN instead of Tor. ([[!" -"tails_ticket 19465]])" +"tails_ticket 19465]] or [[!tails_ticket 19942]])" msgstr "" #. type: Bullet: '- ' -- GitLab From e169423eeb68cd32e8cc017375c95226ce01d84c Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 15 Aug 2023 18:46:19 +0000 Subject: [PATCH 025/119] Apply 1 suggestion(s) to 1 file(s) --- wiki/src/doc/about/requirements.mdwn | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 1c3e7500594..062b0a99c7f 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -84,6 +84,12 @@ To update the list of Mac computer: 5. Share WhisperBack reports number with the Foundations team and ask them to evaluate hardware compatibility hints in those reports. + + While analyzing the reports corresponding from each model, FT should: + + - Check whether they were sent from the same email address, if any + - Check whether the wlan0 interface was the same hardware device + - Check whether the report was about hardware compatibility issues 6. Check whether these Mac models still support the latest version of macOS. -- GitLab From ffe81e816bba04ac4dea3fa86d27ef016753638e Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Tue, 15 Aug 2023 12:47:06 -0600 Subject: [PATCH 026/119] Remove trailing white spaces --- wiki/src/doc/about/requirements.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/doc/about/requirements.mdwn b/wiki/src/doc/about/requirements.mdwn index 062b0a99c7f..9b1b993c6f0 100644 --- a/wiki/src/doc/about/requirements.mdwn +++ b/wiki/src/doc/about/requirements.mdwn @@ -84,7 +84,7 @@ To update the list of Mac computer: 5. Share WhisperBack reports number with the Foundations team and ask them to evaluate hardware compatibility hints in those reports. - + While analyzing the reports corresponding from each model, FT should: - Check whether they were sent from the same email address, if any -- GitLab From a6045a25b955bb4bfb3ef7d40dcda5d3ec0ecc9b Mon Sep 17 00:00:00 2001 From: IkiWiki <ikiwiki.info> Date: Tue, 15 Aug 2023 18:59:53 +0000 Subject: [PATCH 027/119] updated PO files --- wiki/src/about.de.po | 52 ++--- wiki/src/about.es.po | 68 +++---- wiki/src/about.fr.po | 81 ++++---- wiki/src/about.it.po | 40 ++-- wiki/src/about.pt.po | 56 +++--- wiki/src/about.ru.po | 56 +++--- wiki/src/doc/about.index.de.po | 4 +- wiki/src/doc/about.index.es.po | 6 +- wiki/src/doc/about.index.fr.po | 6 +- wiki/src/doc/about.index.it.po | 6 +- wiki/src/doc/about.index.pt.po | 6 +- wiki/src/doc/about.index.ru.po | 4 +- wiki/src/doc/about/requirements.de.po | 241 ++++++++++++++++++++--- wiki/src/doc/about/requirements.es.po | 247 ++++++++++++++++++++---- wiki/src/doc/about/requirements.fr.po | 265 ++++++++++++++++++++++---- wiki/src/doc/about/requirements.it.po | 246 +++++++++++++++++++++--- wiki/src/doc/about/requirements.pt.po | 251 +++++++++++++++++++++--- wiki/src/doc/about/requirements.ru.po | 246 ++++++++++++++++++++---- wiki/src/install/dvd.de.po | 30 +-- wiki/src/install/dvd.es.po | 36 ++-- wiki/src/install/dvd.fr.po | 36 ++-- wiki/src/install/dvd.it.po | 30 +-- wiki/src/install/dvd.pt.po | 36 ++-- wiki/src/install/dvd.ru.po | 30 +-- wiki/src/install/inc/overview.de.po | 89 +++++---- wiki/src/install/inc/overview.es.po | 75 +++++--- wiki/src/install/inc/overview.fr.po | 71 ++++--- wiki/src/install/inc/overview.it.po | 95 +++++---- wiki/src/install/inc/overview.pt.po | 87 +++++---- wiki/src/install/inc/overview.ru.po | 101 +++++----- wiki/src/support/faq.de.po | 6 +- wiki/src/support/faq.es.po | 10 +- wiki/src/support/faq.fr.po | 10 +- wiki/src/support/faq.it.po | 6 +- wiki/src/support/faq.pt.po | 6 +- wiki/src/support/faq.ru.po | 10 +- wiki/src/support/known_issues.de.po | 29 +-- wiki/src/support/known_issues.es.po | 46 ++--- wiki/src/support/known_issues.fr.po | 60 +++--- wiki/src/support/known_issues.it.po | 25 +-- wiki/src/support/known_issues.pt.po | 40 ++-- wiki/src/support/known_issues.ru.po | 25 +-- 42 files changed, 1958 insertions(+), 912 deletions(-) diff --git a/wiki/src/about.de.po b/wiki/src/about.de.po index c48e8d21914..a2346995f22 100644 --- a/wiki/src/about.de.po +++ b/wiki/src/about.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-04-18 15:28+0000\n" "Last-Translator: translatenight <info@passt-so.de>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,23 +73,23 @@ msgstr "" #. type: Content of: <section><div><p> #, fuzzy #| msgid "" -#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#| "installed on any USB stick of 8 GB minimum. Tails works on most " -#| "computers less than 10 years old. You can start again on the other " -#| "operating system after you shut down Tails." -msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." -msgstr "" -"Tails ist ein [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] Download und die Installation dauert etwa eine halbe Stunde. " -"Tails kann auf einem USB Stick mit mindestens 8 GB installiert werden. " -"Tails funktioniert auf den meisten Computern die weniger als 10 alt Jahre " -"sind. Sie können nach dem Herunterfahren von Tails wieder das andere " +#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] download and takes ½ hour to install. Tails can be installed on " +#| "any USB stick of 8 GB minimum. Tails works on most computers less than " +#| "10 years old. You can start again on the other operating system after " +#| "you shut down Tails." +msgid "" +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." +msgstr "" +"Tails ist ein [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] Download und die Installation dauert etwa eine halbe Stunde. Tails " +"kann auf einem USB Stick mit mindestens 8 GB installiert werden. Tails " +"funktioniert auf den meisten Computern die weniger als 10 alt Jahre sind. " +"Sie können nach dem Herunterfahren von Tails wieder das andere " "Betriebssystem starten." #. type: Content of: <section><div><p> @@ -121,7 +121,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Tails herunterladen und installieren|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[System Anforderungen|doc/about/requirements]]" # @@ -187,13 +189,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Wie ein Rucksack können Sie ihre persönlichen Sachen im " -"beständigen Speicher speichern und sie in ihrem Zelt nutzen.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Wie ein Rucksack können Sie ihre persönlichen Sachen im beständigen " +"Speicher speichern und sie in ihrem Zelt nutzen.</i>" #. type: Content of: <section><div><h2> msgid "Persistent Storage" diff --git a/wiki/src/about.es.po b/wiki/src/about.es.po index d468aba84d3..b150a649d4a 100644 --- a/wiki/src/about.es.po +++ b/wiki/src/about.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -73,20 +73,20 @@ msgstr "" #. type: Content of: <section><div><p> #, fuzzy #| msgid "" -#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#| "installed on any USB stick of 8 GB minimum. Tails works on most " -#| "computers less than 10 years old. You can start again on the other " -#| "operating system after you shut down Tails." -msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." -msgstr "" -"Tails es una descarga de [[!inline pages=\"inc/stable_amd64_iso_size\" " -"raw=\"yes\" sort=\"age\"]] y toma ½ hora para instalar. Tails puede ser " +#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] download and takes ½ hour to install. Tails can be installed on " +#| "any USB stick of 8 GB minimum. Tails works on most computers less than " +#| "10 years old. You can start again on the other operating system after " +#| "you shut down Tails." +msgid "" +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." +msgstr "" +"Tails es una descarga de [[!inline pages=\"inc/stable_amd64_iso_size\" raw=" +"\"yes\" sort=\"age\"]] y toma ½ hora para instalar. Tails puede ser " "instalado en una memoria USB de al menos 8 GB. Tails funciona en la " "mayorÃa de las computadoras de menos de 10 años. Puedes comenzar de nuevo " "en el otro sistema operativo después de apagar Tails." @@ -118,7 +118,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Descargar e instalar Tails|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[Requisitos del sistema|doc/about/requirements]]" # @@ -182,13 +184,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Como una mochila, puedes almacenar tus cosas personales " -"en su Almacenamiento Persistente y usarlas en tu tienda de campaña.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Como una mochila, puedes almacenar tus cosas personales en su " +"Almacenamiento Persistente y usarlas en tu tienda de campaña.</i>" #. type: Content of: <section><div><h2> msgid "Persistent Storage" @@ -859,24 +861,24 @@ msgstr "[[Instalar Tails|install]]" #~ msgid "" #~ "[[Encrypt your USB sticks or external hard-disks|doc/" -#~ "encryption_and_privacy/encrypted_volumes]] using <span " -#~ "class=\"definition\">[[!wikipedia Linux_Unified_Key_Setup " -#~ "desc=\"LUKS\"]]</span>, the Linux standard for disk-encryption." +#~ "encryption_and_privacy/encrypted_volumes]] using <span class=\"definition" +#~ "\">[[!wikipedia Linux_Unified_Key_Setup desc=\"LUKS\"]]</span>, the Linux " +#~ "standard for disk-encryption." #~ msgstr "" #~ "[[Cifra tu memoria USB o disco duro externo|doc/encryption_and_privacy/" #~ "encrypted_volumes]] usando <span class=\"definition\">[[!wikipedia_es " #~ "LUKS]]</span>, el estándar de Linux para cifrar discos." #~ msgid "" -#~ "Protect your instant messaging conversations using <span " -#~ "class=\"definition\">[[!wikipedia Off-the-Record_Messaging " -#~ "desc=\"OTR\"]]</span>, a cryptographic tool that provides encryption, " -#~ "authentication and deniability." +#~ "Protect your instant messaging conversations using <span class=" +#~ "\"definition\">[[!wikipedia Off-the-Record_Messaging desc=\"OTR\"]]</" +#~ "span>, a cryptographic tool that provides encryption, authentication and " +#~ "deniability." #~ msgstr "" -#~ "Protege tus conversaciones de mensajerÃa instantánea usando <span " -#~ "class=\"definition\">[[!wikipedia_es Off-the-Record_Messaging " -#~ "desc=\"OTR\"]]</span>, una herramienta criptográfica para cifrar, " -#~ "autentificar, y que permite la negación plausible." +#~ "Protege tus conversaciones de mensajerÃa instantánea usando <span class=" +#~ "\"definition\">[[!wikipedia_es Off-the-Record_Messaging desc=\"OTR\"]]</" +#~ "span>, una herramienta criptográfica para cifrar, autentificar, y que " +#~ "permite la negación plausible." #~ msgid "" #~ "[[Securely delete your files|doc/encryption_and_privacy/secure_deletion]] " diff --git a/wiki/src/about.fr.po b/wiki/src/about.fr.po index 0f57c209e9f..4d0917341bb 100644 --- a/wiki/src/about.fr.po +++ b/wiki/src/about.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,22 +73,22 @@ msgstr "" #. type: Content of: <section><div><p> #, fuzzy #| msgid "" -#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#| "installed on any USB stick of 8 GB minimum. Tails works on most " -#| "computers less than 10 years old. You can start again on the other " -#| "operating system after you shut down Tails." -msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." -msgstr "" -"Tails s'installe en ½ heure, après un téléchargement de [[!inline " -"pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]. Tails peut " -"être installé sur n'importe quelle clé USB d'au moins 8 Go. Tails fonctionne " -"sur la plupart des ordinateurs de moins de 10 ans. Une fois Tails éteint, " +#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] download and takes ½ hour to install. Tails can be installed on " +#| "any USB stick of 8 GB minimum. Tails works on most computers less than " +#| "10 years old. You can start again on the other operating system after " +#| "you shut down Tails." +msgid "" +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." +msgstr "" +"Tails s'installe en ½ heure, après un téléchargement de [[!inline pages=" +"\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]. Tails peut être " +"installé sur n'importe quelle clé USB d'au moins 8 Go. Tails fonctionne sur " +"la plupart des ordinateurs de moins de 10 ans. Une fois Tails éteint, " "l'ordinateur peut redémarrer sur le système d'exploitation habituel." #. type: Content of: <section><div><p> @@ -119,7 +119,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Télécharger et installer Tails|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[Configuration requise|doc/about/requirements]]" # @@ -188,14 +190,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Comme avec un sac à dos, vous pouvez stocker vos affaires " -"personnelles dans le stockage persistant et les utiliser dans votre tente.</" -"i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Comme avec un sac à dos, vous pouvez stocker vos affaires personnelles " +"dans le stockage persistant et les utiliser dans votre tente.</i>" #. type: Content of: <section><div><h2> msgid "Persistent Storage" @@ -880,14 +881,14 @@ msgstr "[[Installer Tails|install]]" #~ msgid "" #~ "[[Encrypt your USB sticks or external hard-disks|doc/" -#~ "encryption_and_privacy/encrypted_volumes]] using <span " -#~ "class=\"definition\">[[!wikipedia Linux_Unified_Key_Setup " -#~ "desc=\"LUKS\"]]</span>, the Linux standard for disk-encryption." +#~ "encryption_and_privacy/encrypted_volumes]] using <span class=\"definition" +#~ "\">[[!wikipedia Linux_Unified_Key_Setup desc=\"LUKS\"]]</span>, the Linux " +#~ "standard for disk-encryption." #~ msgstr "" #~ "[[Chiffrez votre clé USB ou votre disque dur externe|doc/" -#~ "encryption_and_privacy/encrypted_volumes]] avec <span " -#~ "class=\"definition\">[[!wikipedia_fr LUKS]]</span>, le standard de Linux " -#~ "en matière de chiffrement de volume." +#~ "encryption_and_privacy/encrypted_volumes]] avec <span class=\"definition" +#~ "\">[[!wikipedia_fr LUKS]]</span>, le standard de Linux en matière de " +#~ "chiffrement de volume." #~ msgid "" #~ "Automatically use HTTPS to encrypt all your communications to a number of " @@ -902,23 +903,23 @@ msgstr "[[Installer Tails|install]]" #~ msgid "" #~ "Encrypt and sign your emails and documents using the *de facto* standard " -#~ "<span class=\"definition\">[[!wikipedia Pretty_Good_Privacy#OpenPGP " -#~ "desc=\"OpenPGP\"]]</span> either from Tails email client, text editor or " -#~ "file browser." +#~ "<span class=\"definition\">[[!wikipedia Pretty_Good_Privacy#OpenPGP desc=" +#~ "\"OpenPGP\"]]</span> either from Tails email client, text editor or file " +#~ "browser." #~ msgstr "" #~ "Chiffrez et signez vos emails et documents depuis le client mail de " #~ "Tails, l'éditeur de texte ou le navigateur de fichiers grâce au standard " #~ "*de facto* <span class=\"definition\">[[!wikipedia_fr OpenPGP]]</span>." #~ msgid "" -#~ "Protect your instant messaging conversations using <span " -#~ "class=\"definition\">[[!wikipedia Off-the-Record_Messaging " -#~ "desc=\"OTR\"]]</span>, a cryptographic tool that provides encryption, " -#~ "authentication and deniability." +#~ "Protect your instant messaging conversations using <span class=" +#~ "\"definition\">[[!wikipedia Off-the-Record_Messaging desc=\"OTR\"]]</" +#~ "span>, a cryptographic tool that provides encryption, authentication and " +#~ "deniability." #~ msgstr "" #~ "Protégez vos conversations par messagerie instantanée en utilisant <span " -#~ "class=\"definition\">[[!wikipedia_fr Off-the-Record Messaging " -#~ "desc=\"OTR\"]]</span>, un outil cryptographique qui fournit chiffrement, " +#~ "class=\"definition\">[[!wikipedia_fr Off-the-Record Messaging desc=\"OTR" +#~ "\"]]</span>, un outil cryptographique qui fournit chiffrement, " #~ "authentification ainsi que la possibilité du déni plausible." #~ msgid "" diff --git a/wiki/src/about.it.po b/wiki/src/about.it.po index 014cc84af1f..ec9ed9e17e9 100644 --- a/wiki/src/about.it.po +++ b/wiki/src/about.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,17 +73,17 @@ msgstr "" #. type: Content of: <section><div><p> #, fuzzy #| msgid "" -#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#| "installed on any USB stick of 8 GB minimum. Tails works on most " -#| "computers less than 10 years old. You can start again on the other " -#| "operating system after you shut down Tails." -msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." +#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] download and takes ½ hour to install. Tails can be installed on " +#| "any USB stick of 8 GB minimum. Tails works on most computers less than " +#| "10 years old. You can start again on the other operating system after " +#| "you shut down Tails." +msgid "" +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." msgstr "" "Tails richiede ½ ora per l'installazione, dopo un download di [[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]. Tails può " @@ -120,7 +120,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Scaricare e installare Tails|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[Requisiti di sistema|doc/about/requirements]]" # @@ -185,13 +187,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Come in uno zaino, puoi conservare i tuoi effetti " -"personali nel tuo volume persistente e usarli nella tua tenda.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Come in uno zaino, puoi conservare i tuoi effetti personali nel tuo " +"volume persistente e usarli nella tua tenda.</i>" #. type: Content of: <section><div><h2> msgid "Persistent Storage" diff --git a/wiki/src/about.pt.po b/wiki/src/about.pt.po index 61f11c0a725..0a7cb2208d2 100644 --- a/wiki/src/about.pt.po +++ b/wiki/src/about.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -71,19 +71,18 @@ msgstr "" "computador de outra pessoa</strong>." #. type: Content of: <section><div><p> -#, fuzzy msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." msgstr "" -"Tails é um download de [[!inline pages=\"inc/stable_amd64_iso_size\" " -"raw=\"yes\" sort=\"age\"]] e leva ½ hora para instalar. Tails pode ser " -"instalado em qualquer pendrive USB com no mÃnimo 8 GB. Tails funciona na " -"maioria dos computadores com menos de 10 anos de idade. Você pode iniciar " -"novamente o outro sistema operacional após desligar o Tails." +"Tails é um download de [[!inline pages=\"inc/stable_amd64_iso_size\" raw=" +"\"yes\" sort=\"age\"]] e leva ½ hora para instalar. Tails pode ser instalado " +"em qualquer pendrive USB com no mÃnimo 8 GB. Tails funciona na maioria dos " +"computadores com menos de 10 anos de idade. Você pode iniciar novamente no " +"outro sistema operacional depois de desligar o Tails." #. type: Content of: <section><div><p> msgid "" @@ -114,7 +113,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Baixe e instale Tails|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[Requisitos de sistema|doc/about/requirements]]" # @@ -181,13 +182,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Como se fosse uma mochila, você pode guardar seus itens " -"pessoais num Armazenamento Persistente e usá-los na sua barraca.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Como se fosse uma mochila, você pode guardar seus itens pessoais num " +"Armazenamento Persistente e usá-los na sua barraca.</i>" #. type: Content of: <section><div><h2> msgid "Persistent Storage" @@ -625,18 +626,19 @@ msgstr "[[Contato|about/contact]]" msgid "[[Install Tails|install]]" msgstr "[[Instale Tails|install]]" +#, fuzzy #~ msgid "" -#~ "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#~ "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#~ "installed on any USB stick of 8 GB minimum. Tails works on most " -#~ "computers less than 10 years old. You can start again on the other " -#~ "operating system after you shut down Tails." +#~ "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#~ "\"age\"]] download and takes ½ hour to install. Tails can be installed " +#~ "on any USB stick of 8 GB minimum. Tails works on most computers less " +#~ "than 10 years old. You can start again on the other operating system " +#~ "after you shut down Tails." #~ msgstr "" -#~ "Tails é um download de [[!inline pages=\"inc/stable_amd64_iso_size\" " -#~ "raw=\"yes\" sort=\"age\"]] e leva ½ hora para instalar. Tails pode ser " +#~ "Tails é um download de [[!inline pages=\"inc/stable_amd64_iso_size\" raw=" +#~ "\"yes\" sort=\"age\"]] e leva ½ hora para instalar. Tails pode ser " #~ "instalado em qualquer pendrive USB com no mÃnimo 8 GB. Tails funciona na " #~ "maioria dos computadores com menos de 10 anos de idade. Você pode iniciar " -#~ "novamente no outro sistema operacional depois de desligar o Tails." +#~ "novamente o outro sistema operacional após desligar o Tails." #~ msgid "" #~ "[[Viewing the status and circuits of Tor|doc/anonymous_internet/" diff --git a/wiki/src/about.ru.po b/wiki/src/about.ru.po index 4a966d4714f..8ed8e80c734 100644 --- a/wiki/src/about.ru.po +++ b/wiki/src/about.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-15 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.9.1\n" #. type: Content of: <div> @@ -73,23 +73,23 @@ msgstr "" #. type: Content of: <section><div><p> #, fuzzy #| msgid "" -#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] download and takes ½ hour to install. Tails can be " -#| "installed on any USB stick of 8 GB minimum. Tails works on most " -#| "computers less than 10 years old. You can start again on the other " -#| "operating system after you shut down Tails." -msgid "" -"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]] download and takes ½ hour to install. Tails can be installed " -"on any USB stick of 8 GB minimum. Tails works on most computers less than " -"10 years old. You can start again on the other operating system after you " -"shut down Tails." -msgstr "" -"Объём Tails – [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -"sort=\"age\"]]. УÑтановка занимает примерно полчаÑа. ПонадобитÑÑ Ñ„Ð»ÐµÑˆÐºÐ° " -"объёмом от 8 Гб. Tails работает на большинÑтве компьютеров, выпущенных за " -"поÑледних 10 лет. Когда Tails уже не требуетÑÑ, можно перезагрузитьÑÑ Ð¸ " -"работать Ñ Ð¿Ñ€Ð¸Ð²Ñ‹Ñ‡Ð½Ð¾Ð¹ операционной ÑиÑтемой." +#| "Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] download and takes ½ hour to install. Tails can be installed on " +#| "any USB stick of 8 GB minimum. Tails works on most computers less than " +#| "10 years old. You can start again on the other operating system after " +#| "you shut down Tails." +msgid "" +"Tails is a [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]] download and takes ½ hour to install. Tails can be installed on " +"any USB stick of 8 GB minimum. Tails works on most computers less than 10 " +"years old. You can start again on the other operating system after you shut " +"down Tails." +msgstr "" +"Объём Tails – [[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +"\"age\"]]. УÑтановка занимает примерно полчаÑа. ПонадобитÑÑ Ñ„Ð»ÐµÑˆÐºÐ° объёмом " +"от 8 Гб. Tails работает на большинÑтве компьютеров, выпущенных за поÑледних " +"10 лет. Когда Tails уже не требуетÑÑ, можно перезагрузитьÑÑ Ð¸ работать Ñ " +"привычной операционной ÑиÑтемой." #. type: Content of: <section><div><p> msgid "" @@ -117,7 +117,9 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Скачать и уÑтановить Tails|install]]" #. type: Content of: <section><div><div><ul><li> -msgid "[[System requirements|doc/about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|doc/about/requirements]]" +msgid "[[System requirements and recommended hardware|doc/about/requirements]]" msgstr "[[СиÑтемные требованиÑ|doc/about/requirements]]" # @@ -181,13 +183,13 @@ msgstr "" # #. type: Content of: <section><div> msgid "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Like a backpack, you can store your personal things in " -"your Persistent Storage and use them in your tent.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Like a backpack, you can store your personal things in your Persistent " +"Storage and use them in your tent.</i>" msgstr "" -"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i " -"class=\"metaphor\">Tails – как рюкзак. Можно хранить вÑÑ‘ личное в защищённом " -"меÑте, а потом иÑпользовать в палатке.</i>" +"[[!img persistent-storage.svg link=\"no\" alt=\"\"]] <i class=\"metaphor" +"\">Tails – как рюкзак. Можно хранить вÑÑ‘ личное в защищённом меÑте, а потом " +"иÑпользовать в палатке.</i>" #. type: Content of: <section><div><h2> #, fuzzy diff --git a/wiki/src/doc/about.index.de.po b/wiki/src/doc/about.index.de.po index d2463e98c73..e31b541df3f 100644 --- a/wiki/src/doc/about.index.de.po +++ b/wiki/src/doc/about.index.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-09-20 08:39+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: \n" @@ -21,7 +21,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "[[!traillink System_requirements|about/requirements]]" -msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[!traillink Systemvoraussetzungen|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about.index.es.po b/wiki/src/doc/about.index.es.po index c4849cdb6b7..ac224b6d7a0 100644 --- a/wiki/src/doc/about.index.es.po +++ b/wiki/src/doc/about.index.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -19,7 +19,9 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Bullet: ' - ' -msgid "[[System requirements|about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[Requisitos del sistema|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about.index.fr.po b/wiki/src/doc/about.index.fr.po index b5bf2aa706b..6fe7dd96280 100644 --- a/wiki/src/doc/about.index.fr.po +++ b/wiki/src/doc/about.index.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -19,7 +19,9 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Bullet: ' - ' -msgid "[[System requirements|about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[Configuration requise|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about.index.it.po b/wiki/src/doc/about.index.it.po index 844a99a2e30..702e17cd548 100644 --- a/wiki/src/doc/about.index.it.po +++ b/wiki/src/doc/about.index.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" @@ -19,7 +19,9 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Bullet: ' - ' -msgid "[[System requirements|about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[Requisiti_di_sistema|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about.index.pt.po b/wiki/src/doc/about.index.pt.po index b05f20399b5..47fdc774299 100644 --- a/wiki/src/doc/about.index.pt.po +++ b/wiki/src/doc/about.index.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: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-02-26 11:27+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -19,7 +19,9 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Bullet: ' - ' -msgid "[[System requirements|about/requirements]]" +#, fuzzy +#| msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[Requisitos de sistema|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about.index.ru.po b/wiki/src/doc/about.index.ru.po index d871e06009f..9c3c9ccc6ce 100644 --- a/wiki/src/doc/about.index.ru.po +++ b/wiki/src/doc/about.index.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-01-27 18:26+0100\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2021-07-22 04:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -22,7 +22,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "[[!traillink System_requirements|about/requirements]]" -msgid "[[System requirements|about/requirements]]" +msgid "[[System requirements and recommended hardware|about/requirements]]" msgstr "[[!traillink СиÑтемные_требованиÑ|about/requirements]]" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/about/requirements.de.po b/wiki/src/doc/about/requirements.de.po index 84c58bae8dc..7bb68368e6f 100644 --- a/wiki/src/doc/about/requirements.de.po +++ b/wiki/src/doc/about/requirements.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-12 16:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails-l10n@boum.org>\n" @@ -19,34 +19,58 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"Systemvoraussetzungen\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "" "Tails läuft auf den meisten Rechnern die nicht älter als 10 Jahre sind." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "" +"Tails läuft auf den meisten Rechnern die nicht älter als 10 Jahre sind." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails läuft möglicherweise nicht auf:</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" "<li>Älteren Computern, beispielsweise wenn sie nicht genug RAM haben.</li>\n" @@ -54,10 +78,19 @@ msgstr "" "kompatibel mit Linux|support/known_issues/graphics]] ist.</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" "<p>\n" @@ -69,8 +102,10 @@ msgstr "" msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Hardware Voraussetzungen:" #. type: Plain text @@ -101,14 +136,10 @@ msgid "" "\"definition\">[[!wikipedia ARM_architecture desc=\"ARM\"]]</span>." msgstr "" -#. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "" - #. type: Bullet: ' - ' msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" #. type: Bullet: ' - ' @@ -120,7 +151,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "Tails works on most computers less than 10 years old." -msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." msgstr "" "Tails läuft auf den meisten Rechnern die nicht älter als 10 Jahre sind." @@ -134,6 +165,154 @@ msgstr "" msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr "**2GB RAM**, um sauber zu arbeiten. Notfalls läuft es auch mit weniger Arbeitsspeicher, allerdings kann es dann zu unerwarteten Störungen oder Systemabstürzen kommen." +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + #, fuzzy, no-wrap #~| msgid "Tails requires a 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span> compatible processor: **<span class=\"definition\">[[!wikipedia IBM_PC_compatible]]</span>** and others but not <span class=\"definition\">[[!wikipedia PowerPC]]</span> nor <span class=\"definition\">[[!wikipedia ARM_architecture desc=\"ARM\"]]</span>. Mac computers are IBM PC compatible since 2006. Tails does **not** run on most tablets and phones." #~ msgid "" diff --git a/wiki/src/doc/about/requirements.es.po b/wiki/src/doc/about/requirements.es.po index fc269ca2d86..6ce3a4b76b1 100644 --- a/wiki/src/doc/about/requirements.es.po +++ b/wiki/src/doc/about/requirements.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: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-06-17 06:07+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -19,35 +19,60 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"Requisitos del sistema\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "" "Tails funciona en la mayorÃa de las computadoras con menos de 10 años de " "antigüedad." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "" +"Tails funciona en la mayorÃa de las computadoras con menos de 10 años de " +"antigüedad." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails podrÃa no funcionar en:</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" "<li>Algunas computadoras viejas, por ejemplo si no tienen suficiente\n" @@ -56,10 +81,19 @@ msgstr "" "no es compatible con Linux|support/known_issues/graphics]].</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" "<p>Mira los [[problemas conocidos de compatibilidad\n" @@ -70,8 +104,10 @@ msgstr "" msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Requerimientos de hardware:" #. type: Plain text @@ -103,19 +139,14 @@ msgid "" "\"definition\">[[!wikipedia ARM_architecture desc=\"ARM\"]]</span>." msgstr "" -#. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "" -"La mayorÃa de las computadoras Mac son compatibles con IBM PC desde 2006." - #. type: Bullet: ' - ' #, fuzzy #| msgid "" #| "Tails does not work with Mac models that use the [[!wikipedia Apple M1]] " #| "chip." msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" "Tails no funciona con modelos de Mac que usan el chip [[!wikipedia_es Apple " "M1]]." @@ -129,7 +160,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "Tails works on most computers less than 10 years old." -msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." msgstr "" "Tails funciona en la mayorÃa de las computadoras con menos de 10 años de " "antigüedad." @@ -143,6 +174,158 @@ msgstr "- 2 GB de memoria RAM para trabajar cómodamente." msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr " Tails puede funcionar con menos de 2 GB de memoria RAM pero puede comportarse de manera extraña o fallar.\n" +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + +#~ msgid "Most Mac computers are IBM PC compatible since 2006." +#~ msgstr "" +#~ "La mayorÃa de las computadoras Mac son compatibles con IBM PC desde 2006." + #, no-wrap #~ msgid "" #~ "- A 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span>\n" diff --git a/wiki/src/doc/about/requirements.fr.po b/wiki/src/doc/about/requirements.fr.po index 4720d1b70fe..d6a73567b3e 100644 --- a/wiki/src/doc/about/requirements.fr.po +++ b/wiki/src/doc/about/requirements.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-30 16:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -19,45 +19,78 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"Configuration requise\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "Tails marche sur la plupart des ordinateurs vieux de moins de 10 ans." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "Tails marche sur la plupart des ordinateurs vieux de moins de 10 ans." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails pourrait ne pas marcher sur :</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" "<li>Certains vieux ordinateurs, par exemple, s'ils n'ont pas assez de\n" "RAM.</li>\n" -"<li>Certains ordinateurs récents, par exemple, si leur [[carte graphique n'est\n" +"<li>Certains ordinateurs récents, par exemple, si leur [[carte graphique " +"n'est\n" "pas compatible avec Linux|support/known_issues/graphics]].</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" "<p>Voir les [[problèmes de compatibilité matérielle\n" @@ -68,8 +101,10 @@ msgstr "" msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Matériel requis :" #. type: Plain text @@ -102,21 +137,20 @@ msgid "" msgstr "" "<span class=\"definition\">[[!wikipedia_fr \"Compatible_PC\"]]</span> mais " "pas <span class=\"definition\">[[!wikipedia_fr PowerPC]]</span> ni\n" -"<span class=\"definition\">[[!wikipedia_fr Architecture_ARM desc=\"ARM\"" -"]]</span>." - -#. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "" -"La plupart des ordinateurs Mac sont compatibles avec IBM PC depuis 2006." +"<span class=\"definition\">[[!wikipedia_fr Architecture_ARM desc=\"ARM\"]]</" +"span>." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "Tails does not work with Mac models that use the [[!wikipedia " +#| "Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" -"Tails ne fonctionne pas avec les modèles de Mac qui utilisent les puces [[" -"!wikipedia_fr Apple_Silicon#Série_M desc=\"Apple M1 ou M2\"]]." +"Tails ne fonctionne pas avec les modèles de Mac qui utilisent les puces [[!" +"wikipedia_fr Apple_Silicon#Série_M desc=\"Apple M1 ou M2\"]]." #. type: Bullet: ' - ' msgid "" @@ -127,8 +161,11 @@ msgstr "" "Tails_3.0_will_require_a_64-bit_processor]] (juin 2017)." #. type: Bullet: ' - ' -msgid "Tails does not work on most tablets and phones." -msgstr "Tails ne fonctionne pas sur la plupart des tablettes et des téléphones." +#, fuzzy +#| msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." +msgstr "" +"Tails ne fonctionne pas sur la plupart des tablettes et des téléphones." #. type: Plain text msgid "- 2 GB of RAM to work smoothly." @@ -139,6 +176,158 @@ msgstr "- 2 Go de RAM pour une utilisation confortable." msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr " Tails peut fonctionner avec moins de 2 Go de RAM, mais pourrait se comporter anormalement ou avoir des plantages.\n" +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + +#~ msgid "Most Mac computers are IBM PC compatible since 2006." +#~ msgstr "" +#~ "La plupart des ordinateurs Mac sont compatibles avec IBM PC depuis 2006." + #, no-wrap #~ msgid "" #~ "- A 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span>\n" diff --git a/wiki/src/doc/about/requirements.it.po b/wiki/src/doc/about/requirements.it.po index 2dc97cd082f..4c49807b0aa 100644 --- a/wiki/src/doc/about/requirements.it.po +++ b/wiki/src/doc/about/requirements.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian translation\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-07-09 13:07+0000\n" "Last-Translator: Noisy Coil <noisycoil@tutanota.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -19,34 +19,58 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"Requisiti di sistema\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "" "Tails funziona sulla maggior parte dei computer che abbiano meno di 10 anni." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "" +"Tails funziona sulla maggior parte dei computer che abbiano meno di 10 anni." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails potrebbe non funzionare su:</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" "<li>Alcuni computer più vecchi, ad esempio, se non c'è abbastanza\n" @@ -55,10 +79,19 @@ msgstr "" "compatibile con Linux|support/known_issues/graphics]].</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" "<p>Vedere i [[problemi noti di compatibilità \n" @@ -69,8 +102,10 @@ msgstr "" msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Requisiti hardware:" #. type: Plain text @@ -104,18 +139,14 @@ msgstr "" "<span class=\"definition\">[[!wikipedia PowerPC]]</span> né <span class=" "\"definition\">[[!wikipedia ARM_architecture desc=\"ARM\"]]</span>." -#. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "La maggior parte dei computer Mac è IBM compatibile dal 2006." - #. type: Bullet: ' - ' #, fuzzy #| msgid "" #| "Tails does not work with Mac models that use the [[!wikipedia Apple M1]] " #| "chip." msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" "Tails non funziona con modelli di Mac che utilizzano il chip [[!wikipedia " "Apple M1]] ." @@ -129,7 +160,9 @@ msgstr "" "Tails_3.0_will_require_a_64-bit_processor]] (June 2017)." #. type: Bullet: ' - ' -msgid "Tails does not work on most tablets and phones." +#, fuzzy +#| msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." msgstr "Tails non funziona sulla maggior parte dei tablet e smartphone." #. type: Plain text @@ -141,6 +174,157 @@ msgstr "- 2 GB di RAM per lavorare comodamente." msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr " Tails può funzionare con meno di 2 GB di RAM, ma potrebbe presentare anomalie o andare in crash.\n" +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + +#~ msgid "Most Mac computers are IBM PC compatible since 2006." +#~ msgstr "La maggior parte dei computer Mac è IBM compatibile dal 2006." + #, no-wrap #~ msgid "" #~ "- A 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span>\n" diff --git a/wiki/src/doc/about/requirements.pt.po b/wiki/src/doc/about/requirements.pt.po index c7fec016de2..f351826040d 100644 --- a/wiki/src/doc/about/requirements.pt.po +++ b/wiki/src/doc/about/requirements.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-11-08 19:17+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" @@ -19,34 +19,58 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"Requisitos de sistema\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "" "Tails funciona na maioria dos computadores produzidos há menos de 10 anos." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "" +"Tails funciona na maioria dos computadores produzidos há menos de 10 anos." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails pode não funcionar em:</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" "<li>Alguns computadores antigos se, por exemplo, não tiverem\n" @@ -55,10 +79,19 @@ msgstr "" "não for compatÃvel com Linux|support/known_issues/graphics]].</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" "<p>Veja os [[problemas de compatibilidade de hardware\n" @@ -69,8 +102,10 @@ msgstr "" msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Requisitos de hardware:" #. type: Plain text @@ -108,13 +143,13 @@ msgstr "" "span>." #. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "A maioria dos computadores Mac são compatÃveis com IBM PC desde 2006." - -#. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "Tails does not work with Mac models that use the [[!wikipedia " +#| "Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" "Tails não funciona com os modelos de Mac que usam os chips [[!wikipedia " "Apple_silicon#M_series desc=\"Apple M1 ou M2\"]]." @@ -128,7 +163,9 @@ msgstr "" "Tails_3.0_will_require_a_64-bit_processor]] (junho de 2017)." #. type: Bullet: ' - ' -msgid "Tails does not work on most tablets and phones." +#, fuzzy +#| msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." msgstr "Tails não funciona na maioria dos tablets e smartphones." #. type: Plain text @@ -140,6 +177,158 @@ msgstr "- 2 GB de memória RAM para funcionar sem problemas." msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr " Tails pode funcionar com menos de 2 GB de memória RAM, mas pode se comportar de maneira estranha ou travar.\n" +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + +#~ msgid "Most Mac computers are IBM PC compatible since 2006." +#~ msgstr "" +#~ "A maioria dos computadores Mac são compatÃveis com IBM PC desde 2006." + #, no-wrap #~ msgid "" #~ "- A 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span>\n" diff --git a/wiki/src/doc/about/requirements.ru.po b/wiki/src/doc/about/requirements.ru.po index b126eaf7e45..0c9dcfcb3d5 100644 --- a/wiki/src/doc/about/requirements.ru.po +++ b/wiki/src/doc/about/requirements.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-11-08 00:37+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2021-07-16 19:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,43 +20,77 @@ msgstr "" "X-Generator: Weblate 3.11.3\n" #. type: Plain text -#, no-wrap -msgid "[[!meta title=\"System requirements\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!meta title=\"System requirements\"]]\n" +msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" msgstr "[[!meta title=\"СиÑтемные требованиÑ\"]]\n" -#. type: Plain text -msgid "Tails works on most computers less than 10 years old." +#. type: Title = +#, no-wrap +msgid "Summary" +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on most PC computers that are less than 10 years old." msgstr "Tails работает на большинÑтве компьютеров, которым меньше 10 лет." -#. type: Plain text -#, no-wrap -msgid "<div class=\"note\">\n" -msgstr "<div class=\"note\">\n" +#. type: Bullet: ' - ' +#, fuzzy +#| msgid "Tails works on most computers less than 10 years old." +msgid "Tails works on some older Mac computers with an Intel processor." +msgstr "Tails работает на большинÑтве компьютеров, которым меньше 10 лет." -#. type: Plain text -#, no-wrap -msgid "<p>Tails might not work on:</p>\n" +#. type: Bullet: '- ' +msgid "" +"Tails does not work on newer Mac computers with an Apple processor (M1 or " +"M2)." +msgstr "" + +#. type: Bullet: '- ' +#, fuzzy +#| msgid "<p>Tails might not work on:</p>\n" +msgid "Tails might not work on:" msgstr "<p>Tails может не работать на:</p>\n" -#. type: Plain text -#, no-wrap +#. type: Bullet: ' * ' +msgid "Some older computers, for example, if they don't have enough RAM." +msgstr "" + +#. type: Bullet: ' * ' +#, fuzzy +#| msgid "" +#| "<ul>\n" +#| "<li>Some older computers, for example, if they don't have enough\n" +#| "RAM.</li>\n" +#| "<li>Some newer computers, for example, if their [[graphics card is\n" +#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" +#| "</ul>\n" msgid "" -"<ul>\n" -"<li>Some older computers, for example, if they don't have enough\n" -"RAM.</li>\n" -"<li>Some newer computers, for example, if their [[graphics card is\n" -"not compatible with Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Some newer computers, for example, if their [[graphics card is incompatible " +"with Linux|support/known_issues/graphics]]." msgstr "" "<ul>\n" -"<li>некоторых Ñтарых компьютерах, которым, например, не хватает оперативной памÑти;</li>\n" -"<li>некоторых Ñравнительно новых компьютерах, например, еÑли их [[видеокарта неÑовмеÑтима Ñ Linux|support/known_issues/graphics]].</li>\n" +"<li>некоторых Ñтарых компьютерах, которым, например, не хватает оперативной " +"памÑти;</li>\n" +"<li>некоторых Ñравнительно новых компьютерах, например, еÑли их [[видеокарта " +"неÑовмеÑтима Ñ Linux|support/known_issues/graphics]].</li>\n" "</ul>\n" +#. type: Bullet: ' * ' +msgid "" +"\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " +"incompatible." +msgstr "" + #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p>See the [[known hardware compatibility\n" +#| "issues|support/known_issues]].</p>\n" msgid "" -"<p>See the [[known hardware compatibility\n" +"<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "<p>Смотрите раздел [[о проблемах ÑовмеÑтимоÑти оборудованиÑ|support/known_issues]].</p>\n" @@ -65,8 +99,10 @@ msgstr "<p>Смотрите раздел [[о проблемах ÑовмеÑÑ‚ msgid "</div>\n" msgstr "</div>\n" -#. type: Plain text -msgid "Hardware requirements:" +#. type: Title = +#, fuzzy, no-wrap +#| msgid "Hardware requirements:" +msgid "Hardware requirements" msgstr "Ðппаратные требованиÑ:" #. type: Plain text @@ -95,14 +131,10 @@ msgid "" "\"definition\">[[!wikipedia ARM_architecture desc=\"ARM\"]]</span>." msgstr "" -#. type: Bullet: ' - ' -msgid "Most Mac computers are IBM PC compatible since 2006." -msgstr "" - #. type: Bullet: ' - ' msgid "" -"Tails does not work with Mac models that use the [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." +"Tails does not work on newer Mac computers with an [[!wikipedia " +"Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" #. type: Bullet: ' - ' @@ -114,7 +146,7 @@ msgstr "" #. type: Bullet: ' - ' #, fuzzy #| msgid "Tails works on most computers less than 10 years old." -msgid "Tails does not work on most tablets and phones." +msgid "Tails does not work on phone or tablets." msgstr "Tails работает на большинÑтве компьютеров, которым меньше 10 лет." #. type: Plain text @@ -126,6 +158,154 @@ msgstr "- 2 Гб оперативной памÑти Ð´Ð»Ñ Ñтабильной msgid " Tails can work with less than 2 GB RAM but might behave strangely or crash.\n" msgstr " Ðа уÑтройÑтвах Ñ Ð¾Ð±ÑŠÑ‘Ð¼Ð¾Ð¼ памÑти меньше 2 Гб Tails может работать неÑтабильно или не работать вообще.\n" +#. type: Title = +#, no-wrap +msgid "Recommended hardware" +msgstr "" + +#. type: Plain text +msgid "" +"Laptop models evolve too rapidly for us to be able to provide an up-to-date " +"list of recommended hardware. Below are some guidelines if you, or your " +"organization, are considering acquiring a laptop dedicated to running Tails." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For PC" +msgstr "" + +#. type: Bullet: '- ' +msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a refurbished laptop from a high-end (professional) series. " +"These are cheaper and will last longer than new but lower-quality laptops." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"For example, the Lenovo ThinkPad series work well with Tails, including the " +"X250, X1 Carbon, T440, T480, and T490 models." +msgstr "" + +#. type: Bullet: ' * ' +msgid "" +"If you live in a part of the world where buying refurbished laptops is " +"uncommon, look on eBay and Amazon. Amazon offers a 90-day [Amazon Renewed " +"Guarantee](https://www.amazon.com/gp/help/customer/display.html?" +"nodeId=G4ZAA22U35N373NX)." +msgstr "" + +#. type: Bullet: '- ' +msgid "" +"Consider buying a new laptop from vendors who guarantee the compatibility " +"with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." +msgstr "" + +#. type: Title ### +#, no-wrap +msgid "For Mac" +msgstr "" + +#. type: Plain text +msgid "" +"Unfortunately, we don't know of any Mac model that works well in Tails and " +"can run the latest macOS version." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "<!--\n" +msgstr "" + +#. type: Plain text +msgid "To update the list of Mac computer:" +msgstr "" + +#. type: Bullet: '1. ' +msgid "" +"Store an archive of WhisperBack reports from the last 6 months in a folder." +msgstr "" + +#. type: Bullet: '2. ' +msgid "Decrypt all the reports:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" +msgstr "" + +#. type: Bullet: '3. ' +msgid "Extract the list of computer models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" +msgstr "" + +#. type: Bullet: '4. ' +msgid "Sort and count identical models:" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" +msgstr "" + +#. type: Bullet: '5. ' +msgid "" +"Share WhisperBack reports number with the Foundations team and ask them to " +"evaluate hardware compatibility hints in those reports." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid " While analyzing the reports corresponding from each model, FT should:\n" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether they were sent from the same email address, if any" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the wlan0 interface was the same hardware device" +msgstr "" + +#. type: Bullet: ' - ' +msgid "Check whether the report was about hardware compatibility issues" +msgstr "" + +#. type: Bullet: '6. ' +msgid "" +"Check whether these Mac models still support the latest version of macOS." +msgstr "" + +#. type: Plain text +msgid "To update the list of PC computers:" +msgstr "" + +#. type: Plain text +msgid "- Check what's commonly available with refurbishing companies." +msgstr "" + +#. type: Plain text +msgid "- Ask tails-assembly@ for models." +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "-->\n" +msgstr "" + +#, no-wrap +#~ msgid "<div class=\"note\">\n" +#~ msgstr "<div class=\"note\">\n" + #, no-wrap #~ msgid "" #~ "- A 64-bit <span class=\"definition\">[[!wikipedia x86-64]]</span>\n" diff --git a/wiki/src/install/dvd.de.po b/wiki/src/install/dvd.de.po index d0e5502ddc1..9be958b50ee 100644 --- a/wiki/src/install/dvd.de.po +++ b/wiki/src/install/dvd.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-29 21:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -26,28 +26,22 @@ msgstr "[[!meta title=\"Tails auf eine DVD brennen\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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 @@ -66,7 +60,7 @@ msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" msgstr "" #. type: Plain text @@ -77,23 +71,17 @@ msgstr "</div>\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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.de\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.de\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.de\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.de\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.de\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/dvd.es.po b/wiki/src/install/dvd.es.po index 9f4b60b52b4..450d1e27496 100644 --- a/wiki/src/install/dvd.es.po +++ b/wiki/src/install/dvd.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: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-06-07 16:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -26,28 +26,22 @@ msgstr "[[!meta title=\"Grabar Tails en un DVD\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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 @@ -65,10 +59,10 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" -msgstr "" -"<p>Mira nuestros [[requisitos del sistema|doc/about/requirements]].</p>\n" +#, fuzzy, no-wrap +#| msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" +msgstr "<p>Mira nuestros [[requisitos del sistema|doc/about/requirements]].</p>\n" #. type: Plain text #, no-wrap @@ -78,23 +72,17 @@ msgstr "</div>\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" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.es\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.es\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.es\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.es\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/dvd.fr.po b/wiki/src/install/dvd.fr.po index d63c25a4697..dd2b514d08d 100644 --- a/wiki/src/install/dvd.fr.po +++ b/wiki/src/install/dvd.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-19 21:06+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -26,28 +26,22 @@ msgstr "[[!meta title=\"Graver Tails sur un DVD\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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 @@ -65,8 +59,9 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +#, fuzzy, no-wrap +#| msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" msgstr "<p>Vérifier la [[configuration requise|doc/about/requirements]].</p>\n" #. type: Plain text @@ -77,29 +72,22 @@ msgstr "</div>\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" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.fr\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.fr\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.fr\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "<h1 class=\"step\">Continue installing or upgrading Tails</h1>\n" -msgstr "" -"<h1 class=\"step\">Continuer l'installation ou mettre à jour Tails</h1>\n" +msgstr "<h1 class=\"step\">Continuer l'installation ou mettre à jour Tails</h1>\n" #. type: Plain text msgid "For detailed instructions, refer to the Ubuntu documentation:" diff --git a/wiki/src/install/dvd.it.po b/wiki/src/install/dvd.it.po index c4dc6eeff5a..5f0cd0acd9c 100644 --- a/wiki/src/install/dvd.it.po +++ b/wiki/src/install/dvd.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-29 21:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -26,28 +26,22 @@ msgstr "[[!meta title=\"Masterizzare Tails su un DVD\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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 @@ -66,7 +60,7 @@ msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" msgstr "" #. type: Plain text @@ -77,23 +71,17 @@ msgstr "</div>\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" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.it\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.it\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.it\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/dvd.pt.po b/wiki/src/install/dvd.pt.po index 99b5823168e..412cfdd96db 100644 --- a/wiki/src/install/dvd.pt.po +++ b/wiki/src/install/dvd.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: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-06-08 12:40+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,28 +26,22 @@ msgstr "[[!meta title=\"Gravando Tails em um DVD\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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 @@ -65,8 +59,9 @@ msgid "<div class=\"tip\">\n" msgstr "<div class=\"tip\">\n" #. type: Plain text -#, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +#, fuzzy, no-wrap +#| msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" msgstr "<p>Veja nossos [[requisitos de sistema|doc/about/requirements]].</p>\n" #. type: Plain text @@ -77,29 +72,22 @@ msgstr "</div>\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.pt\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.pt\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.pt\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.pt\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "<h1 class=\"step\">Continue installing or upgrading Tails</h1>\n" -msgstr "" -"<h1 class=\"step\">Continue com a instalação ou atualização do Tails</h1>\n" +msgstr "<h1 class=\"step\">Continue com a instalação ou atualização do Tails</h1>\n" #. type: Plain text msgid "For detailed instructions, refer to the Ubuntu documentation:" diff --git a/wiki/src/install/dvd.ru.po b/wiki/src/install/dvd.ru.po index 6b7f182afec..967a3e9bc17 100644 --- a/wiki/src/install/dvd.ru.po +++ b/wiki/src/install/dvd.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-02-25 15:40-0600\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-29 21:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -27,28 +27,22 @@ msgstr "[[!meta title=\"ЗапиÑÑŒ Tails на DVD\"]]\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=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" -msgstr "" -"[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]\n" +msgstr "[[!meta stylesheet=\"doc/about/warnings\" 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,7 +61,7 @@ msgstr "<div class=\"tip\">\n" #. type: Plain text #, no-wrap -msgid "<p>Check our [[system requirements|doc/about/requirements]].</p>\n" +msgid "<p>Check our [[system requirements and recommended hardware|doc/about/requirements]].</p>\n" msgstr "" #. type: Plain text @@ -78,23 +72,17 @@ msgstr "</div>\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.ru\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/download.inline.ru\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/warnings.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/warnings.inline.ru\" raw=\"yes\" sort=" -"\"age\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/warnings.inline.ru\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap msgid "[[!inline pages=\"install/inc/steps/verify.inline\" raw=\"yes\" sort=\"age\"]]\n" -msgstr "" -"[[!inline pages=\"install/inc/steps/verify.inline.ru\" raw=\"yes\" sort=\"age" -"\"]]\n" +msgstr "[[!inline pages=\"install/inc/steps/verify.inline.ru\" raw=\"yes\" sort=\"age\"]]\n" #. type: Plain text #, no-wrap diff --git a/wiki/src/install/inc/overview.de.po b/wiki/src/install/inc/overview.de.po index 68fac867c28..1d64a3b8615 100644 --- a/wiki/src/install/inc/overview.de.po +++ b/wiki/src/install/inc/overview.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-22 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -66,15 +66,15 @@ msgstr "[[!toggle id=\"why_extra\" text=\"Wieso?\"]]</small>" #, fuzzy #| msgid "" #| "[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -#| "text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline\" " -#| "raw=\"yes\" sort=\"age\"]] \"\"\"]]" +#| "text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline\" raw=" +#| "\"yes\" sort=\"age\"]] \"\"\"]]" msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline.de\" " -"raw=\"yes\" sort=\"age\"]] \"\"\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline.de\" raw=\"yes" +"\" sort=\"age\"]] \"\"\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -211,11 +211,11 @@ msgid "1 hour in total" msgstr "" #. type: Content of: <div><div><p> -msgid "½ hour" +msgid "½ hour" msgstr "" #. type: Content of: <div><div><p> -msgid "¼ hour" +msgid "¼ hour" msgstr "" #. type: Content of: <div><div><p> @@ -233,11 +233,24 @@ msgstr "" "herunterladen</small>" #. type: Content of: <div><div><p> -msgid "½ hour to install" +msgid "½ hour to install" msgstr "" #. type: Content of: <div><div><p> -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" +msgstr "" + +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" msgstr "" #. type: Content of: <h2> @@ -490,10 +503,10 @@ msgstr "</a>" #~ "in total</span> <span class=\"install-clone mac-clone\">½ hour</span> " #~ "<span class=\"upgrade-clone\">¼ hour</span>" #~ msgstr "" -#~ "<span class=\"windows linux mac\">2 Stunden insgesamt</span> <span " -#~ "class=\"debian expert upgrade-tails\">1½ Stunden insgesamt</span> <span " -#~ "class=\"install-clone mac-clone\">½ Stunde</span> <span class=\"upgrade-" -#~ "clone\">¼ Stunde</span>" +#~ "<span class=\"windows linux mac\">2 Stunden insgesamt</span> <span class=" +#~ "\"debian expert upgrade-tails\">1½ Stunden insgesamt</span> <span class=" +#~ "\"install-clone mac-clone\">½ Stunde</span> <span class=\"upgrade-clone" +#~ "\">¼ Stunde</span>" #, fuzzy #~| msgid "" @@ -524,8 +537,8 @@ msgstr "</a>" #~ "[[!img install/inc/infography/download.png link=\"no\" alt=\"USB image " #~ "downloaded\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"ISO-Image heruntergeladen und verifiziert\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"ISO-Image heruntergeladen und verifiziert\"]]" #, fuzzy #~| msgid "[[!img install/inc/infography/download-and-verify.png link=\"no\"]]" @@ -533,19 +546,19 @@ msgstr "</a>" #~ "[[!img install/inc/infography/verify.png link=\"no\" alt=\"USB image " #~ "verified\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"ISO-Image heruntergeladen und verifiziert\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"ISO-Image heruntergeladen und verifiziert\"]]" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/restart-on-intermediary-tails.png " -#~| "link=\"no\"]]" +#~| "[[!img install/inc/infography/restart-on-intermediary-tails.png link=\"no" +#~| "\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-intermediary-tails.png " -#~ "link=\"no\" alt=\"Computer neugestartet und USB-Stick zur linken Seite\"]]" +#~ "[[!img install/inc/infography/restart-on-intermediary-tails.png link=\"no" +#~ "\" alt=\"Computer neugestartet und USB-Stick zur linken Seite\"]]" #~ msgid "Restart" #~ msgstr "Neustarten" @@ -553,8 +566,8 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/icons/restart.png link=\"no\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #, fuzzy @@ -567,11 +580,11 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/upgrade-upgrade-usb.png link=\"no\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"ISO-Image auf dem USB-Stick zur linken Seite installiert\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"ISO-Image auf dem USB-Stick zur linken Seite installiert\"]]" #, fuzzy #~| msgid "[[!img install/inc/infography/clone-dvd.png link=\"no\"]]" @@ -587,8 +600,8 @@ msgstr "</a>" #~| "<span class=\"install-clone mac-clone windows linux mac\">Install</span> " #~| "<span class=\"upgrade\">Upgrade</span>" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" #~ "<span class=\"install-clone mac-clone windows linux mac\">Installieren</" #~ "span> <span class=\"upgrade\">Aktualisieren</span>" @@ -601,11 +614,11 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/create-persistence.png link=\"no\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Verschlüsselung auf dem USB-Stick zur rechten Seite eingerichtet\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Verschlüsselung auf dem USB-Stick zur rechten Seite eingerichtet\"]]" #~ msgid "Configure" #~ msgstr "Konfigurieren" diff --git a/wiki/src/install/inc/overview.es.po b/wiki/src/install/inc/overview.es.po index 6566e04180f..3c021433d38 100644 --- a/wiki/src/install/inc/overview.es.po +++ b/wiki/src/install/inc/overview.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-22 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -58,11 +58,11 @@ msgstr "[[!toggle id=\"why_extra\" text=\"¿Por qué?\"]]" #. type: Content of: <div><div><div> msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -203,13 +203,13 @@ msgstr "1 hora en total" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour" -msgid "½ hour" +msgid "½ hour" msgstr "½ hora" #. type: Content of: <div><div><p> #, fuzzy #| msgid "¼ hour" -msgid "¼ hour" +msgid "¼ hour" msgstr "¼ hora" #. type: Content of: <div><div><p> @@ -223,15 +223,28 @@ msgstr "" #. type: Content of: <div><div><p> #, fuzzy #| msgid "1 hour in total" -msgid "½ hour to install" +msgid "½ hour to install" msgstr "1 hora en total" #. type: Content of: <div><div><p> #, fuzzy #| msgid "1 hour in total" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "1 hora en total" +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" +msgstr "" + #. type: Content of: <h2> msgid "Your steps" msgstr "Tus pasos" @@ -506,8 +519,8 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/verify.png link=\"no\" alt=\"USB image " #~ "verified\"]]" @@ -516,11 +529,11 @@ msgstr "</a>" #~ "verificada\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computadora reiniciada en la memoria USB de la derecha\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computadora reiniciada en la memoria USB de la derecha\"]]" #~ msgid "Restart" #~ msgstr "Reiniciar" @@ -528,8 +541,8 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" @@ -540,11 +553,11 @@ msgstr "</a>" #~ "USB instalada en una memoria USB\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/upgrade-upgrade-usb.png link=\"no\" " -#~ "alt=\"Imagen USB instalada en una memoria USB a la izquierda\"]]" +#~ "[[!img install/inc/infography/upgrade-upgrade-usb.png link=\"no\" alt=" +#~ "\"Imagen USB instalada en una memoria USB a la izquierda\"]]" #~ msgid "Install intermediary" #~ msgstr "Instalar intermedio" @@ -558,14 +571,14 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "<span class=\"install-clone mac-clone\">Install</span> <span " -#~| "class=\"upgrade\">Upgrade</span>" +#~| "<span class=\"install-clone mac-clone\">Install</span> <span class=" +#~| "\"upgrade\">Upgrade</span>" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" -#~ "<span class=\"install-clone mac-clone\">Instalar</span> <span " -#~ "class=\"upgrade\">Actualizar</span>" +#~ "<span class=\"install-clone mac-clone\">Instalar</span> <span class=" +#~ "\"upgrade\">Actualizar</span>" #, fuzzy #~| msgid "Your Tails" @@ -573,11 +586,11 @@ msgstr "</a>" #~ msgstr "Tu Tails" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Cifrado configurado en una memoria USB\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Cifrado configurado en una memoria USB\"]]" #~ msgid "Configure" #~ msgstr "Configurar" diff --git a/wiki/src/install/inc/overview.fr.po b/wiki/src/install/inc/overview.fr.po index 86620dddeab..6f2b0a9c9b8 100644 --- a/wiki/src/install/inc/overview.fr.po +++ b/wiki/src/install/inc/overview.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-01-03 09:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -56,11 +56,11 @@ msgstr "[[!toggle id=\"why_extra\" text=\"Pourquoi ?\"]]" #. type: Content of: <div><div><div> msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -202,13 +202,13 @@ msgstr "Une heure au total" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour" -msgid "½ hour" +msgid "½ hour" msgstr "½ heure" #. type: Content of: <div><div><p> #, fuzzy #| msgid "¼ hour" -msgid "¼ hour" +msgid "¼ hour" msgstr "¼ heure" #. type: Content of: <div><div><p> @@ -222,15 +222,28 @@ msgstr "" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to install" -msgid "½ hour to install" +msgid "½ hour to install" msgstr "½ heure pour installer" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ heure pour mettre à jour" +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" +msgstr "" + #. type: Content of: <h2> msgid "Your steps" msgstr "Votre marche à suivre" @@ -476,8 +489,8 @@ msgstr "</a>" #~ "hour to upgrade</small></span>" #~ msgstr "" #~ "</span> <span class=\"windows linux mac expert\"><small>½ heure pour " -#~ "l'installation</small></span> <span class=\"upgrade-tails upgrade-" -#~ "os\"><small>½ heure pour la mise à jour</small></span>" +#~ "l'installation</small></span> <span class=\"upgrade-tails upgrade-os" +#~ "\"><small>½ heure pour la mise à jour</small></span>" #~ msgid "[[!img install/inc/icons/usb.png link=\"no\"]]" #~ msgstr "[[!img install/inc/icons/usb.png link=\"no\"]]" @@ -503,21 +516,21 @@ msgstr "</a>" #~ msgstr "Vérification" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Ordinateur redémarré sur la clé USB de gauche\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Ordinateur redémarré sur la clé USB de gauche\"]]" #~ msgid "Restart" #~ msgstr "Redémarrage" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher téléchargé\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher téléchargé\"]]" #~ msgid "" #~ "[[!img install/inc/infography/install-tails.png link=\"no\" alt=\"USB " @@ -527,11 +540,11 @@ msgstr "</a>" #~ "USB installée sur la clé USB\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"Image USB installée sur la clé USB de gauche\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"Image USB installée sur la clé USB de gauche\"]]" #~ msgid "Install intermediary" #~ msgstr "Installation intermédiaire" @@ -544,8 +557,8 @@ msgstr "</a>" #~ "installé sur la clé USB de droite\"]]" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" #~ "<span class=\"install-clone mac-clone\">Installation de Tails</span> " #~ "<span class=\"upgrade\">Mise à jour de Tails</span>" @@ -554,11 +567,11 @@ msgstr "</a>" #~ msgstr "Tails" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Chiffrement configuré sur la clé USB\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Chiffrement configuré sur la clé USB\"]]" #~ msgid "Configure" #~ msgstr "Configuration" diff --git a/wiki/src/install/inc/overview.it.po b/wiki/src/install/inc/overview.it.po index a72702ef3ef..82d91bf4c13 100644 --- a/wiki/src/install/inc/overview.it.po +++ b/wiki/src/install/inc/overview.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-22 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -58,11 +58,11 @@ msgstr "[[!toggle id=\"why_extra\" text=\"Perché?\"]]" #. type: Content of: <div><div><div> msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -207,13 +207,13 @@ msgstr "1 ora in tutto" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour" -msgid "½ hour" +msgid "½ hour" msgstr "½ ora" #. type: Content of: <div><div><p> #, fuzzy #| msgid "¼ hour" -msgid "¼ hour" +msgid "¼ hour" msgstr "¼ d'ora" #. type: Content of: <div><div><p> @@ -227,15 +227,28 @@ msgstr "" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to install" -msgid "½ hour to install" +msgid "½ hour to install" msgstr "½ ora per installare" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ ora per aggiornare" +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" +msgstr "" + #. type: Content of: <h2> msgid "Your steps" msgstr "I passaggi che seguirai" @@ -486,8 +499,8 @@ msgstr "</a>" #~ "hour to upgrade</small></span>" #~ msgstr "" #~ "</span> <span class=\"windows linux mac expert\"><small>½ ora per " -#~ "l'installazione</small></span> <span class=\"upgrade-tails upgrade-" -#~ "os\"><small>½ ora per l'aggiornamento</small></span>" +#~ "l'installazione</small></span> <span class=\"upgrade-tails upgrade-os" +#~ "\"><small>½ ora per l'aggiornamento</small></span>" #~ msgid "[[!img install/inc/icons/usb.png link=\"no\"]]" #~ msgstr "[[!img install/inc/icons/usb.png link=\"no\"]]" @@ -497,32 +510,32 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/download.png link=\"no\" alt=\"USB image " #~ "downloaded\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Immagine USB scaricata e verificata\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Immagine USB scaricata e verificata\"]]" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/verify.png link=\"no\" alt=\"USB image " #~ "verified\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Immagine USB scaricata e verificata\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Immagine USB scaricata e verificata\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer riavviato sulla chiavetta USB a sinistra\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer riavviato sulla chiavetta USB a sinistra\"]]" #~ msgid "Restart" #~ msgstr "Riavvio" @@ -530,23 +543,23 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" #~ "[[!img install/inc/infography/install-tails.png link=\"no\" alt=\"USB " #~ "image installed on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-tails.png link=\"no\" " -#~ "alt=\"Immagine USB installata sulla chiavetta USB\"]]" +#~ "[[!img install/inc/infography/install-tails.png link=\"no\" alt=" +#~ "\"Immagine USB installata sulla chiavetta USB\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"Immagine USB installata sulla chiavetta USB di sinistra\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"Immagine USB installata sulla chiavetta USB di sinistra\"]]" #~ msgid "Install intermediary" #~ msgstr "Installazione intermedia" @@ -560,14 +573,14 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "<span class=\"install-clone mac-clone\">Install</span> <span " -#~| "class=\"upgrade\">Upgrade</span>" +#~| "<span class=\"install-clone mac-clone\">Install</span> <span class=" +#~| "\"upgrade\">Upgrade</span>" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" -#~ "<span class=\"install-clone mac-clone\">Installazione</span> <span " -#~ "class=\"upgrade\">Aggiornamento</span>" +#~ "<span class=\"install-clone mac-clone\">Installazione</span> <span class=" +#~ "\"upgrade\">Aggiornamento</span>" #, fuzzy #~| msgid "Your Tails" @@ -575,11 +588,11 @@ msgstr "</a>" #~ msgstr "Il tuo Tails" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Cifratura configurata sulla chiavetta USB\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Cifratura configurata sulla chiavetta USB\"]]" #~ msgid "Configure" #~ msgstr "Configurazione" diff --git a/wiki/src/install/inc/overview.pt.po b/wiki/src/install/inc/overview.pt.po index 54dbbf5a0f8..4967e60bce0 100644 --- a/wiki/src/install/inc/overview.pt.po +++ b/wiki/src/install/inc/overview.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-11-08 19:17+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,11 +56,11 @@ msgstr "[[!toggle id=\"why_extra\" text=\"Por quê?\"]]" #. type: Content of: <div><div><div> msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -202,13 +202,13 @@ msgstr "1 hora no total" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour" -msgid "½ hour" +msgid "½ hour" msgstr "½ hora" #. type: Content of: <div><div><p> #, fuzzy #| msgid "¼ hour" -msgid "¼ hour" +msgid "¼ hour" msgstr "¼ de hora" #. type: Content of: <div><div><p> @@ -222,15 +222,28 @@ msgstr "" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to install" -msgid "½ hour to install" +msgid "½ hour to install" msgstr "½ hora para instalar" #. type: Content of: <div><div><p> #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ hora para atualizar" +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" +msgstr "" + #. type: Content of: <h2> msgid "Your steps" msgstr "Seus passos" @@ -492,32 +505,32 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/download.png link=\"no\" alt=\"USB image " #~ "downloaded\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Imagem USB baixada e verificada\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Imagem USB baixada e verificada\"]]" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/verify.png link=\"no\" alt=\"USB image " #~ "verified\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Imagem USB baixada e verificada\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Imagem USB baixada e verificada\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computador reiniciado no pendrive USB, à esquerda\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computador reiniciado no pendrive USB, à esquerda\"]]" #~ msgid "Restart" #~ msgstr "Reinicie" @@ -525,8 +538,8 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" @@ -537,11 +550,11 @@ msgstr "</a>" #~ "USB instalada em pendrive USB\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"Imagem USB instalada em pendrive USB, à esquerda\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"Imagem USB instalada em pendrive USB, à esquerda\"]]" #~ msgid "Install intermediary" #~ msgstr "Instalar intermediário" @@ -555,14 +568,14 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "<span class=\"install-clone mac-clone\">Install</span> <span " -#~| "class=\"upgrade\">Upgrade</span>" +#~| "<span class=\"install-clone mac-clone\">Install</span> <span class=" +#~| "\"upgrade\">Upgrade</span>" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" -#~ "<span class=\"install-clone mac-clone\">Instale</span> <span " -#~ "class=\"upgrade\">Atualize</span>" +#~ "<span class=\"install-clone mac-clone\">Instale</span> <span class=" +#~ "\"upgrade\">Atualize</span>" #, fuzzy #~| msgid "Your Tails" @@ -570,11 +583,11 @@ msgstr "</a>" #~ msgstr "Seu Tails" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Criptografia configurada em pendrive USB\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Criptografia configurada em pendrive USB\"]]" #~ msgid "Configure" #~ msgstr "Configure" diff --git a/wiki/src/install/inc/overview.ru.po b/wiki/src/install/inc/overview.ru.po index 588d0e8659e..01841a26c74 100644 --- a/wiki/src/install/inc/overview.ru.po +++ b/wiki/src/install/inc/overview.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2022-12-22 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.9.1\n" #. type: Content of: outside any tag (error?) @@ -67,15 +67,15 @@ msgstr "[[!toggle id=\"why_extra\" text=\"Почему?\"]]</small>" #, fuzzy #| msgid "" #| "[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -#| "text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline\" " -#| "raw=\"yes\" sort=\"age\"]] \"\"\"]]" +#| "text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline\" raw=" +#| "\"yes\" sort=\"age\"]] \"\"\"]]" msgid "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]]" msgstr "" -"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" " -"text=\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline.ru\" " -"raw=\"yes\" sort=\"age\"]] \"\"\"]]" +"[[!toggleable id=\"why_extra\" text=\"\"\" [[!toggle id=\"why_extra\" text=" +"\"X\"]] [[!inline pages=\"install/inc/router/why_extra.inline.ru\" raw=\"yes" +"\" sort=\"age\"]] \"\"\"]]" #. type: Content of: <div><div><div><p> msgid "" @@ -214,19 +214,19 @@ msgid "1 hour in total" msgstr "" #. type: Content of: <div><div><p> -msgid "½ hour" +msgid "½ hour" msgstr "" #. type: Content of: <div><div><p> -msgid "¼ hour" +msgid "¼ hour" msgstr "" #. type: Content of: <div><div><p> #, fuzzy #| msgid "" #| "<span class=\"windows linux mac expert upgrade-tails upgrade-os\"> " -#| "<small>[[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" " -#| "sort=\"age\"]] to download</small>" +#| "<small>[[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=" +#| "\"age\"]] to download</small>" msgid "" "[[!inline pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]] to " "download" @@ -236,11 +236,24 @@ msgstr "" "ÑкачиваниÑ</small>" #. type: Content of: <div><div><p> -msgid "½ hour to install" +msgid "½ hour to install" msgstr "" #. type: Content of: <div><div><p> -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" +msgstr "" + +#. type: Content of: <p> +msgid "" +"[[!toggle id=\"requirements\" text=\"Detailed system requirements and " +"recommended hardware.\"]]" +msgstr "" + +#. type: Content of: outside any tag (error?) +msgid "" +"[[!toggleable id=\"requirements\" text=\"\"\" <span class=\"hide\">[[!toggle " +"id=\"requirements\" text=\"\"]]</span> [[!inline pages=\"doc/about/" +"requirements\" raw=\"yes\" sort=\"age\"]] \"\"\"]]" msgstr "" #. type: Content of: <h2> @@ -509,8 +522,8 @@ msgstr "</a>" #~ "hour to upgrade</small></span>" #~ msgstr "" #~ "</span> <span class=\"windows linux mac expert\"><small>ПолчаÑа на " -#~ "уÑтановку</small></span> <span class=\"upgrade-tails upgrade-" -#~ "os\"><small>ПолчаÑа на обновление</small></span>" +#~ "уÑтановку</small></span> <span class=\"upgrade-tails upgrade-os" +#~ "\"><small>ПолчаÑа на обновление</small></span>" #~ msgid "[[!img install/inc/icons/usb.png link=\"no\"]]" #~ msgstr "[[!img install/inc/icons/usb.png link=\"no\"]]" @@ -520,32 +533,32 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/download.png link=\"no\" alt=\"USB image " #~ "downloaded\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Скачанный и проверенный образ USB\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Скачанный и проверенный образ USB\"]]" #, fuzzy #~| msgid "" -#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~| "alt=\"USB image downloaded and verified\"]]" +#~| "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~| "\"USB image downloaded and verified\"]]" #~ msgid "" #~ "[[!img install/inc/infography/verify.png link=\"no\" alt=\"USB image " #~ "verified\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" " -#~ "alt=\"Скачанный и проверенный образ USB\"]]" +#~ "[[!img install/inc/infography/download-and-verify.png link=\"no\" alt=" +#~ "\"Скачанный и проверенный образ USB\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Computer restarted on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Computer restarted on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" " -#~ "alt=\"Компьютер загружаетÑÑ Ñ Ñ„Ð»ÐµÑˆÐºÐ¸ в USB-порту Ñлева\"]]" +#~ "[[!img install/inc/infography/restart-on-other-tails.png link=\"no\" alt=" +#~ "\"Компьютер загружаетÑÑ Ñ Ñ„Ð»ÐµÑˆÐºÐ¸ в USB-порту Ñлева\"]]" #~ msgid "Restart" #~ msgstr "Перезагрузить" @@ -553,8 +566,8 @@ msgstr "</a>" #, fuzzy #~| msgid "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" " -#~ "alt=\"balenaEtcher downloaded\"]]" +#~ "[[!img install/inc/infography/install-etcher.png link=\"no\" alt=" +#~ "\"balenaEtcher downloaded\"]]" #~ msgstr "[[!img install/inc/infography/restart.png link=\"no\" alt=\"\"]]" #~ msgid "" @@ -565,11 +578,11 @@ msgstr "</a>" #~ "образ, запиÑанный на флешку\"]]" #~ msgid "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB image installed on USB stick on the left\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB image installed on USB stick on the left\"]]" #~ msgstr "" -#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" " -#~ "alt=\"USB-образ, уÑтановленный на флешку Ñлева\"]]" +#~ "[[!img install/inc/infography/install-upgrade-usb.png link=\"no\" alt=" +#~ "\"USB-образ, уÑтановленный на флешку Ñлева\"]]" #~ msgid "Install intermediary" #~ msgstr "УÑтановить поÑредника" @@ -583,14 +596,14 @@ msgstr "</a>" #, fuzzy #~| msgid "" -#~| "<span class=\"install-clone mac-clone\">Install</span> <span " -#~| "class=\"upgrade\">Upgrade</span>" +#~| "<span class=\"install-clone mac-clone\">Install</span> <span class=" +#~| "\"upgrade\">Upgrade</span>" #~ msgid "" -#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span " -#~ "class=\"upgrade\">Upgrade Tails</span>" +#~ "<span class=\"install-clone mac-clone\">Install Tails</span> <span class=" +#~ "\"upgrade\">Upgrade Tails</span>" #~ msgstr "" -#~ "<span class=\"install-clone mac-clone\">УÑтановить</span> <span " -#~ "class=\"upgrade\">Обновить</span>" +#~ "<span class=\"install-clone mac-clone\">УÑтановить</span> <span class=" +#~ "\"upgrade\">Обновить</span>" #, fuzzy #~| msgid "Your Tails" @@ -598,8 +611,8 @@ msgstr "</a>" #~ msgstr "Ваш Tails" #~ msgid "" -#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" " -#~ "alt=\"Encryption configured on USB stick\"]]" +#~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=" +#~ "\"Encryption configured on USB stick\"]]" #~ msgstr "" #~ "[[!img install/inc/infography/create-persistence.png link=\"no\" alt=\"Ðа " #~ "флешке включено шифрование\"]]" diff --git a/wiki/src/support/faq.de.po b/wiki/src/support/faq.de.po index e1eb7cdf79e..c6697834967 100644 --- a/wiki/src/support/faq.de.po +++ b/wiki/src/support/faq.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: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-11 13:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -198,8 +198,8 @@ msgstr "Lesen Sie auch:" #. type: Plain text msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" #. type: Plain text diff --git a/wiki/src/support/faq.es.po b/wiki/src/support/faq.es.po index 9978c9a9982..926186cb3ae 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: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/faq/" @@ -235,9 +235,13 @@ msgid "See also:" msgstr "Ver también:" #. type: Plain text +#, fuzzy +#| msgid "" +#| "- [[System requirements|doc/about/requirements]] - [[Known issues|support/" +#| "known_issues]]" msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" "- [[Requisitos del sistema|doc/about/requirements]]\n" "- [[Problemas conocidos|support/known_issues]]" diff --git a/wiki/src/support/faq.fr.po b/wiki/src/support/faq.fr.po index a6583cb130d..bf937190e6c 100644 --- a/wiki/src/support/faq.fr.po +++ b/wiki/src/support/faq.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -240,9 +240,13 @@ msgid "See also:" msgstr "Voir aussi :" #. type: Plain text +#, fuzzy +#| msgid "" +#| "- [[System requirements|doc/about/requirements]] - [[Known issues|support/" +#| "known_issues]]" msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" "- [[Pré-requis système|doc/about/requirements]]\n" "- [[Problèmes connus|support/known_issues]]" diff --git a/wiki/src/support/faq.it.po b/wiki/src/support/faq.it.po index 6728b021b8a..52001b00168 100644 --- a/wiki/src/support/faq.it.po +++ b/wiki/src/support/faq.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: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: Carlo Gandolfi <gand61@gmail.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -242,8 +242,8 @@ msgstr "Vedere anche:" #. type: Plain text msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" #. type: Plain text diff --git a/wiki/src/support/faq.pt.po b/wiki/src/support/faq.pt.po index d161599ad98..fa8a7ef74ee 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: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -234,8 +234,8 @@ msgstr "Veja também:" #. type: Plain text msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" #. type: Plain text diff --git a/wiki/src/support/faq.ru.po b/wiki/src/support/faq.ru.po index 2ba2d4ec42e..d40ad88d04b 100644 --- a/wiki/src/support/faq.ru.po +++ b/wiki/src/support/faq.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-15 18:22+0000\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -233,9 +233,13 @@ msgid "See also:" msgstr "Смотрите также:" #. type: Plain text +#, fuzzy +#| msgid "" +#| "- [[System requirements|doc/about/requirements]] - [[Known issues|support/" +#| "known_issues]]" msgid "" -"- [[System requirements|doc/about/requirements]] - [[Known issues|support/" -"known_issues]]" +"- [[System requirements and recommended hardware|doc/about/requirements]] - " +"[[Known issues|support/known_issues]]" msgstr "" "- [[СиÑтемные требованиÑ|doc/about/requirements]]\n" "- [[ИзвеÑтные проблемы|support/known_issues]]" diff --git a/wiki/src/support/known_issues.de.po b/wiki/src/support/known_issues.de.po index 131b88aac34..2a8218156ed 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: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-12 18:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -315,7 +315,6 @@ msgid "" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" "<!--\n" @@ -349,28 +348,6 @@ msgid "" "mouse and keyboard." msgstr "" -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" - -#. type: Plain text -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr " amdgpu.dpm=0\n" - #. type: Plain text #, fuzzy, no-wrap #| msgid "<a id=\"pny\"></a>\n" @@ -1089,6 +1066,10 @@ msgstr "" msgid "See [[!tails_ticket 5356 desc=\"Erase video memory on shutdown\"]]." msgstr "" +#, no-wrap +#~ msgid " amdgpu.dpm=0\n" +#~ msgstr " amdgpu.dpm=0\n" + #, fuzzy, no-wrap #~| msgid "<a id=\"problematic-usb-sticks\"></a>\n" #~ msgid "<h1 id=\"problematic-usb-sticks\">Problematic USB sticks</h1>\n" diff --git a/wiki/src/support/known_issues.es.po b/wiki/src/support/known_issues.es.po index 9ab36d84221..2c0919e2cf8 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: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-12 18:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -333,7 +333,6 @@ msgid "" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" "<!--\n" @@ -375,34 +374,6 @@ msgstr "" "MacBook Pro 2016 y 2017: el teclado, trackpad y barra táctil pueden no " "funcionar. Si lo hacen, avÃsanos asà podemos actualizar esta página." -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" - -#. type: Plain text -#, fuzzy -#| msgid "" -#| "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup " -#| "options|/doc/advanced_topics/boot_options]]." -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" -"Para corregir este problema añade `intel_idle.max_cstate=1` a las [[opciones " -"de arranque|/doc/advanced_topics/boot_options]]." - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr " amdgpu.dpm=0\n" - #. type: Plain text #, fuzzy, no-wrap #| msgid "<h2 id=\"pc\">PC</h2>\n" @@ -1187,6 +1158,21 @@ msgstr "" msgid "See [[!tails_ticket 5356 desc=\"Erase video memory on shutdown\"]]." msgstr "Ver [[!tails_ticket 5356 desc=\"Erase video memory on shutdown\"]]." +#, fuzzy +#~| msgid "" +#~| "To fix this problem, add `intel_idle.max_cstate=1` to the [[startup " +#~| "options|/doc/advanced_topics/boot_options]]." +#~ msgid "" +#~ "To prevent this from occurring, [[add the following boot option when " +#~ "starting Tails|doc/advanced_topics/boot_options]]:" +#~ msgstr "" +#~ "Para corregir este problema añade `intel_idle.max_cstate=1` a las " +#~ "[[opciones de arranque|/doc/advanced_topics/boot_options]]." + +#, no-wrap +#~ msgid " amdgpu.dpm=0\n" +#~ msgstr " amdgpu.dpm=0\n" + #, fuzzy, no-wrap #~| msgid "<h2 id=\"problematic-usb-sticks\">Problematic USB sticks</h2>\n" #~ msgid "<h1 id=\"problematic-usb-sticks\">Problematic USB sticks</h1>\n" diff --git a/wiki/src/support/known_issues.fr.po b/wiki/src/support/known_issues.fr.po index ca514b5c8ec..4ab1e38eaf6 100644 --- a/wiki/src/support/known_issues.fr.po +++ b/wiki/src/support/known_issues.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-12 18:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -325,13 +325,19 @@ msgstr "" "pour des astuces de résolutions de problèmes.</p>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<!--\n" +#| "Last updated:\n" +#| "- MacBook Air Retina 2019: 2019-11-01\n" +#| "- MacBook Pro 8,3: 2019-11-01\n" +#| "- MacBook Pro 16,1: 2021-08-12\n" +#| "-->\n" msgid "" "<!--\n" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" "<!--\n" @@ -367,32 +373,6 @@ msgstr "" "Malgré tout, le pavé tactile et le clavier peuvent ne pas fonctionner. Vous " "pouvez utiliser une souris et un clavier externes." -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "MacBook Pro 16,1 (A2141)" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" -"L'ordinateur se fige puis redémarre automatiquement. Un message d'erreur " -"apparaît, indiquant que l'ordinateur a redémarré en raison d'un problème." - -#. type: Plain text -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" -"Pour empêcher que cela se produise, [[ajouter l'option suivante lors du " -"démarrage de Tails|doc/advanced_topics/boot_options]] :" - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr " amdgpu.dpm=0\n" - #. type: Plain text #, no-wrap msgid "<h2 id=\"pc-not-entirely\">PC</h2>\n" @@ -1190,6 +1170,28 @@ msgstr "" msgid "See [[!tails_ticket 5356 desc=\"Erase video memory on shutdown\"]]." msgstr "Voir [[!tails_ticket 5356 desc=\"le ticket correspondant\"]]." +#, no-wrap +#~ msgid "MacBook Pro 16,1 (A2141)" +#~ msgstr "MacBook Pro 16,1 (A2141)" + +#~ msgid "" +#~ "The computer freezes then automatically restarts. An error message " +#~ "appears saying that the computer was restarted because of a problem." +#~ msgstr "" +#~ "L'ordinateur se fige puis redémarre automatiquement. Un message d'erreur " +#~ "apparaît, indiquant que l'ordinateur a redémarré en raison d'un problème." + +#~ msgid "" +#~ "To prevent this from occurring, [[add the following boot option when " +#~ "starting Tails|doc/advanced_topics/boot_options]]:" +#~ msgstr "" +#~ "Pour empêcher que cela se produise, [[ajouter l'option suivante lors du " +#~ "démarrage de Tails|doc/advanced_topics/boot_options]] :" + +#, no-wrap +#~ msgid " amdgpu.dpm=0\n" +#~ msgstr " amdgpu.dpm=0\n" + #, no-wrap #~ msgid "<h1 id=\"problematic-usb-sticks\">Problematic USB sticks</h1>\n" #~ msgstr "<h1 id=\"problematic-usb-sticks\">Clés USB à problèmes</h1>\n" diff --git a/wiki/src/support/known_issues.it.po b/wiki/src/support/known_issues.it.po index ee374ab8d5c..8d2be96c2c1 100644 --- a/wiki/src/support/known_issues.it.po +++ b/wiki/src/support/known_issues.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-07-12 18:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -303,7 +303,6 @@ msgid "" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" @@ -329,28 +328,6 @@ msgid "" "mouse and keyboard." msgstr "" -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" - -#. type: Plain text -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr "" - #. type: Plain text #, no-wrap msgid "<h2 id=\"pc-not-entirely\">PC</h2>\n" diff --git a/wiki/src/support/known_issues.pt.po b/wiki/src/support/known_issues.pt.po index 155becc43a0..c819b0ba336 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: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-13 17:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -312,7 +312,6 @@ msgid "" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" @@ -345,33 +344,6 @@ msgid "" msgstr "" "MacBook Pro 2016 e 2017: o teclado, o trackpad e o Touch Bar não funcionam." -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" - -#. type: Plain text -#, fuzzy -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" -"A inicialização falha com `Não há memória suficiente para carregar a imagem " -"especificada` (`Not enough memory to load specified image`). Pode ser " -"contornado adicionando a [[opção de boot|/doc/first_steps/startup_options/" -"#boot_menu]] `mem=1500m`." - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr "" - #. type: Plain text #, fuzzy, no-wrap #| msgid "<a id=\"pny\"></a>\n" @@ -1107,6 +1079,16 @@ msgstr "" "Consulte [[!tails_ticket 5356 desc=\"Apagar a memória desligando o computador" "\"]]." +#, fuzzy +#~ msgid "" +#~ "To prevent this from occurring, [[add the following boot option when " +#~ "starting Tails|doc/advanced_topics/boot_options]]:" +#~ msgstr "" +#~ "A inicialização falha com `Não há memória suficiente para carregar a " +#~ "imagem especificada` (`Not enough memory to load specified image`). Pode " +#~ "ser contornado adicionando a [[opção de boot|/doc/first_steps/" +#~ "startup_options/#boot_menu]] `mem=1500m`." + #, fuzzy, no-wrap #~| msgid "<a id=\"problematic-usb-sticks\"></a>\n" #~ msgid "<h1 id=\"problematic-usb-sticks\">Problematic USB sticks</h1>\n" diff --git a/wiki/src/support/known_issues.ru.po b/wiki/src/support/known_issues.ru.po index cc09524b6fc..e4f82a7e679 100644 --- a/wiki/src/support/known_issues.ru.po +++ b/wiki/src/support/known_issues.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-10 10:57+0200\n" +"POT-Creation-Date: 2023-08-15 18:59+0000\n" "PO-Revision-Date: 2023-03-13 17:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -280,7 +280,6 @@ msgid "" "Last updated:\n" "- MacBook Air Retina 2019: 2019-11-01\n" "- MacBook Pro 8,3: 2019-11-01\n" -"- MacBook Pro 16,1: 2021-08-12\n" "-->\n" msgstr "" @@ -306,28 +305,6 @@ msgid "" "mouse and keyboard." msgstr "" -#. type: Title ### -#, no-wrap -msgid "MacBook Pro 16,1 (A2141)" -msgstr "" - -#. type: Plain text -msgid "" -"The computer freezes then automatically restarts. An error message appears " -"saying that the computer was restarted because of a problem." -msgstr "" - -#. type: Plain text -msgid "" -"To prevent this from occurring, [[add the following boot option when " -"starting Tails|doc/advanced_topics/boot_options]]:" -msgstr "" - -#. type: Plain text -#, no-wrap -msgid " amdgpu.dpm=0\n" -msgstr "" - #. type: Plain text #, fuzzy, no-wrap msgid "<h2 id=\"pc-not-entirely\">PC</h2>\n" -- GitLab From 90d7ec3a315b39c3fd049cb4b28c68209245dc82 Mon Sep 17 00:00:00 2001 From: Clifford Skillner <42219-cliffskill32065@users.noreply.gitlab.tails.boum.org> Date: Wed, 16 Aug 2023 12:52:58 +0000 Subject: [PATCH 028/119] Fix typo in PGP ID regex in WhisperBack --- .../usr/lib/python3/dist-packages/whisperBack/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py index 52474f2258b..b23463d470f 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py @@ -129,7 +129,7 @@ def is_valid_pgp_id(candidate): """ # pylint: disable=C0301 LOG.debug("Validating pgp id %s", candidate) - if re.search(r"(?:^(?:0x)?(?:[0-9a-fA-F]{8}){1,2}$)|(?:^(?:[0-9f-zA-F]{4} {0,2}){10}$)", + if re.search(r"(?:^(?:0x)?(?:[0-9a-fA-F]{8}){1,2}$)|(?:^(?:[0-9a-fA-F]{4} {0,2}){10}$)", candidate): return True else: @@ -183,7 +183,7 @@ def is_valid_hostname_or_ipv4(candidate): if len(candidate) > 255: return False - # regex from http://stackoverflow.com/a/106223 + # regex from https://stackoverflow.com/a/106223 ip_address_regex = re.compile("^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"); hostname_regex = re.compile("^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$"); -- GitLab From 419043e5ffc05544c8e407675ab9dd5f50348796 Mon Sep 17 00:00:00 2001 From: mortack981 <42222-mortack981@users.noreply.gitlab.tails.boum.org> Date: Wed, 16 Aug 2023 20:48:38 +0000 Subject: [PATCH 029/119] Redact ESSID from WhisperBack reports --- .../lib/python3/dist-packages/whisperBack/utils.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py index 52474f2258b..6991af51bcd 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py @@ -201,6 +201,7 @@ def sanitize_hardware_info(log_string): - labeled as serial numbers and UUID; - looking like IPs or MAC addresses. - looking like web URLs (starting with http(s)://) + - looking like ESSID @param log_string the string to be sanitized @@ -246,6 +247,19 @@ def sanitize_hardware_info(log_string): log_string = re.sub(r'(http(s?)://)[^\s]+', r'\1[URL REMOVED]', log_string) + + # ESSID + log_string = re.sub(r'(SSID=|' + 'connection |' + 'access point |' + "'ssid' value |" + 'NetworkManager.*set |' + 'network |' + 'ssid=|' + 'NetworkManager.*name=' + ')([\'"])[^\'"]+([\'"])', + r'\1\2[ESSID REMOVED]\3', + log_string) return log_string -- GitLab From 05fd5efc280ba6f9dc495b63e4b569b7f115ad9d Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Thu, 17 Aug 2023 11:23:20 +0200 Subject: [PATCH 030/119] Set up automated test suite so it is not affected by tails/tails#19064 --- .../src/contribute/release_process/test/setup.mdwn | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process/test/setup.mdwn b/wiki/src/contribute/release_process/test/setup.mdwn index 74f121aa7b7..ad7402d2856 100644 --- a/wiki/src/contribute/release_process/test/setup.mdwn +++ b/wiki/src/contribute/release_process/test/setup.mdwn @@ -42,7 +42,19 @@ To install the dependencies on our test suite: 1. Enable the `non-free` APT component. -2. Install the following packages: +1. Potentially enable some workarounds: + + virt_viewer_candidate_version="$( + apt-cache policy virt-viewer \ + | sed -n 's/^ Candidate: \(.*\)$/\1/p' + )" + if dpkg --compare-versions "${virt_viewer_candidate_version}" ge 10.0; then + # https://gitlab.tails.boum.org/tails/tails/-/issues/19064 + echo 'deb http://deb.tails.boum.org/ isotester-bookworm main' \ + | sudo tee /etc/apt/sources.list.d/isotester-bookworm.list + fi + +1. Install the following packages: sudo apt update && \ sudo apt install \ -- GitLab From d0bd133e524600123feef2161eb0950311e24c77 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Thu, 17 Aug 2023 11:23:29 +0200 Subject: [PATCH 031/119] Test suite: check that virt-viewer is not affected by tails/tails#19064 --- run_test_suite | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/run_test_suite b/run_test_suite index 9d6e4dc1e3e..4437bc30245 100755 --- a/run_test_suite +++ b/run_test_suite @@ -162,6 +162,18 @@ check_tor_version() { fi } +check_virt_viewer_version() { + local version + version="$(dpkg-query --show --showformat='${VERSION}' virt-viewer)" + if dpkg --compare-versions "${version}" ge 10.0; then + if ! echo "${version}" | grep -q 'tails$'; then + error 'Please install virt-viewer from the isotester-bookworm APT suite' \ + '(instructions: https://tails.net/contribute/release_process/test/setup/' \ + 'details: https://gitlab.tails.boum.org/tails/tails/-/issues/19064)' + fi + fi +} + display_in_use() { [ -e "/tmp/.X${1#:}-lock" ] || [ -e "/tmp/.X11-unix/X${1#:}" ] } @@ -351,6 +363,7 @@ fi # shellcheck disable=SC2086 check_dependencies ${GENERAL_DEPENDENCIES} check_tor_version +check_virt_viewer_version TARGET_DISPLAY=$(next_free_display) -- GitLab From a7413c8d945b3fbbc63565d0c8c93d72fac936c1 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Thu, 17 Aug 2023 13:45:41 +0200 Subject: [PATCH 032/119] Update apt to ensure that apt-cache policy will present a candidate --- wiki/src/contribute/release_process/test/setup.mdwn | 1 + 1 file changed, 1 insertion(+) diff --git a/wiki/src/contribute/release_process/test/setup.mdwn b/wiki/src/contribute/release_process/test/setup.mdwn index ad7402d2856..dd6bd79570d 100644 --- a/wiki/src/contribute/release_process/test/setup.mdwn +++ b/wiki/src/contribute/release_process/test/setup.mdwn @@ -44,6 +44,7 @@ To install the dependencies on our test suite: 1. Potentially enable some workarounds: + sudo apt update virt_viewer_candidate_version="$( apt-cache policy virt-viewer \ | sed -n 's/^ Candidate: \(.*\)$/\1/p' -- GitLab From 41f4727fe8ab4b822bcea8b4650d77cd1e580d4d Mon Sep 17 00:00:00 2001 From: Clifford Skillner <42219-cliffskill32065@users.noreply.gitlab.tails.boum.org> Date: Thu, 17 Aug 2023 22:29:14 +0000 Subject: [PATCH 033/119] Improve IPv4 sanitization --- .../usr/lib/python3/dist-packages/whisperBack/utils.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py index 52474f2258b..810fba7c1ab 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py @@ -183,8 +183,8 @@ def is_valid_hostname_or_ipv4(candidate): if len(candidate) > 255: return False - # regex from http://stackoverflow.com/a/106223 - ip_address_regex = re.compile("^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"); + # regex from http://stackoverflow.com/a/17871737 + ip_address_regex = re.compile("^((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])$"); hostname_regex = re.compile("^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$"); if ip_address_regex.match(candidate) or hostname_regex.match(candidate): @@ -231,7 +231,8 @@ def sanitize_hardware_info(log_string): log_string) # IPv4s - log_string = re.sub(r'([\d]{1,3}\.){3}[\d]{1,3}', + # regex from https://stackoverflow.com/a/17871737 + log_string = re.sub(r'((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])', r'[IPV4 REMOVED]', log_string) # IPv6s -- GitLab From 7da5e23f841059913d1fcb2b32a70c8c697462e8 Mon Sep 17 00:00:00 2001 From: Clifford Skillner <42219-cliffskill32065@users.noreply.gitlab.tails.boum.org> Date: Thu, 17 Aug 2023 22:35:14 +0000 Subject: [PATCH 034/119] Add IPv6 sanitization --- .../dist-packages/whisperBack/utils.py | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py index 810fba7c1ab..4513e367c06 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py @@ -236,7 +236,25 @@ def sanitize_hardware_info(log_string): r'[IPV4 REMOVED]', log_string) # IPv6s - log_string = re.sub(r'(?i)[0-9A-F]{4}(:[0-9A-F]{4}){7}', + # regex from https://stackoverflow.com/a/17871737 + log_string = re.sub(r'(' + r'([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|' # 1:2:3:4:5:6:7:8 + r'([0-9a-fA-F]{1,4}:){1,7}:|' # 1:: 1:2:3:4:5:6:7:: + r'([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|' # 1::8 1:2:3:4:5:6::8 1:2:3:4:5:6::8 + r'([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|' # 1::7:8 1:2:3:4:5::7:8 1:2:3:4:5::8 + r'([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|' # 1::6:7:8 1:2:3:4::6:7:8 1:2:3:4::8 + r'([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|' # 1::5:6:7:8 1:2:3::5:6:7:8 1:2:3::8 + r'([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|' # 1::4:5:6:7:8 1:2::4:5:6:7:8 1:2::8 + r'[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|' # 1::3:4:5:6:7:8 1::3:4:5:6:7:8 1::8 + r':((:[0-9a-fA-F]{1,4}){1,7}|:)|' # ::2:3:4:5:6:7:8 ::2:3:4:5:6:7:8 ::8 :: + r'fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|' # fe80::7:8%eth0 fe80::7:8%1 (link-local IPv6 addresses with zone index) + r'::(ffff(:0{1,4}){0,1}:){0,1}' + r'((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}' + r'(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|' # ::255.255.255.255 ::ffff:255.255.255.255 ::ffff:0:255.255.255.255 (IPv4-mapped IPv6 addresses and IPv4-translated addresses) + r'([0-9a-fA-F]{1,4}:){1,4}:' + r'((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}' + r'(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])' # 2001:db8:3:4::192.0.2.33 64:ff9b::192.0.2.33 (IPv4-Embedded IPv6 Address) + r')', r'[IPV6 REMOVED]', log_string) # MAC addresses -- GitLab From 0e1e3726bd9e5ea7a7a24215c30e1eff23162832 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Thu, 3 Aug 2023 22:35:37 +0200 Subject: [PATCH 035/119] tps: make is_upgraded() require a single upgraded keyslot In tails/tails#19728 users experience timeouts upgrading the persistent storage, preventing them from unlocking it and blocking login for 4 minutes. Actually the upgrade finishes (in the background) but is_upgraded() still fails next boot and triggers an upgrade (that will timeout). It seems related to having multiple keyslots, some corrupted (or similar) in such a way that `cryptsetup luksConvertKey` fails upgrading them ("Digest 0 (pbkdf2) verify failed with -1"), and one of the corrupted keys being listed last by `cryptsetup luksDump`. Those keys are luks1 and use pbkdf2, so is_upgraded() would return False since it requires argon2id. In order to allow users with this problem to unlock their persistent storage we make is_upgraded() require require a single upgraded keyslot. This is not great as it means the other keyslots can be weak, but this change doesn't make anything worse, it only allows users to access their data again. More work will be needed to properly address all this. --- .../lib/python3/dist-packages/tps/device.py | 74 ++++++++++++------- 1 file changed, 49 insertions(+), 25 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 2772290fa76..ea336134c24 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -22,7 +22,7 @@ logger = tps.logging.get_logger(__name__) TAILS_MOUNTPOINT = "/lib/live/mount/medium" PARTITION_GUID = "8DA63339-0007-60C0-C436-083AC8230908" # Linux reserved TPS_PARTITION_LABEL = "TailsData" -VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$') +VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$', re.M) PBKDF_REGEX = re.compile(r'^\s*PBKDF:\s*(\S+)$') MEMORY_COST_REGEX = re.compile(r'^\s*Memory:\s*(\d+)$') @@ -176,41 +176,51 @@ class TPSPartition(object): return False def is_upgraded(self) -> bool: + logger.debug("Calling is_upgraded()") cmd = ["cryptsetup", "luksDump", self.device_path] try: luks_dump = executil.check_output(cmd) except subprocess.CalledProcessError: logger.exception("Command 'cryptsetup luksDump' failed") return False + logger.debug(f"### Beginning of LUKS dump ###\n" + f"{luks_dump}\n" + f"### End of LUKS dump ###") version = str() - pbkdf = str() - memory_cost_kib = int() - for line in luks_dump.splitlines(): - match = VERSION_REGEX.match(line) - if match: - version = match.group(1) - match = PBKDF_REGEX.match(line) - if match: - pbkdf = match.group(1) - match = MEMORY_COST_REGEX.match(line) - if match: - memory_cost_kib = int(match.group(1)) + if match := VERSION_REGEX.search(luks_dump): + version = match.group(1) + logger.debug(f"version = {version}") # LUKS version 1 does not print the PBKDF because it only # supports PBKDF2. if version == "1": return False - err_msg = str() - if not version and not pbkdf: - err_msg = "Could not get LUKS version and PBKDF from LUKS dump" - elif not version: - err_msg = "Could not get LUKS version from LUKS dump" - elif not pbkdf: - err_msg = "Could not get PBKDF from LUKS dump" - if err_msg: - logger.error(f"{err_msg}\n" + try: + keyslots_section = luks_dump.split("Keyslots:\n")[1].split("Tokens:\n")[0] + except KeyError: + return False + keyslots = dict() + slot = None + for line in keyslots_section.splitlines(): + if match := re.match("^ (\d+): (.+)$", line): + slot = int(match.group(1)) + keyslots[slot] = dict() + keyslots[slot]["type"] = match.group(2) + elif match := PBKDF_REGEX.match(line): + keyslots[slot]["pbkdf"] = match.group(1) + elif match := MEMORY_COST_REGEX.match(line): + keyslots[slot]["memory_cost_kib"] = int(match.group(1)) + logger.debug(f"keyslots = {keyslots}") + + errors = list() + if not version: + errors.append("LUKS version") + if len(keyslots) == 0: + errors.append("keyslots") + if errors: + logger.error(f"Could not get {' and '.join(errors)} from LUKS dump\n" f"### Beginning of LUKS dump ###\n" f"{luks_dump}\n" f"### End of LUKS dump ###") @@ -230,11 +240,25 @@ class TPSPartition(object): # • cryptsetup-2.3.7/lib/utils_pbkdf.c:64:static uint32_t adjusted_phys_memory(void) cryptsetup_adjusted_memory_kib = os.sysconf('SC_PAGESIZE') // 1024 * os.sysconf('SC_PHYS_PAGES') // 2 required_memory_cost_kib = min(cryptsetup_adjusted_memory_kib, DESIRED_PBKDF_MEMORY_KIB) + logger.debug(f"cryptsetup_adjusted_memory_kib = {cryptsetup_adjusted_memory_kib}") + + def keyslot_is_upgraded(keyslot): + try: + return keyslot["type"] == "luks2" and \ + keyslot["pbkdf"] == "argon2id" and \ + keyslot["memory_cost_kib"] >= required_memory_cost_kib + except KeyError: + return False + + updated_keyslots = [slot for slot in keyslots if keyslot_is_upgraded(keyslots[slot])] + logger.debug(f"updated_keyslots = {updated_keyslots}") - logger.debug("The encrypted partition has %d memory cost (cryptsetup_adjusted_memory_kib = %d)", memory_cost_kib, cryptsetup_adjusted_memory_kib) + # We only require a single key to be upgraded until we + # properly solve tails/tails#19728. + upgraded = version == "2" and len(updated_keyslots) > 0 + logger.debug(f"is_upgraded() = {upgraded}") - return version == "2" and pbkdf == "argon2id" and \ - memory_cost_kib >= required_memory_cost_kib + return upgraded @classmethod def exists(cls) -> bool: -- GitLab From 86efaa1018da4d34568bab52c57d849818bce5e5 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 14 Aug 2023 11:53:45 +0000 Subject: [PATCH 036/119] tps: use more redable re.MULTILINE instead of re.M alias --- .../usr/lib/python3/dist-packages/tps/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index ea336134c24..77c608d7ab6 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -22,7 +22,7 @@ logger = tps.logging.get_logger(__name__) TAILS_MOUNTPOINT = "/lib/live/mount/medium" PARTITION_GUID = "8DA63339-0007-60C0-C436-083AC8230908" # Linux reserved TPS_PARTITION_LABEL = "TailsData" -VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$', re.M) +VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$', re.MULTILINE) PBKDF_REGEX = re.compile(r'^\s*PBKDF:\s*(\S+)$') MEMORY_COST_REGEX = re.compile(r'^\s*Memory:\s*(\d+)$') -- GitLab From 1160465439c2546c8ddb41d9ec442f3ef7fadf29 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Fri, 18 Aug 2023 13:16:05 +0200 Subject: [PATCH 037/119] tps: redact sensitive information from luksDump in the logs We don't want the logs to contain information that can be used to pre-compute hash tables, or identifying information while we're at it. --- .../usr/lib/python3/dist-packages/tps/device.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 77c608d7ab6..dae13f490c3 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -180,6 +180,12 @@ class TPSPartition(object): cmd = ["cryptsetup", "luksDump", self.device_path] try: luks_dump = executil.check_output(cmd) + luks_dump = re.sub( + r'((?:UUID|Salt|Digest):\s*)[\sa-f0-9-]*\n', + r'\1[REDACTED]\n', + luks_dump, + re.MULTILINE + ) except subprocess.CalledProcessError: logger.exception("Command 'cryptsetup luksDump' failed") return False -- GitLab From e4ac606897bc5072b57d9c2c8a635340d29f260a Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Fri, 18 Aug 2023 16:08:09 +0200 Subject: [PATCH 038/119] Welcome Screen: drop timeout for upgrading the persistent storage We cannot see any benefits of keeping it, but dropping it will at least help those with (possibly faulty) hardware that needs much longer time. Refs: tails/tails#19728 --- .../dist-packages/tailsgreeter/settings/persistence.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py index 1a22d40607a..9f9b06d528c 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py @@ -114,7 +114,9 @@ class PersistentStorageSettings(object): method_name="UpgradeLUKS", parameters=GLib.Variant("(s)", (passphrase,)), flags=Gio.DBusCallFlags.NONE, - timeout_msec=240000, + # GLib.MAXINT (largest 32-bit signed integer) disables + # the timeout + timeout_msec=GLib.MAXINT, ) except GLib.GError as err: if tps_errors.IncorrectPassphraseError.is_instance(err): -- GitLab From 639ecc9b49463b2b16a053676c7f4d719d27b7cd Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Fri, 18 Aug 2023 16:10:21 +0200 Subject: [PATCH 039/119] Welcome screen: bump timeout for activating persistence from 2m to 5m We have seen it take 3.5 minutes, so let's see if a ridiculous timeout of 5 minutes will be good enough. Refs: tails/tails#19729, tails/tails#19944 --- .../dist-packages/tailsgreeter/settings/persistence.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py index 9f9b06d528c..513ad36696a 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py @@ -133,9 +133,12 @@ class PersistentStorageSettings(object): method_name="Activate", parameters=None, flags=Gio.DBusCallFlags.NONE, - # In some cases, the default timeout of 25 seconds was not - # enough, so we use a timeout of 120 seconds instead. - timeout_msec=120000, + # We have seen this take almost 4 minutes (tails/tails#19944) + # so let's try 5 minutes for now. We don't want to disable + # the timeout completely (yet) since we still want to catch + # situations where e.g. some of our on-activation scripts + # gets in an infinite loop or similar. + timeout_msec=300000, ) except GLib.GError as err: if tps_errors.FeatureActivationFailedError.is_instance(err): -- GitLab From 86c54636d47c172dba0d0c60565b1e20a3edcd64 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Fri, 18 Aug 2023 16:15:58 +0200 Subject: [PATCH 040/119] Update comment. --- .../usr/lib/python3/dist-packages/tps/device.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index dae13f490c3..5acad01264e 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -259,8 +259,11 @@ class TPSPartition(object): updated_keyslots = [slot for slot in keyslots if keyslot_is_upgraded(keyslots[slot])] logger.debug(f"updated_keyslots = {updated_keyslots}") - # We only require a single key to be upgraded until we - # properly solve tails/tails#19728. + # We only require a single key to be upgraded since we have + # seen users ending up with multiple keys, some which refuse + # to upgrade (probably due to the storage being corrupt) so + # is_upgraded() would always return false leading to the LUKS + # upgrade procedure for each boot (tails/tails#19728). upgraded = version == "2" and len(updated_keyslots) > 0 logger.debug(f"is_upgraded() = {upgraded}") -- GitLab From 6b74c441e60350ff411fc01b58e7a1a146aeb190 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:25:33 +0000 Subject: [PATCH 041/119] Weblate commit --- wiki/src/doc/about/requirements.pt.po | 127 ++++++++++++++------------ 1 file changed, 67 insertions(+), 60 deletions(-) diff --git a/wiki/src/doc/about/requirements.pt.po b/wiki/src/doc/about/requirements.pt.po index f351826040d..6e0d97c7c27 100644 --- a/wiki/src/doc/about/requirements.pt.po +++ b/wiki/src/doc/about/requirements.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-15 18:59+0000\n" -"PO-Revision-Date: 2022-11-08 19:17+0000\n" +"PO-Revision-Date: 2023-08-18 21:45+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" "Language: pt\n" @@ -19,83 +19,68 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Plain text -#, fuzzy, no-wrap -#| msgid "[[!meta title=\"System requirements\"]]\n" +#, no-wrap msgid "[[!meta title=\"System requirements and recommended hardware\"]]\n" -msgstr "[[!meta title=\"Requisitos de sistema\"]]\n" +msgstr "[[!meta title=\"Requisitos de sistema e hardware recomendado\"]]\n" #. type: Title = #, no-wrap msgid "Summary" -msgstr "" +msgstr "Resumo" #. type: Bullet: '- ' -#, fuzzy -#| msgid "Tails works on most computers less than 10 years old." msgid "Tails works on most PC computers that are less than 10 years old." msgstr "" -"Tails funciona na maioria dos computadores produzidos há menos de 10 anos." +"Tails funciona na maioria dos computadores PC com menos de 10 anos de idade." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Tails works on most computers less than 10 years old." msgid "Tails works on some older Mac computers with an Intel processor." msgstr "" -"Tails funciona na maioria dos computadores produzidos há menos de 10 anos." +"Tails funciona em alguns computadores Mac antigos que possuem processador " +"Intel." #. type: Bullet: '- ' msgid "" "Tails does not work on newer Mac computers with an Apple processor (M1 or " "M2)." msgstr "" +"Tails não funciona em computadores MAc mais novos com processador Apple (M1 " +"ou M2)." #. type: Bullet: '- ' -#, fuzzy -#| msgid "<p>Tails might not work on:</p>\n" msgid "Tails might not work on:" -msgstr "<p>Tails pode não funcionar em:</p>\n" +msgstr "Tails pode não funcionar em:" #. type: Bullet: ' * ' msgid "Some older computers, for example, if they don't have enough RAM." msgstr "" +"Alguns computadores mais antigos como por exemplo aqueles que não têm RAM " +"suficiente." #. type: Bullet: ' * ' -#, fuzzy -#| msgid "" -#| "<ul>\n" -#| "<li>Some older computers, for example, if they don't have enough\n" -#| "RAM.</li>\n" -#| "<li>Some newer computers, for example, if their [[graphics card is\n" -#| "not compatible with Linux|support/known_issues/graphics]].</li>\n" -#| "</ul>\n" msgid "" "Some newer computers, for example, if their [[graphics card is incompatible " "with Linux|support/known_issues/graphics]]." msgstr "" -"<ul>\n" -"<li>Alguns computadores antigos se, por exemplo, não tiverem\n" -"memória RAM suficiente.</li>\n" -"<li>Alguns computadores modernos se, por exemplo, sua [[placa gráfica\n" -"não for compatÃvel com Linux|support/known_issues/graphics]].</li>\n" -"</ul>\n" +"Alguns computadores mais novos se, por exemplo, sua [[placa de vÃdeo for " +"incompatÃvel com Linux|support/known_issues/graphics]]." #. type: Bullet: ' * ' msgid "" "\"Gaming\" graphics cards like Nvidia or AMD Radeon, which are often " "incompatible." msgstr "" +"Placas de vÃdeo para jogos como Nvidia ou AMD Radeon, que geralmente são " +"incompatieis." #. type: Plain text -#, fuzzy, no-wrap -#| msgid "" -#| "<p>See the [[known hardware compatibility\n" -#| "issues|support/known_issues]].</p>\n" +#, no-wrap msgid "" "<p>See our [[list of known hardware compatibility\n" "issues|support/known_issues]].</p>\n" msgstr "" -"<p>Veja os [[problemas de compatibilidade de hardware\n" -"conhecidos|support/known_issues]].</p>\n" +"<p>Veja nossa [[lista de problemas conhecidos de compatibilidade\n" +"de hardware|support/known_issues]].</p>\n" #. type: Plain text #, no-wrap @@ -103,10 +88,9 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Title = -#, fuzzy, no-wrap -#| msgid "Hardware requirements:" +#, no-wrap msgid "Hardware requirements" -msgstr "Requisitos de hardware:" +msgstr "Requisitos de hardware" #. type: Plain text msgid "- A USB stick of 8 GB minimum or a recordable DVD." @@ -143,16 +127,12 @@ msgstr "" "span>." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "Tails does not work with Mac models that use the [[!wikipedia " -#| "Apple_silicon#M_series desc=\"Apple M1 or M2\"]] chips." msgid "" "Tails does not work on newer Mac computers with an [[!wikipedia " "Apple_silicon#M_series desc=\"Apple processors\"]] (M1 or M2)." msgstr "" -"Tails não funciona com os modelos de Mac que usam os chips [[!wikipedia " -"Apple_silicon#M_series desc=\"Apple M1 ou M2\"]]." +"Tails não funciona em computadores Mac mais novos com [[!wikipedia " +"Apple_silicon#M_series desc=\"Processadores Apple\"]] (M1 ou M2)." #. type: Bullet: ' - ' msgid "" @@ -163,10 +143,8 @@ msgstr "" "Tails_3.0_will_require_a_64-bit_processor]] (junho de 2017)." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "Tails does not work on most tablets and phones." msgid "Tails does not work on phone or tablets." -msgstr "Tails não funciona na maioria dos tablets e smartphones." +msgstr "Tails não funciona em smartphones e tablets." #. type: Plain text msgid "- 2 GB of RAM to work smoothly." @@ -180,7 +158,7 @@ msgstr " Tails pode funcionar com menos de 2 GB de memória RAM, mas pode se co #. type: Title = #, no-wrap msgid "Recommended hardware" -msgstr "" +msgstr "Hardware recomendado" #. type: Plain text msgid "" @@ -188,27 +166,36 @@ msgid "" "list of recommended hardware. Below are some guidelines if you, or your " "organization, are considering acquiring a laptop dedicated to running Tails." msgstr "" +"Os modelos de laptop evoluem rápido demais para que possamos manter uma " +"lista atualizada de hardware recomendado. Abaixo estão algumas orientações " +"caso você ou sua organização estejam condierando adquirir um laptop dedicado " +"a rodar o Tails." #. type: Title ### #, no-wrap msgid "For PC" -msgstr "" +msgstr "Para PC" #. type: Bullet: '- ' msgid "Avoid \"gaming\" models with Nvidia or AMD Radeon graphics cards." -msgstr "" +msgstr "Evite modelos \"gamer\" com placas de vÃdeo Nvidia ou AMD Radeon." #. type: Bullet: '- ' msgid "" "Consider buying a refurbished laptop from a high-end (professional) series. " "These are cheaper and will last longer than new but lower-quality laptops." msgstr "" +"Considere a possibilidade de comprar um laptop recondicionado de alguma " +"série (profissional) topo de linha. Eles são baratos e vão durar mais do que " +"se você comprar laptopos novos mas de baixa qualidade." #. type: Bullet: ' * ' msgid "" "For example, the Lenovo ThinkPad series work well with Tails, including the " "X250, X1 Carbon, T440, T480, and T490 models." msgstr "" +"Por exemplo, a série Lenovo ThinkPad funciona bem com Tails, incluindo os " +"modelos X250, X1 Carbon, T440, T480 e T490." #. type: Bullet: ' * ' msgid "" @@ -217,87 +204,107 @@ msgid "" "Guarantee](https://www.amazon.com/gp/help/customer/display.html?" "nodeId=G4ZAA22U35N373NX)." msgstr "" +"Se você vive em uma pate do mundo onde comprar laptops recondicionados não é " +"comum, dê uma olhada no eBay e Amazon. A Amazon oferece a [Garantia Renovada " +"Amazon](https://www.amazon.com/gp/help/customer/display." +"html?nodeId=G4ZAA22U35N373NX) de 90 dias." #. type: Bullet: '- ' msgid "" "Consider buying a new laptop from vendors who guarantee the compatibility " "with Linux and Tails like [ThinkPenguin](https://www.thinkpenguin.com/)." msgstr "" +"Considere a possibilidade de comprar um laptop novo de fornecedores que " +"garantam a compatibilidade com Linux e Tails, tais como " +"[ThinkPenguin](https://www.thinkpenguin.com/)." #. type: Title ### #, no-wrap msgid "For Mac" -msgstr "" +msgstr "Para Mac" #. type: Plain text msgid "" "Unfortunately, we don't know of any Mac model that works well in Tails and " "can run the latest macOS version." msgstr "" +"Infelizmente, nós não sabemos de nenhum modelo de Mac que funciona bem com " +"Tails e consegue rodar a versão mais recente do macOS." #. type: Plain text #, no-wrap msgid "<!--\n" -msgstr "" +msgstr "<!--\n" #. type: Plain text msgid "To update the list of Mac computer:" -msgstr "" +msgstr "Para atualizar a lista de computadores Mac:" #. type: Bullet: '1. ' msgid "" "Store an archive of WhisperBack reports from the last 6 months in a folder." msgstr "" +"Guarde um arquivo com relatórios WhisperBack dos últimos 6 meses em uma " +"pasta." #. type: Bullet: '2. ' msgid "Decrypt all the reports:" -msgstr "" +msgstr "Descriptografe todos os relatórios:" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" -msgstr "" +msgstr " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" #. type: Bullet: '3. ' msgid "Extract the list of computer models:" -msgstr "" +msgstr "Extraia a lista de modelos de computadores:" #. type: Plain text #, no-wrap msgid " ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/dmidecode -s system-product-name\" > machines\n" msgstr "" +" ~/Tails/blueprints/stats/whisperback_scripts/content_of.rb \"/usr/sbin/" +"dmidecode -s system-product-name\" > machines\n" #. type: Bullet: '4. ' msgid "Sort and count identical models:" -msgstr "" +msgstr "Ordene e conte os modelos idênticos:" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" -msgstr "" +msgstr " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" #. type: Bullet: '5. ' msgid "" "Share WhisperBack reports number with the Foundations team and ask them to " "evaluate hardware compatibility hints in those reports." msgstr "" +"Compartilhe os números dos relatórios WhisperBack com o time de Fundações e " +"peça para que avaliem as dicas de compatibilidade de hardware destes " +"relatórios." #. type: Plain text #, no-wrap msgid " While analyzing the reports corresponding from each model, FT should:\n" -msgstr "" +msgstr " Ao analizar relatórios correspondentes a cada modelo, o FT deve:\n" #. type: Bullet: ' - ' msgid "Check whether they were sent from the same email address, if any" msgstr "" +"Verificar se foram enviados a partir do mesmo endereço de email, caso haja " +"algum" #. type: Bullet: ' - ' msgid "Check whether the wlan0 interface was the same hardware device" msgstr "" +"Verificar se a interface wlan0 correspondia ao mesmo dispositivo de hardware" #. type: Bullet: ' - ' msgid "Check whether the report was about hardware compatibility issues" msgstr "" +"Verificar se o relatório era sobre as mesmas questões de compatibilidade" #. type: Bullet: '6. ' msgid "" -- GitLab From 0991fce722419a391616149b90af8403fce1b705 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:40:41 +0000 Subject: [PATCH 042/119] Translated using Weblate (Portuguese) Currently translated at 10.2% (4 of 39 strings) Translation: Tails/wiki/src/news/version_5.11.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_5-11-po/pt/ --- wiki/src/news/version_5.11.pt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wiki/src/news/version_5.11.pt.po b/wiki/src/news/version_5.11.pt.po index 456bf2c8813..65310bcf03d 100644 --- a/wiki/src/news/version_5.11.pt.po +++ b/wiki/src/news/version_5.11.pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-07-02 02:33+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 21:45+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -106,7 +106,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<!--\n" -msgstr "" +msgstr "<!--\n" #. type: Plain text msgid "" -- GitLab From 64e68a8993b263998dfc76b7fd22b742eb878c3d Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:40:41 +0000 Subject: [PATCH 043/119] Translated using Weblate (Portuguese) Currently translated at 7.8% (4 of 51 strings) Translation: Tails/wiki/src/news/version_5.12.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_5-12-po/pt/ --- wiki/src/news/version_5.12.pt.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wiki/src/news/version_5.12.pt.po b/wiki/src/news/version_5.12.pt.po index 48097521045..261c04ba892 100644 --- a/wiki/src/news/version_5.12.pt.po +++ b/wiki/src/news/version_5.12.pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:53+0200\n" -"PO-Revision-Date: 2023-07-02 02:34+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 21:45+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" @@ -194,7 +194,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "<!--\n" -msgstr "" +msgstr "<!--\n" #. type: Plain text msgid "" -- GitLab From 63f7dd8b83fd47c90cfbfbcbefcb492bf9e866fe Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:49 +0000 Subject: [PATCH 044/119] Weblate commit --- wiki/src/about.pt.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wiki/src/about.pt.po b/wiki/src/about.pt.po index 0a7cb2208d2..ab78f45ad6c 100644 --- a/wiki/src/about.pt.po +++ b/wiki/src/about.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-15 18:59+0000\n" -"PO-Revision-Date: 2023-08-01 15:22+0000\n" +"PO-Revision-Date: 2023-08-18 23:36+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -113,10 +113,8 @@ msgid "[[Download and install Tails|install]]" msgstr "[[Baixe e instale Tails|install]]" #. type: Content of: <section><div><div><ul><li> -#, fuzzy -#| msgid "[[System requirements|doc/about/requirements]]" msgid "[[System requirements and recommended hardware|doc/about/requirements]]" -msgstr "[[Requisitos de sistema|doc/about/requirements]]" +msgstr "[[Requisitos de sistema e hardware recomendado|doc/about/requirements]]" # # -- GitLab From d92c9a42c0ba44b3161a8d70da8aa3b210c1b6d4 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:49:14 +0000 Subject: [PATCH 045/119] Weblate commit --- wiki/src/doc/about.index.pt.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/wiki/src/doc/about.index.pt.po b/wiki/src/doc/about.index.pt.po index 47fdc774299..083bd6c2c5b 100644 --- a/wiki/src/doc/about.index.pt.po +++ b/wiki/src/doc/about.index.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-15 18:59+0000\n" -"PO-Revision-Date: 2023-02-26 11:27+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -19,10 +19,8 @@ msgstr "" "X-Generator: Weblate 4.9.1\n" #. type: Bullet: ' - ' -#, fuzzy -#| msgid "[[System requirements|about/requirements]]" msgid "[[System requirements and recommended hardware|about/requirements]]" -msgstr "[[Requisitos de sistema|about/requirements]]" +msgstr "[[Requisitos de sistema e hardware recomendado|about/requirements]]" #. type: Bullet: ' - ' msgid "[[Warnings: Tails is safe but not magic!|about/warnings]]" -- GitLab From 430a3cb1af1a7f52cb295c417c5cc0ef6e5e19a0 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:15 +0000 Subject: [PATCH 046/119] Weblate commit --- wiki/src/doc/about/requirements.pt.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/wiki/src/doc/about/requirements.pt.po b/wiki/src/doc/about/requirements.pt.po index 6e0d97c7c27..84e9d705529 100644 --- a/wiki/src/doc/about/requirements.pt.po +++ b/wiki/src/doc/about/requirements.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-15 18:59+0000\n" -"PO-Revision-Date: 2023-08-18 21:45+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" "Language: pt\n" @@ -252,7 +252,7 @@ msgid "Decrypt all the reports:" msgstr "Descriptografe todos os relatórios:" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" msgstr " ~/Tails/blueprints/stats/whisperback_scripts/decrypt.rb\n" @@ -272,7 +272,7 @@ msgid "Sort and count identical models:" msgstr "Ordene e conte os modelos idênticos:" #. type: Plain text -#, fuzzy, no-wrap +#, no-wrap msgid " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" msgstr " grep -v Bug_report machines | sort | uniq -c | sort -rhk 1 > top\n" @@ -310,23 +310,26 @@ msgstr "" msgid "" "Check whether these Mac models still support the latest version of macOS." msgstr "" +"Verificar se estes modelos de Mac ainda suportam a útlima versão do macOS." #. type: Plain text msgid "To update the list of PC computers:" -msgstr "" +msgstr "Para atualizar a lista de computadores PC:" #. type: Plain text msgid "- Check what's commonly available with refurbishing companies." msgstr "" +"- Verifique o que está disponivel com frequência nas empresas de " +"recondicionamento." #. type: Plain text msgid "- Ask tails-assembly@ for models." -msgstr "" +msgstr "- Peça a tails-assembly@ por informações sobre modelos." #. type: Plain text #, no-wrap msgid "-->\n" -msgstr "" +msgstr "-->\n" #, no-wrap #~ msgid "<div class=\"note\">\n" -- GitLab From 6b6764860a60519d84a247cb3901c4c8f954f4c4 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:48:52 +0000 Subject: [PATCH 047/119] Weblate commit --- wiki/src/doc/about/features.pt.po | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/wiki/src/doc/about/features.pt.po b/wiki/src/doc/about/features.pt.po index 5804d512807..d116bfcf0f3 100644 --- a/wiki/src/doc/about/features.pt.po +++ b/wiki/src/doc/about/features.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:53+0200\n" -"PO-Revision-Date: 2023-05-18 16:20+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -386,14 +386,6 @@ msgid "Multilingual support" msgstr "Suporte a diferentes idiomas" #. type: Plain text -#, fuzzy -#| msgid "" -#| "When starting Tails, you can choose between a large number of languages, " -#| "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, " -#| "Greek, English, Spanish, Persian, Finnish, French, Croatian, Hungarian, " -#| "Indonesian, Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, " -#| "Polish, Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, " -#| "Turkish, Ukrainian, and Chinese." msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " -- GitLab From f3f8783d6929f66c4bbd58ae214e1906ab95b2b2 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:50:05 +0000 Subject: [PATCH 048/119] Weblate commit --- wiki/src/doc/about/license.pt.po | 84 +++----------------------------- 1 file changed, 7 insertions(+), 77 deletions(-) diff --git a/wiki/src/doc/about/license.pt.po b/wiki/src/doc/about/license.pt.po index 3144437c9ef..f683557d8b6 100644 --- a/wiki/src/doc/about/license.pt.po +++ b/wiki/src/doc/about/license.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:52+0200\n" -"PO-Revision-Date: 2022-06-16 21:07+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -150,13 +150,6 @@ msgstr "" "Bazaar, Inc." #. type: Bullet: '- ' -#, fuzzy -#| msgid "" -#| "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" -#| "about/warnings]] pages are licensed under the [Creative Commons " -#| "Attribution-ShareAlike 4.0 International License](https://creativecommons." -#| "org/licenses/by-sa/4.0/), copyright [Andrés Fernández Cordón](https://" -#| "anhdr.es/) ([[source|lib/drawings.zip]] for Adobe Illustrator)." msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" @@ -164,11 +157,12 @@ msgid "" "by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" -"Os desenhos nas nossas páginas [[Inicial|index]], [[Como Tails funciona|" -"about]], e [[Avisos|doc/about/warnings]] são licenciados sob a licença " -"[Creative Commons Attribution-ShareAlike 4.0 International](https://" -"creativecommons.org/licenses/by-sa/4.0/), copyright [Andrés Fernández Cordón]" -"(https://anhdr.es/) ([[source|lib/drawings.zip]] for Adobe Illustrator)." +"Os desenhos nas nossas páginas [[Inicial|index]], [[Como Tails " +"funciona|about]], e [[Avisos|doc/about/warnings]] são licenciados sob a " +"licença [Creative Commons Attribution-ShareAlike 4.0 " +"International](https://creativecommons.org/licenses/by-sa/4.0/), copyright [" +"Andrés Fernández Cordón](https://anhdr.es/) ([[source|lib/drawings.zip]] " +"for Adobe Illustrator)." #. type: Bullet: '- ' msgid "" @@ -212,10 +206,6 @@ msgstr "" "Commons - Attribução, por Olivier Guin." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " -#| "Attribution, by Azis." msgid "" "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." @@ -224,10 +214,6 @@ msgstr "" "Atribuição, por Azis." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " -#| "Attribution, by factor[e] design initiative." msgid "" "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." @@ -244,10 +230,6 @@ msgstr "" "Rohith M S." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " -#| "Attribution, by Edward Boatman." msgid "" "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." @@ -256,10 +238,6 @@ msgstr "" "Atribuição, por Edward Boatman." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Translation|http://thenounproject.com/term/translation/5735/]]: " -#| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " "Commons — Attribution, by Joe Mortell." @@ -268,10 +246,6 @@ msgstr "" "Commons — Atribuição, por Joe Mortell." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " -#| "Attribution, by Cris Dobbins." msgid "" "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." @@ -280,10 +254,6 @@ msgstr "" "Atribuição, por Cris Dobbins." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -#| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " "Creative Commons — Attribution, by Cornelius Danger." @@ -300,10 +270,6 @@ msgstr "" "por Julian Norton." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " -#| "Commons — Attribution, by Kervin Markle." msgid "" "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." @@ -312,10 +278,6 @@ msgstr "" "Atribuição, por Kervin Markle." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " -#| "Attribution, by Zech Nelson." msgid "" "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." @@ -324,10 +286,6 @@ msgstr "" "Atribuição, por Zech Nelson." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " -#| "— Attribution, by Zech Nelson." msgid "" "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." @@ -336,10 +294,6 @@ msgstr "" "Atribuição, por Zech Nelson." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " -#| "Attribution, by Wilson Joseph." msgid "" "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." @@ -348,10 +302,6 @@ msgstr "" "Atribuição, por Wilson Joseph." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " -#| "Attribution, by Richard de Vos." msgid "" "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." @@ -360,10 +310,6 @@ msgstr "" "Atribuição, por Richard de Vos." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative " -#| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " "— Attribution, by Diego Naive." @@ -372,10 +318,6 @@ msgstr "" "Commons — Atribuição, por Diego Naive." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: " -#| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " "Commons — Attribution, by Pham Thi Dieu Linh." @@ -392,10 +334,6 @@ msgstr "" "Jean Yashu." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " -#| "Attribution, by Thomas Helbig." msgid "" "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." @@ -404,10 +342,6 @@ msgstr "" "Atribuição, por Thomas Helbig." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative " -#| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " "— Attribution, by unlimicon." @@ -416,10 +350,6 @@ msgstr "" "Commons — Atribuição, por unlimicon." #. type: Bullet: ' - ' -#, fuzzy -#| msgid "" -#| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " -#| "Attribution, by icongeek." msgid "" "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." -- GitLab From e275d2260634fc8239af519d8813011413256f0f Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 049/119] Translated using Weblate (Portuguese) Currently translated at 16.8% (16 of 95 strings) Translation: Tails/wiki/src/news/version_4.0.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_40po/pt/ --- wiki/src/news/version_4.0.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_4.0.pt.po b/wiki/src/news/version_4.0.pt.po index 9cd0b51042b..a151e38cffd 100644 --- a/wiki/src/news/version_4.0.pt.po +++ b/wiki/src/news/version_4.0.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-14 13:53+0200\n" -"PO-Revision-Date: 2023-03-12 00:36+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From 4356764d3f4c31d1821da0b2d510ab40f285c0b1 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 050/119] Translated using Weblate (Portuguese) Currently translated at 34.1% (14 of 41 strings) Translation: Tails/wiki/src/news/version_4.10.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_410po/pt/ --- wiki/src/news/version_4.10.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_4.10.pt.po b/wiki/src/news/version_4.10.pt.po index 36e81183423..b5489ef1958 100644 --- a/wiki/src/news/version_4.10.pt.po +++ b/wiki/src/news/version_4.10.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-03-12 00:37+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From 1604a088950a88b6fe54d4848946310e356a72de Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 051/119] Translated using Weblate (Portuguese) Currently translated at 27.5% (11 of 40 strings) Translation: Tails/wiki/src/news/version_4.12.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_412po/pt/ --- wiki/src/news/version_4.12.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_4.12.pt.po b/wiki/src/news/version_4.12.pt.po index 3b06a54c4e1..76b1ffe4aa1 100644 --- a/wiki/src/news/version_4.12.pt.po +++ b/wiki/src/news/version_4.12.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-03-12 00:38+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From 9e5535f397c96caac07f1a42f14af6fc2a832f3f Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 052/119] Translated using Weblate (Portuguese) Currently translated at 22.5% (9 of 40 strings) Translation: Tails/wiki/src/news/version_4.19.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_419po/pt/ --- wiki/src/news/version_4.19.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_4.19.pt.po b/wiki/src/news/version_4.19.pt.po index 903f73a4aa3..3fcd55abd55 100644 --- a/wiki/src/news/version_4.19.pt.po +++ b/wiki/src/news/version_4.19.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-03-12 00:39+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From cd892bca4bb7c2acf3c3a526752238f247dfceba Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:52:44 +0000 Subject: [PATCH 053/119] Translated using Weblate (Portuguese) Currently translated at 100.0% (19 of 19 strings) Translation: Tails/wiki/src/doc/about/warnings.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcdocaboutwarningspo/pt/ --- wiki/src/doc/about/warnings.pt.po | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/wiki/src/doc/about/warnings.pt.po b/wiki/src/doc/about/warnings.pt.po index fcf63c3714c..5c5460010b5 100644 --- a/wiki/src/doc/about/warnings.pt.po +++ b/wiki/src/doc/about/warnings.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-14 13:53+0200\n" -"PO-Revision-Date: 2022-08-30 02:14+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -28,11 +28,6 @@ msgstr "" "[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]" #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "Tails is safer than any regular operating system. But Tails, or any " -#| "software or operating system, cannot protect you from everything—even if " -#| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " "or operating system, cannot protect you from everything—even if they pretend " -- GitLab From 8f37ff9ab254ba09ead50c76d5ecd7797212319b Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:52:17 +0000 Subject: [PATCH 054/119] Translated using Weblate (Portuguese) Currently translated at 100.0% (23 of 23 strings) Translation: Tails/wiki/src/doc/about/warnings/computer.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcdocaboutwarningscomputerpo/pt/ --- wiki/src/doc/about/warnings/computer.pt.po | 22 +++++----------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/wiki/src/doc/about/warnings/computer.pt.po b/wiki/src/doc/about/warnings/computer.pt.po index 2096e89ce8e..85680d30f79 100644 --- a/wiki/src/doc/about/warnings/computer.pt.po +++ b/wiki/src/doc/about/warnings/computer.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-14 13:52+0200\n" -"PO-Revision-Date: 2023-07-11 20:33+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -117,11 +117,6 @@ msgstr "" "pessoas, mesmo que você esteja usando Tails." #. type: Content of: <p> -#, fuzzy -#| msgid "" -#| "Try to keep your computer in a safe location. Hardware alterations are " -#| "more likely on public computers, in internet cafés or libraries, and on " -#| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " "likely on public computers, in internet cafés or libraries, and on desktop " @@ -169,13 +164,6 @@ msgstr "" "(em inglês)." #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "Other hardware alterations are much more complicated and expensive to " -#| "install. For an example, see <a href=\"https://arstechnica.com/tech-" -#| "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -#| "implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " -#| "router getting implant</a>." msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" @@ -184,10 +172,10 @@ msgid "" "router getting implant</a>." msgstr "" "Outras alterações de hardware são muito mais complicadas e caras de " -"instalar. Por exemplo, veja <a href=\"https://arstechnica.com/tech-" -"policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Fotos de uma \"atualização\" de um NSA, fábrica " -"mostra roteador Cisco recebendo um implante</a> (em inglês)." +"instalar. Por exemplo, veja <a href=\"https://arstechnica.com/tech-policy/" +"2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-implant/\"" +">Ars Technica: Fotos de uma \"atualização\" de um NSA, fábrica mostra " +"roteador Cisco recebendo um implante</a> (em inglês)." #. type: Content of: <h2> msgid "No operating system can protect against BIOS and firmware attacks" -- GitLab From 1205451214776e4b03165297d3e5ef2eb78e0926 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:53:03 +0000 Subject: [PATCH 055/119] Translated using Weblate (Portuguese) Currently translated at 100.0% (27 of 27 strings) Translation: Tails/wiki/src/doc/about/warnings/tor.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcdocaboutwarningstorpo/pt/ --- wiki/src/doc/about/warnings/tor.pt.po | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/wiki/src/doc/about/warnings/tor.pt.po b/wiki/src/doc/about/warnings/tor.pt.po index 8fa6e095f9a..0f55569a6e0 100644 --- a/wiki/src/doc/about/warnings/tor.pt.po +++ b/wiki/src/doc/about/warnings/tor.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-08-14 13:52+0200\n" -"PO-Revision-Date: 2023-02-26 11:28+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -191,8 +191,8 @@ msgstr "" #. type: Content of: <h2> msgid "Adversaries watching both ends of a Tor circuit could identify users" msgstr "" -"Adversários que consigam monitorar ambas as pontas de um circuito Tor podem " -"identificar usuários." +"Adversários que conseguem monitorar ambas as pontas de um circuito Tor podem " +"conseguir identificar usuários" #. type: Content of: <p> msgid "" @@ -261,13 +261,6 @@ msgstr "" "retransmissores independentes." #. type: Content of: <div><p> -#, fuzzy -#| msgid "" -#| "End-to-end correlation attacks have been studied in research papers, but " -#| "we don't know of any actual use to deanonymize Tor users. For an example, " -#| "see <a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -#| "pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-" -#| "Exchange-Level Adversaries</a>." msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " @@ -277,7 +270,7 @@ msgid "" msgstr "" "Ataques de correlação ponta-a-ponta foram estudados em artigos de pesquisa, " "mas nós não temos conhecimento de que tenham sido de fato usados para " -"desanonimizar usuários da rede Tor. Para um exemplo, veja <a href=\"https://" -"www.freehaven.net/anonbib/cache/murdoch-pet2007.pdf\">Murdoch e ZieliÅ„ski: " -"Sampled Traffic Analysis by Internet-Exchange-Level Adversaries</a> (em " +"desanonimizar usuários da rede Tor. Para um exemplo, veja <a href=\"https" +"://www.freehaven.net/anonbib/cache/murdoch-pet2007.pdf\">Murdoch e ZieliÅ„ski:" +" Sampled Traffic Analysis by Internet-Exchange-Level Adversaries</a> (em " "inglês)." -- GitLab From 9106e10c8305130c877be0d517c3d38f487f6a77 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 056/119] Translated using Weblate (Portuguese) Currently translated at 100.0% (79 of 79 strings) Translation: Tails/wiki/src/doc/anonymous_internet/tor.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcdocanonymous_internettorpo/pt/ --- wiki/src/doc/anonymous_internet/tor.pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/doc/anonymous_internet/tor.pt.po b/wiki/src/doc/anonymous_internet/tor.pt.po index 538631f7a5c..7ac06bce1af 100644 --- a/wiki/src/doc/anonymous_internet/tor.pt.po +++ b/wiki/src/doc/anonymous_internet/tor.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-06-13 14:17+0200\n" -"PO-Revision-Date: 2023-07-28 01:22+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" -- GitLab From 6e0a8f71cfa63c0d4fd378837b6b0dcf5b3e720b Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 057/119] Translated using Weblate (Portuguese) Currently translated at 16.2% (6 of 37 strings) Translation: Tails/wiki/src/news/version_4.27.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_427po/pt/ --- wiki/src/news/version_4.27.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_4.27.pt.po b/wiki/src/news/version_4.27.pt.po index 142988968e4..e985126c53d 100644 --- a/wiki/src/news/version_4.27.pt.po +++ b/wiki/src/news/version_4.27.pt.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-07-02 02:33+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From 89c408f97b463c03bd666173ab130402dfd37247 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 058/119] Translated using Weblate (Portuguese) Currently translated at 11.4% (7 of 61 strings) Translation: Tails/wiki/src/news/version_5.0.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_50po/pt/ --- wiki/src/news/version_5.0.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_5.0.pt.po b/wiki/src/news/version_5.0.pt.po index 5056cd9eb93..f5010aeb568 100644 --- a/wiki/src/news/version_5.0.pt.po +++ b/wiki/src/news/version_5.0.pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:52+0200\n" -"PO-Revision-Date: 2023-07-02 02:33+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From ae45359a36810281a4ec12d9628263a2a4445d25 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 059/119] Translated using Weblate (Portuguese) Currently translated at 14.2% (6 of 42 strings) Translation: Tails/wiki/src/news/version_5.10.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_510po/pt/ --- wiki/src/news/version_5.10.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_5.10.pt.po b/wiki/src/news/version_5.10.pt.po index b60feb9228f..21ce0f5c9c1 100644 --- a/wiki/src/news/version_5.10.pt.po +++ b/wiki/src/news/version_5.10.pt.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-07-02 02:33+0000\n" -"Last-Translator: xin <xin@riseup.net>\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" +"Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" "MIME-Version: 1.0\n" -- GitLab From 486c65d57ebbe03b15cf24fee3aed162c37a4901 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 060/119] Translated using Weblate (Portuguese) Currently translated at 12.8% (5 of 39 strings) Translation: Tails/wiki/src/news/version_5.11.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_5-11-po/pt/ --- wiki/src/news/version_5.11.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_5.11.pt.po b/wiki/src/news/version_5.11.pt.po index 65310bcf03d..d900f10eea3 100644 --- a/wiki/src/news/version_5.11.pt.po +++ b/wiki/src/news/version_5.11.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-07-06 09:16+0000\n" -"PO-Revision-Date: 2023-08-18 21:45+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -117,7 +117,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "-->\n" -msgstr "" +msgstr "-->\n" #. type: Plain text msgid "None specific to this release." -- GitLab From 526846670cf035ee82110e6beb8e3d7db187a6d7 Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Fri, 18 Aug 2023 21:47:26 +0000 Subject: [PATCH 061/119] Translated using Weblate (Portuguese) Currently translated at 9.8% (5 of 51 strings) Translation: Tails/wiki/src/news/version_5.12.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcnewsversion_5-12-po/pt/ --- wiki/src/news/version_5.12.pt.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiki/src/news/version_5.12.pt.po b/wiki/src/news/version_5.12.pt.po index 261c04ba892..8e5d7f0e41d 100644 --- a/wiki/src/news/version_5.12.pt.po +++ b/wiki/src/news/version_5.12.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:53+0200\n" -"PO-Revision-Date: 2023-08-18 21:45+0000\n" +"PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -205,7 +205,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "-->\n" -msgstr "" +msgstr "-->\n" #. type: Plain text msgid "None specific to this release." -- GitLab From 917711ddf2196aba8d4748c0d4408c7e3748db08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Thu, 17 Aug 2023 15:21:44 +0200 Subject: [PATCH 062/119] Remove the plymouth.ignore-udev hack. I checked that i still see the error message by adding the kernel flag autotest_broken_gnome_shell. closes: #16964 --- .../systemd/system/tails-gdm-failed-to-start.service | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/config/chroot_local-includes/lib/systemd/system/tails-gdm-failed-to-start.service b/config/chroot_local-includes/lib/systemd/system/tails-gdm-failed-to-start.service index 0ba9e08a7af..03dbd3329fe 100644 --- a/config/chroot_local-includes/lib/systemd/system/tails-gdm-failed-to-start.service +++ b/config/chroot_local-includes/lib/systemd/system/tails-gdm-failed-to-start.service @@ -17,15 +17,7 @@ After=plymouth-quit-wait.service Type=oneshot # We use VT5 that is clean of boot messages and does not get a getty started # when we switch there, thanks to our custom NAutoVTs=4 logind.conf setting -# -# There are queued udev events when we run plymouthd so on Stretch, so -# watch_for_coldplug_completion will set up a watcher and return before -# there's any place where plymouthd can create a seat to display its -# splash and messages on. So we tell plymouthd to ignore udev which makes -# it create a fallback seat. The removal of this hack is tracked on #16964. -ExecStart=/bin/sh -c \ - '/sbin/plymouthd --mode=shutdown --tty=tty5 \ - --kernel-command-line="plymouth.ignore-udev $(cat /proc/cmdline)"' +ExecStart=/sbin/plymouthd --mode=shutdown --tty=tty5 ExecStart=/bin/chvt 5 ExecStart=/bin/plymouth show-splash ExecStart=/usr/local/lib/tails-gdm-error-message -- GitLab From 8a51806746ece27d096c7eb5729c42301a25544b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Thu, 17 Aug 2023 16:52:19 +0200 Subject: [PATCH 063/119] Mark regex code as "raw" string. That makes sure that escaped caraters like \. \s end up correctly in regex and are not double escaped or things like that. --- .../dist-packages/whisperBack/utils.py | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py index 52474f2258b..33f66792625 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/whisperBack/utils.py @@ -184,8 +184,8 @@ def is_valid_hostname_or_ipv4(candidate): return False # regex from http://stackoverflow.com/a/106223 - ip_address_regex = re.compile("^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"); - hostname_regex = re.compile("^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$"); + ip_address_regex = re.compile(r"^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$"); + hostname_regex = re.compile(r"^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$"); if ip_address_regex.match(candidate) or hostname_regex.match(candidate): return True @@ -215,14 +215,14 @@ def sanitize_hardware_info(log_string): # Serial Numbers log_string = re.sub(r'(Serial Number:?[\s]+|' - 'SerialNo=|' - 'iSerial[\s]+[\d]+\s+|' - 'SerialNumber:[\s]+|' - 'SerialNumber=|' - 'Serial#:[\s+]|' - 'serial#[\s+]|' - 'Serial No:[\s]+' - ')[^\s].*', + r'SerialNo=|' + r'iSerial[\s]+[\d]+\s+|' + r'SerialNumber:[\s]+|' + r'SerialNumber=|' + r'Serial#:[\s+]|' + r'serial#[\s+]|' + r'Serial No:[\s]+' + r')[^\s].*', r'\1[SN REMOVED]', log_string) # UUIDs -- GitLab From c737c44e155db61a82370fdaaf88e5c687223812 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Mon, 21 Aug 2023 14:57:28 +0200 Subject: [PATCH 064/119] Install printer-driver-brlaser Closes: #18254 --- config/chroot_local-packageslists/tails-common.list | 1 + 1 file changed, 1 insertion(+) diff --git a/config/chroot_local-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list index 42ee904b6cf..54feac3ae59 100644 --- a/config/chroot_local-packageslists/tails-common.list +++ b/config/chroot_local-packageslists/tails-common.list @@ -340,6 +340,7 @@ printer-driver-escpr printer-driver-hpcups printer-driver-gutenprint printer-driver-postscript-hp +printer-driver-brlaser ### Enable MAT2's Nautilus extension python3-nautilus -- GitLab From e24fe2251bd02a1c93099d35ee17897dbebe6c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Mon, 21 Aug 2023 15:47:38 +0200 Subject: [PATCH 065/119] Add another way to start tails.iso for developers. Closes #19945 --- wiki/src/contribute/build/run.mdwn | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/wiki/src/contribute/build/run.mdwn b/wiki/src/contribute/build/run.mdwn index 04fac10dd31..33aac697406 100644 --- a/wiki/src/contribute/build/run.mdwn +++ b/wiki/src/contribute/build/run.mdwn @@ -46,3 +46,22 @@ Edit the patch, removing `.orig` from the first line: sensible-editor "config/chroot-local_includes${PATCHING_FILE}" git add "config/chroot-local_includes${PATCHING_FILE}" ``` + +# Run iso in fire 'n' forget mode + +as you not always want to click you through virt-maanger you can use qemu/kmv directly: + +```sh +kvm -m 2048 -cdrom <ISO NAME>.iso +``` + +you can even share a directoy with the client system: + +```sh +kvm -m 2048 -virtfs local,path=/path/to/file,mount_tag=host0,security_model=passthrough,id=host0 -cdrom /path/to/tails.iso +``` + +inside the client you can now mount the directory via (you need to have a adminstrator password): +```sh +sudo mount -t 9p -o trans=virtio host0 /mnt/ +``` -- GitLab From 6a469ee48092d47b405e76164d1d08ce2c323083 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Tue, 15 Aug 2023 11:06:44 +0200 Subject: [PATCH 066/119] locale-independent output for date Without this, my test suite was failing because dates are printed in Italian locale on my computer, which confuses ruby's DateTime somehow. --- features/step_definitions/time_syncing.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/time_syncing.rb b/features/step_definitions/time_syncing.rb index 0d7f577febe..200c17e36d0 100644 --- a/features/step_definitions/time_syncing.rb +++ b/features/step_definitions/time_syncing.rb @@ -33,7 +33,7 @@ When /^I bump the (hardware clock's|system) time with "([^"]+)"$/ do |clock_type new_time = DateTime.parse($vm.execute_successfully('date').stdout).to_time end expected_time_lower_bound = DateTime.parse( - cmd_helper(['date', '-d', "#{old_time} #{timediff}"]) + cmd_helper(['date', '--rfc-3339=seconds', '-d', "#{old_time} #{timediff}"]) ).to_time expected_time_upper_bound = expected_time_lower_bound + max_time_drift assert(expected_time_lower_bound <= new_time && -- GitLab From 4e963e92b1032d6fef3f98094a6c2f2d1729ead2 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Tue, 15 Aug 2023 10:02:26 +0200 Subject: [PATCH 067/119] workaround test hidden in test suite the last line is not visible in my setup, which makes this test fail. this is a workaround specifically for emergency_shutdown.feature --- .../usr/local/lib/initramfs-pre-shutdown-hook | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook b/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook index c327351b66b..5421f30b7dd 100755 --- a/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook +++ b/config/chroot_local-includes/usr/local/lib/initramfs-pre-shutdown-hook @@ -54,5 +54,11 @@ echo 3 > /proc/sys/vm/drop_caches ### Pause if the test suite wants us to if [ -e /tails_shutdown_debugging ] ; then echo "Going to sleep 2 minutes. Happy dumping!" + # Those extra "echo" avoid that the text is on the bottom, which can be easier for the test suite to + # recognize + echo + echo + echo + echo sleep 120 fi -- GitLab From 68adb49a117490d55274c5532ce3080ffb9d6cc3 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Tue, 15 Aug 2023 11:35:36 +0200 Subject: [PATCH 068/119] test suite supports regexp --- features/support/helpers/dogtail.rb | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/features/support/helpers/dogtail.rb b/features/support/helpers/dogtail.rb index a550e864af3..0b0725806f9 100644 --- a/features/support/helpers/dogtail.rb +++ b/features/support/helpers/dogtail.rb @@ -114,12 +114,21 @@ module Dogtail 'True' elsif value == false 'False' - elsif value.instance_of?(String) + elsif [String, Regexp].include?(value.class) + s = value + if value.instance_of?(Regexp) + # All Regexp instances explicitly disable the "mix" flags, so + # to_s() returns "(?-mix:$PATTERN)". Unfortunately Dogtail's + # regex matching does not support groups since all parentheses + # in the expression are escaped but source() returns just the + # original pattern as a string. + s = value.source + end # Since we use single-quote the string we have to escape any # occurrences inside. # We also prefix the string with 'r' to make it a raw string, # which means we don't have to escape backslashes. - "r'#{value.gsub("'", "\\\\'")}'" + "r'#{s.gsub("'", "\\\\'")}'" elsif [Integer, Float].include?(value.class) value.to_s else -- GitLab From 44a1dd7cc1c29555844133452c4fe13fb9fde58e Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Tue, 15 Aug 2023 11:35:51 +0200 Subject: [PATCH 069/119] Rewrite regexp to fit in Dogtail syntax see https://gitlab.tails.boum.org/tails/tails/-/issues/19928#note_215864 fixes #19928 --- features/step_definitions/thunderbird.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/thunderbird.rb b/features/step_definitions/thunderbird.rb index 6fdac8ab412..f05151346bc 100644 --- a/features/step_definitions/thunderbird.rb +++ b/features/step_definitions/thunderbird.rb @@ -13,7 +13,7 @@ end def thunderbird_inbox folder_view = thunderbird_main.child($config['Thunderbird']['address'], roleName: 'table row').parent - folder_view.child(/^Inbox( .*)?$/, roleName: 'table row', recursive: false) + folder_view.child(/^Inbox|Inbox (.*)$/, roleName: 'table row', recursive: false) end def thunderbird_install_host_snakeoil_ssl_cert -- GitLab From 1068956de0ce80ac9f00b6f83b673333eb13ecde Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 22 Aug 2023 08:17:39 +0000 Subject: [PATCH 070/119] Add comment --- features/step_definitions/thunderbird.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/features/step_definitions/thunderbird.rb b/features/step_definitions/thunderbird.rb index f05151346bc..2b74d270fd0 100644 --- a/features/step_definitions/thunderbird.rb +++ b/features/step_definitions/thunderbird.rb @@ -13,6 +13,10 @@ end def thunderbird_inbox folder_view = thunderbird_main.child($config['Thunderbird']['address'], roleName: 'table row').parent + # Dogtail mangles the regexps we pass it, which we have to workaround, + # hence the suboptimal regexp below (the simpler /^Inbox( .*)?$/ would + # not work). For details, see + # https://gitlab.tails.boum.org/tails/tails/-/issues/19928#note_215864 folder_view.child(/^Inbox|Inbox (.*)$/, roleName: 'table row', recursive: false) end -- GitLab From b6bcc6c1fc6cdbccd5cd11491c27444ea6aa9609 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Mon, 21 Aug 2023 15:27:06 +0200 Subject: [PATCH 071/119] Remove manual manipulation of env of start-systemd-desktop-target Manual tests of different images show that the env if the same with/without those manual manipulation of the env. Closes #16968 --- .../usr/local/lib/start-systemd-desktop-target | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/config/chroot_local-includes/usr/local/lib/start-systemd-desktop-target b/config/chroot_local-includes/usr/local/lib/start-systemd-desktop-target index 33331a018fb..df5172bbbac 100755 --- a/config/chroot_local-includes/usr/local/lib/start-systemd-desktop-target +++ b/config/chroot_local-includes/usr/local/lib/start-systemd-desktop-target @@ -3,19 +3,5 @@ set -e set -u -# Import (almost all) XDG_*, locale-related and DBUS_SESSION_BUS_ADDRESS variables -# into the systemd user instance's environment. We're filtering some -# XDG_* out in order not to pretend that processes run via `systemd --user` -# are part of the desktop session. -/usr/bin/env \ - | /bin/grep '^XDG_' \ - | /bin/grep -E -v '^XDG_(SEAT=|SESSION_)' \ - | /usr/bin/xargs /bin/systemctl --user set-environment -/usr/bin/locale | /usr/bin/xargs /bin/systemctl --user set-environment -/bin/systemctl --user import-environment \ - DBUS_SESSION_BUS_ADDRESS \ - DISPLAY \ - XAUTHORITY - # Start desktop.target /bin/systemctl --user start desktop.target -- GitLab From 53b03bfdc38b3817819cc7f6a57255ea7c68c97c Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 22 Aug 2023 08:50:16 +0000 Subject: [PATCH 072/119] Document new build dependency Fixup on !1208 --- wiki/src/contribute/build.mdwn | 1 + 1 file changed, 1 insertion(+) diff --git a/wiki/src/contribute/build.mdwn b/wiki/src/contribute/build.mdwn index 11588a58168..bd8bfdab79d 100644 --- a/wiki/src/contribute/build.mdwn +++ b/wiki/src/contribute/build.mdwn @@ -55,6 +55,7 @@ Then: dnsmasq-base \ ebtables \ faketime \ + jq \ pigz \ qemu-system-x86 \ qemu-utils \ -- GitLab From 6a8be0f9342dea2ba2688c33c1c135211d895570 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 22 Aug 2023 09:49:46 +0000 Subject: [PATCH 073/119] Reformat with black --- bin/needed-package-updates | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/bin/needed-package-updates b/bin/needed-package-updates index 64478d579d1..630a94607d5 100755 --- a/bin/needed-package-updates +++ b/bin/needed-package-updates @@ -209,7 +209,7 @@ class NewVersionIssue: suite_source_version: Version def __str__(self): - binaries = getattr(self, 'log_binaries', None) + binaries = getattr(self, "log_binaries", None) if binaries: binaries = ", ".join(binaries) return f"{self.source}[{binaries}] ({self.version}) to Debian {self.suite} ({self.suite_source_version})" @@ -220,11 +220,10 @@ class NewVersionIssue: def get_udd(package_dict: dict[str, Version], suites: tuple[str]) -> UDD: - return UDD(package_dict.keys(), suites) # type: ignore[arg-type] + return UDD(package_dict.keys(), suites) # type: ignore[arg-type] -def get_issues(udd: UDD, - package_dict: dict[str, Version] -) -> Iterator[NewVersionIssue]: + +def get_issues(udd: UDD, package_dict: dict[str, Version]) -> Iterator[NewVersionIssue]: """Get a issue list of updateable packages.""" for package, version in package_dict.items(): striped_version = strip_tails_version(str(version)) @@ -304,16 +303,16 @@ def check_build_manifest( return _log_issue(issue) - def _log(issues): - for source, i in itertools.groupby(non_forked,key=operator.attrgetter("source")): + for source, i in itertools.groupby( + non_forked, key=operator.attrgetter("source") + ): yield log_group(source, list(i)) if forked: l = "\n - ".join(sorted(_log(forked))) logger.info(f"Need to upgrade our own forked package:\n - {l}") - if non_forked: l = "\n - ".join(sorted(_log(non_forked))) logger.info(f"Need to upgrade to a new APT snapshot:\n - {l}") -- GitLab From d2afac88f24d9e22af56c4f2d8660951c3352b61 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 22 Aug 2023 14:36:40 +0000 Subject: [PATCH 074/119] Test suite: make changing Persistent Storage passphrase more robust refs #19950 --- features/step_definitions/usb.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index 56d98f03e58..a1498623747 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -446,9 +446,11 @@ Given /^I change the passphrase of the Persistent Storage( back to the original) # modal dialog to be run via gtk_dialog_run() which causes the # application to hang when triggered via a ATSPI action. See # https://gitlab.gnome.org/GNOME/gtk/-/issues/1281 - persistent_storage_main_frame - .button('Change Passphrase') - .grabFocus + button = persistent_storage_main_frame.button('Change Passphrase') + try_for(5) do + button.grabFocus + button.focused + end @screen.press('Return') change_passphrase_dialog = persistent_storage_frontend .child('Change Passphrase', roleName: 'dialog') -- GitLab From 2e5e5e1099977550acd2b08e0314bd14cab2dfc4 Mon Sep 17 00:00:00 2001 From: Zen Fu <zen@systemli.org> Date: Tue, 22 Aug 2023 11:47:10 -0300 Subject: [PATCH 075/119] Add report for July 2023 --- wiki/src/news/report_2023_07.mdwn | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 wiki/src/news/report_2023_07.mdwn diff --git a/wiki/src/news/report_2023_07.mdwn b/wiki/src/news/report_2023_07.mdwn new file mode 100644 index 00000000000..3158aef0418 --- /dev/null +++ b/wiki/src/news/report_2023_07.mdwn @@ -0,0 +1,44 @@ +[[!meta title="Tails report for July 2023"]] +[[!meta date="Tue, 22 Aug 2023 14:27:05 +0000"]] +[[!pagetemplate template="news.tmpl"]] + +[[!toc]] + +Highlights +========== + +- In case you missed it, we have a new home. In July, we completed the + migration of the Tails website to a new namespace: `tails.net`. + [Welcome!](https://tails.net/news/new_domain/index.en.html) + +- 2 more sponsors renewed their support for Tails: + [freiheitsfoo](https://freiheitsfoo.de/) and [Exam + Success](https://www.examsuccess.com.au/)! We are all very grateful for their + continued support and generosity. You, too, could [sponsor + Tails](https://tails.net/sponsors/become/). + +- We have started work on deciding the next big feature + for Tails! We are deliberating between adding either + VPN functionality or messaging applications. We're sure + you have preferences and pointers for us. Let us know. + +Releases +======== + +[Tails 5.15.1 was released on July 11 2023](https://tails.net/news/version_5.15.1/index.en.html). + +- From Tails 5.14 - the previous Tails release - your Persistent Storage + automatically uses LUKS2 encryption with Argon2id. On some systems, the + upgrade was facing issues with reliability + ([#19734](https://gitlab.tails.boum.org/tails/tails/-/issues/19734), + [#19728](https://gitlab.tails.boum.org/tails/tails/-/issues/19728)). Tails + 5.15.1 fixes these reliability issues. If you are still experiencing issues, + [WhisperBack](https://tails.net/doc/first_steps/bug_reporting/index.en.html#whisperback)! + +- Tor browser in Tails now supports authenticated onion services in a consistent manner. + +Metrics +======= + +Tails was started more than 751,383 times this month. +That's a daily average of over 24,238 boots. -- GitLab From 04994a665de1b6a5c1cf3beb54d99d4cd5796f09 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Tue, 22 Aug 2023 17:01:28 +0200 Subject: [PATCH 076/119] tps: assign variable to regexp for readability --- .../usr/lib/python3/dist-packages/tps/device.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 5acad01264e..77819a73a38 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -23,6 +23,7 @@ TAILS_MOUNTPOINT = "/lib/live/mount/medium" PARTITION_GUID = "8DA63339-0007-60C0-C436-083AC8230908" # Linux reserved TPS_PARTITION_LABEL = "TailsData" VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$', re.MULTILINE) +KEYSLOT_REGEX = re.compile(r'^ (\d+): (.+)$') PBKDF_REGEX = re.compile(r'^\s*PBKDF:\s*(\S+)$') MEMORY_COST_REGEX = re.compile(r'^\s*Memory:\s*(\d+)$') @@ -210,7 +211,7 @@ class TPSPartition(object): keyslots = dict() slot = None for line in keyslots_section.splitlines(): - if match := re.match("^ (\d+): (.+)$", line): + if match := KEYSLOT_REGEX.match(line): slot = int(match.group(1)) keyslots[slot] = dict() keyslots[slot]["type"] = match.group(2) -- GitLab From d262b72dabd1af339a0df35f52c8412cc8b0abcb Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Tue, 22 Aug 2023 17:04:06 +0200 Subject: [PATCH 077/119] Avoid variables named "match" which is a Python >= 3.10 keyword --- .../lib/python3/dist-packages/tps/device.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 77819a73a38..10ec66630cd 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -195,8 +195,8 @@ class TPSPartition(object): f"### End of LUKS dump ###") version = str() - if match := VERSION_REGEX.search(luks_dump): - version = match.group(1) + if m := VERSION_REGEX.search(luks_dump): + version = m.group(1) logger.debug(f"version = {version}") # LUKS version 1 does not print the PBKDF because it only @@ -211,14 +211,14 @@ class TPSPartition(object): keyslots = dict() slot = None for line in keyslots_section.splitlines(): - if match := KEYSLOT_REGEX.match(line): - slot = int(match.group(1)) + if m := KEYSLOT_REGEX.match(line): + slot = int(m.group(1)) keyslots[slot] = dict() - keyslots[slot]["type"] = match.group(2) - elif match := PBKDF_REGEX.match(line): - keyslots[slot]["pbkdf"] = match.group(1) - elif match := MEMORY_COST_REGEX.match(line): - keyslots[slot]["memory_cost_kib"] = int(match.group(1)) + keyslots[slot]["type"] = m.group(2) + elif m := PBKDF_REGEX.match(line): + keyslots[slot]["pbkdf"] = m.group(1) + elif m := MEMORY_COST_REGEX.match(line): + keyslots[slot]["memory_cost_kib"] = int(m.group(1)) logger.debug(f"keyslots = {keyslots}") errors = list() -- GitLab From eb7291498f57ba57b94e879f64adc874cc3494aa Mon Sep 17 00:00:00 2001 From: drebs <drebs@riseup.net> Date: Tue, 22 Aug 2023 20:07:34 +0000 Subject: [PATCH 078/119] Translated using Weblate (Portuguese) Currently translated at 95.3% (41 of 43 strings) Translation: Tails/wiki/src/install/inc/steps/install_etcher_in_mac.inline.*.po Translate-URL: https://translate.tails.boum.org/projects/tails/wikisrcinstallincstepsinstall_etcher_in_macinlinepo/pt/ --- .../install/inc/steps/install_etcher_in_mac.inline.pt.po | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po index 5abf95e7f21..2f789d028e2 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" "POT-Creation-Date: 2023-08-14 13:52+0200\n" -"PO-Revision-Date: 2023-08-01 15:22+0000\n" +"PO-Revision-Date: 2023-08-22 20:11+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: pt\n" @@ -103,8 +103,9 @@ msgid "" "also [[!toggle id=\"dd\" text=\"install Tails using `dd` on the command\n" "line\"]].\n" msgstr "" -"Em vez de instalar o <span class=\"application\">balenaEtcher</span>, você pode\n" -"também [[!toggle id=\"dd\" text=\"instalar o Tails usando `dd` na linha de\n" +"Em vez de instalar o <span class=\"application\">balenaEtcher</span>, você " +"também\n" +"pode [[!toggle id=\"dd\" text=\"instalar o Tails usando `dd` na linha de\n" "comando\"]].\n" #. type: Plain text -- GitLab From 81b0971e4be86820d77f5054a7afaab2605858d7 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 22 Aug 2023 20:17:58 +0000 Subject: [PATCH 079/119] fix loop over issues --- bin/needed-package-updates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/needed-package-updates b/bin/needed-package-updates index 630a94607d5..84be3543b37 100755 --- a/bin/needed-package-updates +++ b/bin/needed-package-updates @@ -305,7 +305,7 @@ def check_build_manifest( def _log(issues): for source, i in itertools.groupby( - non_forked, key=operator.attrgetter("source") + issues, key=operator.attrgetter("source") ): yield log_group(source, list(i)) -- GitLab From 97c72d08ca7dadb953cad9180245156d6139968f Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Wed, 23 Aug 2023 08:33:02 +0000 Subject: [PATCH 080/119] Test suite: make deleting the Persistent Storage more robust --- features/step_definitions/usb.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index a1498623747..349e1af5175 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -1102,7 +1102,10 @@ When /^I delete the persistent partition$/ do # If we just do delete_btn.click, then dogtail won't find tps-frontend anymore. # That's probably a bug somewhere, and this is a simple workaround - delete_btn.grabFocus + try_for(5) do + delete_btn.grabFocus + delete_btn.focused + end @screen.press('Return') persistent_storage_frontend -- GitLab From 9c490043d9027f466d7a294220e263bf441a1f91 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Wed, 23 Aug 2023 08:34:01 +0000 Subject: [PATCH 081/119] Add comment --- features/step_definitions/usb.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/step_definitions/usb.rb b/features/step_definitions/usb.rb index 349e1af5175..f37832f2bb7 100644 --- a/features/step_definitions/usb.rb +++ b/features/step_definitions/usb.rb @@ -1101,6 +1101,8 @@ When /^I delete the persistent partition$/ do assert delete_btn # If we just do delete_btn.click, then dogtail won't find tps-frontend anymore. + # Related to https://gitlab.gnome.org/GNOME/gtk/-/issues/1281 mentioned + # elsewhere in this file? # That's probably a bug somewhere, and this is a simple workaround try_for(5) do delete_btn.grabFocus -- GitLab From cf4475e158d8f86423f1f63443307a3612ca511d Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Thu, 24 Aug 2023 13:05:38 -0600 Subject: [PATCH 082/119] Update release schedule to current practice Closes #19953 --- wiki/src/contribute/release_schedule.mdwn | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/wiki/src/contribute/release_schedule.mdwn b/wiki/src/contribute/release_schedule.mdwn index 33c50249732..d6282ba72e1 100644 --- a/wiki/src/contribute/release_schedule.mdwn +++ b/wiki/src/contribute/release_schedule.mdwn @@ -7,12 +7,9 @@ Tails has a time-based release schedule, aligned with which itself depends on the [Firefox ESR (Extended Support Release) release schedule](https://whattrainisitnow.com/calendar/). -In the examples below we'll assume a 4-weeks release cycle. -We generally publish 2 or 3 major Tails releases every year. -Between two consecutive major releases, we publish as many bugfix -releases as required by Mozilla's release schedule: generally, -between 1 and 4 bugfix releases. +We publish a new version of Tails on each new release of Firefox, usually every +4 weeks. On top of that, we occasionally publish an extra emergency release in order to quickly fix a critical security vulnerability that became -- GitLab From 4a9d79c54270cd7523c5d5e62cd10430484d7bce Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Thu, 24 Aug 2023 13:19:27 -0600 Subject: [PATCH 083/119] Hide outdated impact section Quick fix for #17776 --- wiki/src/donate.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wiki/src/donate.html b/wiki/src/donate.html index d50f860cb31..72d151136b3 100644 --- a/wiki/src/donate.html +++ b/wiki/src/donate.html @@ -470,6 +470,8 @@ permitted by law.</strong></p> </div> <!-- .row --> +<!-- + <div class="row"> <div class="col-md-12"> @@ -478,7 +480,7 @@ permitted by law.</strong></p> </div> -</div> <!-- .row --> +</div> !-- .row -- <div class="row"> @@ -509,7 +511,9 @@ budget under $350 000.</p> </div> -</div> <!-- .row --> +</div> !-- .row -- + +--> <div id="recommended" class="row"> -- GitLab From 88174ddc8f1999b9f4810c7faf8d5e8048765ace Mon Sep 17 00:00:00 2001 From: IkiWiki <ikiwiki.info> Date: Thu, 24 Aug 2023 19:20:21 +0000 Subject: [PATCH 084/119] updated PO files --- wiki/src/donate.de.po | 832 ++++++++++++++++++++--------------------- wiki/src/donate.es.po | 747 ++++++++++++++++++------------------- wiki/src/donate.fr.po | 848 +++++++++++++++++++++--------------------- wiki/src/donate.it.po | 809 +++++++++++++++++++--------------------- wiki/src/donate.pt.po | 563 ++++++++++++++-------------- wiki/src/donate.ru.po | 691 +++++++++++++++++----------------- 6 files changed, 2167 insertions(+), 2323 deletions(-) diff --git a/wiki/src/donate.de.po b/wiki/src/donate.de.po index ad041ddf67e..38e7cf2dd81 100644 --- a/wiki/src/donate.de.po +++ b/wiki/src/donate.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -26,16 +26,16 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -122,52 +122,50 @@ msgstr "" #. type: Content of: <div><div><div><form> #, fuzzy #| msgid "" -#| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#| "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#| "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#| "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#| "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#| "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#| "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#| "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#| "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#| "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " -#| "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#| "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#| "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#| "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#| "value=\"5\" id=\"amount\"/>" +#| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#| "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#| "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#| "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#| "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#| "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#| "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#| "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#| "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#| "\" type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +#| "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +#| "\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#| "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount" +#| "\" value=\"5\" id=\"amount\"/>" msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" -"thanks/index.de.html\"/> <input type=\"hidden\" name=\"cancel_return\" " -"class=\"return-url\" value=\"https://tails.boum.org/donate/canceled/index.de." -"html\"/> <input name=\"lc\" type=\"hidden\" value=\"DE\"/> <input " -"type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" " -"name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" " -"value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input " -"type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +"\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +"\"https://tails.boum.org/donate/thanks/index.de.html\"/> <input type=\"hidden" +"\" name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." +"org/donate/canceled/index.de.html\"/> <input name=\"lc\" type=\"hidden\" " +"value=\"DE\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> " +"<input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input type=" +"\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" name=\"src\" " +"value=\"1\"/> <input type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount" +"\"/>" #. type: Content of: <div><div><div><form><div><div> msgid "" @@ -204,51 +202,49 @@ msgstr "" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #| "other\"> <span>Other</span>" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\"> " -"<span>Anderer</span>" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\"> <span>Anderer</span>" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" -#| "<span class=\"input-group-addon\">$</span> <input type=\"text\" " -#| "pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\"/>" +#| "<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=" +#| "\"\\d+\" class=\"form-control\" id=\"other-dollar\"/>" msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\"/>" #. type: Content of: <div><div><div><form><div> msgid "</label>" @@ -258,54 +254,53 @@ msgstr "</label>" #, fuzzy #| msgid "" #| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #| "other\"> <span>Other</span>" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\"> " -"<span>Anderer</span>" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\"> <span>Anderer</span>" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy @@ -313,41 +308,40 @@ msgstr "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " #| "id=\"other-euro\"/> <span class=\"input-group-addon\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\"/> <span class=\"input-group-addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\"/> <span class=\"input-group-addon\">€</span>" #. type: Content of: <div><div><div><form><div> #, fuzzy #| msgid "" -#| "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#| "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#| "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#| "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#| "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#| "autocomplete=\"off\" checked/> Yearly </label>" +#| "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#| "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#| "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#| "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#| "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#| "checked/> Yearly </label>" msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" -"<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -"type=\"radio\" autocomplete=\"off\"/> Einmalig </label> <label class=\"btn " -"btn-lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " -"autocomplete=\"off\"/> Monatlich </label> <label class=\"btn btn-lg btn-" -"primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" checked/" -"> Jährlich </label>" +"<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=\"radio" +"\" autocomplete=\"off\"/> Einmalig </label> <label class=\"btn btn-lg btn-" +"primary active\" id=\"monthly\"> <input type=\"radio\" autocomplete=\"off\"/" +"> Monatlich </label> <label class=\"btn btn-lg btn-primary\" id=\"yearly\"> " +"<input type=\"radio\" autocomplete=\"off\" checked/> Jährlich </label>" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Monatliche und jährliche Spenden, auch die kleinsten, sind für die " "Nachhaltigkeit von Tails am wertvollsten. Sie benötigen ein [[!img paypal-" @@ -383,8 +377,8 @@ msgstr "" #| "<strong>Donations are tax-deductible to the full extent permitted by law." #| "</strong>" msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" "<strong>Spenden sind bis zu dem vollen gesetzlich festgelegten Rahmen von " "der Steuer absetzbar.</strong>" @@ -429,101 +423,95 @@ msgstr "Wiederkehrende Spenden" #| msgid "" #| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> " #| "<input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." -#| "net\"/> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#| "value=\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#| "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#| "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " +#| "net\"/> <input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +#| "\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +#| "\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +#| "\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +#| "\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" name=" +#| "\"cancel_return\" class=\"return-url\" value=\"https://tails.boum.org/" +#| "donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " #| "<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " #| "name=\"p3\" value=\"1\"/> <input type=\"radio\" name=\"a3\" value=\"5\" " #| "id=\"sub5\" checked=\"checked\"/><label for=\"sub5\">$5</label> <input " -#| "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label " -#| "for=\"sub10\">$10</label> <input type=\"radio\" name=\"a3\" value=\"20\" " -#| "id=\"sub20\"/><label for=\"sub20\">$20</label> <input type=\"radio\" " -#| "name=\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">$50</label> " -#| "<input type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label " -#| "for=\"sub100\">$100</label> <input type=\"radio\" name=\"a3\" " -#| "value=\"250\" id=\"sub250\"/><label for=\"sub250\">$250</label> <input " -#| "type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label " -#| "for=\"sub500\">$500</label>" +#| "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label for=" +#| "\"sub10\">$10</label> <input type=\"radio\" name=\"a3\" value=\"20\" id=" +#| "\"sub20\"/><label for=\"sub20\">$20</label> <input type=\"radio\" name=" +#| "\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">$50</label> <input " +#| "type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label for=" +#| "\"sub100\">$100</label> <input type=\"radio\" name=\"a3\" value=\"250\" " +#| "id=\"sub250\"/><label for=\"sub250\">$250</label> <input type=\"radio\" " +#| "name=\"a3\" value=\"500\" id=\"sub500\"/><label for=\"sub500\">$500</" +#| "label>" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -"value=\"https://tails.boum.org/donate/thanks/index.de.html\"/> <input " -"type=\"hidden\" name=\"cancel_return\" class=\"return-url\" value=\"https://" -"tails.boum.org/donate/canceled/index.de.html\"/> <input name=\"lc\" " -"type=\"hidden\" value=\"DE\"/> <input type=\"hidden\" name=\"src\" " -"value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " -"type=\"radio\" name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/" -"><label for=\"sub5\">$5</label> <input type=\"radio\" name=\"a3\" " -"value=\"10\" id=\"sub10\"/><label for=\"sub10\">$10</label> <input " -"type=\"radio\" name=\"a3\" value=\"20\" id=\"sub20\"/><label " -"for=\"sub20\">$20</label> <input type=\"radio\" name=\"a3\" value=\"50\" " -"id=\"sub50\"/><label for=\"sub50\">$50</label> <input type=\"radio\" " +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +"\"https://tails.boum.org/donate/thanks/index.de.html\"/> <input type=\"hidden" +"\" name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." +"org/donate/canceled/index.de.html\"/> <input name=\"lc\" type=\"hidden\" " +"value=\"DE\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=" +"\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"radio\" name=\"a3\" value=" +"\"5\" id=\"sub5\" checked=\"checked\"/><label for=\"sub5\">$5</label> <input " +"type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label for=\"sub10\">" +"$10</label> <input type=\"radio\" name=\"a3\" value=\"20\" id=\"sub20\"/" +"><label for=\"sub20\">$20</label> <input type=\"radio\" name=\"a3\" value=" +"\"50\" id=\"sub50\"/><label for=\"sub50\">$50</label> <input type=\"radio\" " "name=\"a3\" value=\"100\" id=\"sub100\"/><label for=\"sub100\">$100</label> " -"<input type=\"radio\" name=\"a3\" value=\"250\" id=\"sub250\"/><label " -"for=\"sub250\">$250</label> <input type=\"radio\" name=\"a3\" value=\"500\" " -"id=\"sub500\"/><label for=\"sub500\">$500</label>" +"<input type=\"radio\" name=\"a3\" value=\"250\" id=\"sub250\"/><label for=" +"\"sub250\">$250</label> <input type=\"radio\" name=\"a3\" value=\"500\" id=" +"\"sub500\"/><label for=\"sub500\">$500</label>" #. type: Content of: <div><div><div><div><form> #, fuzzy #| msgid "" -#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#| "for=\"sub_y\">Yearly</label>" +#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" msgstr "" -"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -"checked=\"checked\"/><label for=\"sub_m\">Monatlich</label> <input " -"type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -"for=\"sub_y\">Jährlich</label>" +"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=\"checked" +"\"/><label for=\"sub_m\">Monatlich</label> <input type=\"radio\" name=\"t3\" " +"value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Jährlich</label>" #. type: Content of: <div><div><div><div><form> #, fuzzy #| msgid "" -#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#| "for=\"sub_y\">Yearly</label>" +#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -"checked=\"checked\"/><label for=\"sub_m\">Monatlich</label> <input " -"type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -"for=\"sub_y\">Jährlich</label>" +"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=\"checked" +"\"/><label for=\"sub_m\">Monatlich</label> <input type=\"radio\" name=\"t3\" " +"value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Jährlich</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -544,93 +532,90 @@ msgstr "Einmalige Spende" #. type: Content of: <div><div><div><div><p> #, fuzzy #| msgid "" -#| "Monthly and yearly donations require a [[!img paypal-inline.png " -#| "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#| "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#| "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" -"Monatliche und jährliche Spenden benötigen ein [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]-Konto." +"Monatliche und jährliche Spenden benötigen ein [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]-Konto." #. Note for translators: adapt the URLs to return to the page in your language. #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> #, fuzzy #| msgid "" -#| "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -#| "type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -#| "<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#| "value=\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#| "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#| "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " -#| "<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" " -#| "checked=\"checked\"/><label for=\"pp_5\">$5</label> <input type=\"radio\" " -#| "name=\"amount\" value=\"10\" id=\"pp_10\"/><label for=\"pp_10\">$10</" -#| "label> <input type=\"radio\" name=\"amount\" value=\"20\" id=\"pp_20\"/" -#| "><label for=\"pp_20\">$20</label> <input type=\"radio\" name=\"amount\" " -#| "value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">$50</label> <input " -#| "type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#| "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#| "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#| "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +#| "\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +#| "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" +#| "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +#| "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden" +#| "\" name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/" +#| "donate/thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=" +#| "\"return-url\" value=\"https://tails.boum.org/donate/canceled\"/> <input " +#| "name=\"lc\" type=\"hidden\" value=\"US\"/> <input type=\"radio\" name=" +#| "\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=" +#| "\"pp_5\">$5</label> <input type=\"radio\" name=\"amount\" value=\"10\" id=" +#| "\"pp_10\"/><label for=\"pp_10\">$10</label> <input type=\"radio\" name=" +#| "\"amount\" value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">$20</label> " +#| "<input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label " +#| "for=\"pp_50\">$50</label> <input type=\"radio\" name=\"amount\" value=" +#| "\"100\" id=\"pp_100\"/><label for=\"pp_100\">$100</label> <input type=" +#| "\"radio\" name=\"amount\" value=\"\" id=\"pp_cust\"/><label for=\"pp_cust" +#| "\">Custom amount</label>" msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -"value=\"https://tails.boum.org/donate/thanks/index.de.html\"/> <input " -"type=\"hidden\" name=\"cancel_return\" class=\"return-url\" value=\"https://" -"tails.boum.org/donate/canceled/index.de.html\"/> <input name=\"lc\" " -"type=\"hidden\" value=\"DE\"/> <input type=\"radio\" name=\"amount\" " -"value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=\"pp_5\">$5</label> " -"<input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/><label " -"for=\"pp_10\">$10</label> <input type=\"radio\" name=\"amount\" value=\"20\" " -"id=\"pp_20\"/><label for=\"pp_20\">$20</label> <input type=\"radio\" " -"name=\"amount\" value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">$50</label> " -"<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -"for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=\"\" " -"id=\"pp_cust\"/><label for=\"pp_cust\">Anderer Betrag</label>" +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +"thanks/index.de.html\"/> <input type=\"hidden\" name=\"cancel_return\" class=" +"\"return-url\" value=\"https://tails.boum.org/donate/canceled/index.de.html" +"\"/> <input name=\"lc\" type=\"hidden\" value=\"DE\"/> <input type=\"radio\" " +"name=\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=" +"\"pp_5\">$5</label> <input type=\"radio\" name=\"amount\" value=\"10\" id=" +"\"pp_10\"/><label for=\"pp_10\">$10</label> <input type=\"radio\" name=" +"\"amount\" value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">$20</label> " +"<input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label for=" +"\"pp_50\">$50</label> <input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/><label for=\"pp_100\">$100</label> <input type=\"radio\" name=" +"\"amount\" value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Anderer Betrag</" +"label>" #. type: Content of: <div><div><div><div><form> #, fuzzy #| msgid "" -#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#| "for=\"sub_y\">Yearly</label>" +#| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" -msgstr "" -"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -"checked=\"checked\"/><label for=\"sub_m\">Monatlich</label> <input " -"type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -"for=\"sub_y\">Jährlich</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" +msgstr "" +"<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=\"checked" +"\"/><label for=\"sub_m\">Monatlich</label> <input type=\"radio\" name=\"t3\" " +"value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Jährlich</label>" #. type: Content of: <div><div><div><div><form> #, fuzzy @@ -667,8 +652,8 @@ msgstr "Bitcoin" #| "bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\"]]</a>" msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " "bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\"]]</a>" @@ -680,8 +665,8 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" #. type: Content of: <div><div><div><div><div><p> @@ -945,7 +930,7 @@ msgid "" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -958,44 +943,6 @@ msgid "" "time improving Tails for our users." msgstr "" -#. type: Content of: <div><div><h3> -#, fuzzy -#| msgid "Our partners" -msgid "Our impact" -msgstr "Unsere Partner" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "" - -#. type: Content of: <div><div><p> -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" - -#. type: Content of: <div><div><p> -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" - -#. type: Content of: <div><div><p> -#, fuzzy -#| msgid "Our financial records are available [[here|doc/about/finances]]." -msgid "See our [[financial records|doc/about/finances]]." -msgstr "Unsere Finanzberichte sind [[hier|doc/about/finances]] einsehbar." - -#. type: Content of: <div><div><div> -#, fuzzy -#| msgid "[[!img expenses.png link=\"no\"]]" -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img expenses.png link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Empfohlen von" @@ -1078,56 +1025,71 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 " +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 " +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 " +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" #~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" -#~| ">$100 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" -#~| ">$150 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" -#~| ">$200 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 other\"> <span>Other</span>" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\"> <span>Anderer</span>" +#, fuzzy +#~| msgid "Our partners" +#~ msgid "Our impact" +#~ msgstr "Unsere Partner" + +#, fuzzy +#~| msgid "Our financial records are available [[here|doc/about/finances]]." +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "Unsere Finanzberichte sind [[hier|doc/about/finances]] einsehbar." + +#, fuzzy +#~| msgid "[[!img expenses.png link=\"no\"]]" +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img expenses.png link=\"no\"]]" + #, fuzzy #~| msgid "US bank account:" #~ msgid "US bank account" @@ -1144,8 +1106,8 @@ msgstr "" #~| "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " #~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" @@ -1186,73 +1148,70 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~| "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~| "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~| "type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#~| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-" -#~| "url\" value=\"https://tails.boum.org/donate/thanks\"/> <input " -#~| "type=\"hidden\" name=\"cancel_return\" class=\"return-url\" " -#~| "value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc\" " -#~| "type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~| "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~| "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~| "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~| "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~| "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~| "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~| "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~| "\" type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " #~| "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" " -#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " -#~| "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -#~| "name=\"amount\" value=\"5\" id=\"amount\"/>" +#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~| "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"custom\" value=\"default\"/> <input " -#~ "type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"return\" value=\"https://tails.boum.org/donate/thanks/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -#~ "value=\"https://tails.boum.org/donate/canceled/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"custom\" value=\"default\"/> <input type=\"hidden\" " +#~ "name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=\"return\" " +#~ "value=\"https://tails.boum.org/donate/thanks/?v=default\" class=\"return-" +#~ "url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://" +#~ "tails.boum.org/donate/canceled/?v=default\" class=\"return-url\"/> <input " +#~ "type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=" +#~ "\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=" +#~ "\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks/index.de.html\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled/index.de.html\"/> <input name=\"lc\" type=\"hidden\" " -#~ "value=\"DE\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> " -#~ "<input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~ "thanks/index.de.html\"/> <input type=\"hidden\" name=\"cancel_return\" " +#~ "class=\"return-url\" value=\"https://tails.boum.org/donate/canceled/index." +#~ "de.html\"/> <input name=\"lc\" type=\"hidden\" value=\"DE\"/> <input type=" +#~ "\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" " +#~ "name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" " +#~ "value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Yearly </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Yearly </label>" #~ msgstr "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Einmalig </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monatlich </label> <label " -#~ "class=\"btn btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Jährlich </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> Einmalig </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monatlich </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Jährlich </label>" #~ msgid "" -#~ "Monthly and yearly donations require a [[!img paypal-inline.png " -#~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#~ "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#~ "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." #~ msgstr "" #~ "Monatliche und jährliche Spenden benötigen ein [[!img paypal-inline.png " #~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]-Konto." @@ -1318,19 +1277,18 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#~| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~| "for=\"sub_y\">Yearly</label>" +#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#~| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" #~ msgid "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~ "checked=\"checked\"/><label for=\"sub_m\">Monatlich</label> <input " -#~ "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~ "for=\"sub_y\">Jährlich</label>" +#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~ "\"checked\"/><label for=\"sub_m\">Monatlich</label> <input type=\"radio\" " +#~ "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Jährlich</" +#~ "label>" #~ msgid "" #~ "We know that secure tools need to be free software to be trustworthy. " @@ -1383,15 +1341,13 @@ msgstr "" #~ msgstr "Flattr" #~ msgid "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgstr "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #, fuzzy #~| msgid "<em>Purpose of transfer</em>: R43NGFR9 TAILS" diff --git a/wiki/src/donate.es.po b/wiki/src/donate.es.po index 3d8f8c0a523..9657bbf88e5 100644 --- a/wiki/src/donate.es.po +++ b/wiki/src/donate.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/src-" @@ -27,16 +27,16 @@ msgstr "[[!meta title=\"Dona para luchar contra la vigilancia y la censura\"]]" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -122,36 +122,34 @@ msgstr "" #. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"ES\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"ES\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" #. type: Content of: <div><div><div><form><div><div> @@ -172,47 +170,45 @@ msgstr "" #. type: Content of: <div><div><div><form><div><label> msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Otro\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Otro\"/>" #. type: Content of: <div><div><div><form><div> msgid "</label>" @@ -222,76 +218,76 @@ msgstr "</label>" #, fuzzy #| msgid "" #| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #| "other\">" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -#| "addon\">€</span>" +#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon" +#| "\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Otro\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Otro\"/> <span class=\"input-group-addon\">€</" +"span>" #. type: Content of: <div><div><div><form><div> msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>Única vez</label> <label class=\"col-sm-4 col-xs-12\"> " @@ -302,8 +298,8 @@ msgstr "" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Las donaciones mensuales y anuales, incluso las más pequeñas, son las más " "valiosas para la sostenibilidad de Tails. Requieren una cuenta de [[!img " @@ -339,8 +335,8 @@ msgstr "" #. type: Content of: <div><div><div><form><p> msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" "<strong>Las donaciones son [[!toggle id=\"tax-deductible\" text=\"deducibles " "de impuestos\"]] dentro de los lÃmites impuestos por la ley</strong>" @@ -385,63 +381,61 @@ msgstr "Donación recurrente" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"ES\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"ES\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" -msgstr "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" +msgstr "" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Mensual</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Anual</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Mensual</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Anual</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -461,64 +455,62 @@ msgstr "Donar por única vez" #. type: Content of: <div><div><div><div><p> msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" -"No requiere una cuenta de [[!img paypal-inline.png link=\"no\" " -"class=\"paypal-inline\" alt=\"PayPal\"]]." +"No requiere una cuenta de [[!img paypal-inline.png link=\"no\" class=" +"\"paypal-inline\" alt=\"PayPal\"]]." #. Note for translators: adapt the URLs to return to the page in your language. #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/index.es.html\" class=\"return-url\"/> <input " -"type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/donate/" -"canceled/index.es.html\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"ES\"/> <label for=\"pp_5\"><input type=\"radio\" " -"name=\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> " -"<label for=\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" " -"id=\"pp_10\"/>$10</label> <label for=\"pp_25\"><input type=\"radio\" " -"name=\"amount\" value=\"25\" id=\"pp_25\"/>$25</label> <label " -"for=\"pp_50\"><input type=\"radio\" name=\"amount\" value=\"50\" " -"id=\"pp_50\"/>$50</label>" +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/index.es.html\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/index.es.html\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"ES\"/> <label for=\"pp_5\"><input " +"type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/>" +"$5</label> <label for=\"pp_10\"><input type=\"radio\" name=\"amount\" value=" +"\"10\" id=\"pp_10\"/>$10</label> <label for=\"pp_25\"><input type=\"radio\" " +"name=\"amount\" value=\"25\" id=\"pp_25\"/>$25</label> <label for=" +"\"pp_50\"><input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/>" +"$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" -msgstr "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" +msgstr "" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" #. type: Content of: <div><div><div><div><form> msgid "<input type=\"submit\" value=\"Donate (one-time)\"/>" @@ -551,12 +543,12 @@ msgstr "Bitcoin" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" @@ -565,12 +557,12 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv</strong>" @@ -864,7 +856,7 @@ msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> #, fuzzy #| msgid "Administration and fundraising" -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "Administración y recaudación" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -879,53 +871,6 @@ msgstr "" "Aprovechamos al máximo el dinero que recibimos porque preferimos dedicar " "nuestro tiempo a mejorar Tails para nuestros usuarios." -#. type: Content of: <div><div><h3> -msgid "Our impact" -msgstr "Nuestro impacto" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "" -"Nuestra mayor satisfacción proviene de la creciente popularidad de Tails." - -#. type: Content of: <div><div><p> -#, fuzzy -#| msgid "" -#| "From the number of automatic upgrades, we know that Tails was used by " -#| "around 30 000 people every day in 2020. This number has been " -#| "steadily growing by 15% each year on average since 2012." -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" -"Por el número de actualizaciones automáticas, sabemos que Tails fue usado " -"por aproximadamente 30 000 personas todos los dÃas en 2020. Este " -"numero ha crecido sostenidamente por un 15% cada año en promedio desde 2012." - -#. type: Content of: <div><div><p> -#, fuzzy -#| msgid "" -#| "We keep people safe more than 10 million times every year, for a budget " -#| "under $300 000." -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" -"Mantenemos a las personas seguras más de 10 millones de veces al año, con un " -"presupuesto inferior a $300 000." - -#. type: Content of: <div><div><p> -msgid "See our [[financial records|doc/about/finances]]." -msgstr "Vea nuestros [[registros contables|doc/about/finances]]." - -#. type: Content of: <div><div><div> -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img users.png alt=\"\" link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "Usuarias diarias desde 2012" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Recomendado por" @@ -1010,56 +955,97 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 " +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 " +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 " +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" #~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" -#~| ">$100 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" -#~| ">$150 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" -#~| ">$200 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 other\">" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" +#~ msgid "Our impact" +#~ msgstr "Nuestro impacto" + +#~ msgid "Our biggest satisfaction comes from the growing popularity of Tails." +#~ msgstr "" +#~ "Nuestra mayor satisfacción proviene de la creciente popularidad de Tails." + +#, fuzzy +#~| msgid "" +#~| "From the number of automatic upgrades, we know that Tails was used by " +#~| "around 30 000 people every day in 2020. This number has been " +#~| "steadily growing by 15% each year on average since 2012." +#~ msgid "" +#~ "From the number of automatic upgrades, we know that Tails was used by " +#~ "around 25 000 people every day in 2022." +#~ msgstr "" +#~ "Por el número de actualizaciones automáticas, sabemos que Tails fue usado " +#~ "por aproximadamente 30 000 personas todos los dÃas en 2020. Este " +#~ "numero ha crecido sostenidamente por un 15% cada año en promedio desde " +#~ "2012." + +#, fuzzy +#~| msgid "" +#~| "We keep people safe more than 10 million times every year, for a budget " +#~| "under $300 000." +#~ msgid "" +#~ "We keep people safe more than 10 million times every year, for a budget " +#~ "under $350 000." +#~ msgstr "" +#~ "Mantenemos a las personas seguras más de 10 millones de veces al año, con " +#~ "un presupuesto inferior a $300 000." + +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "Vea nuestros [[registros contables|doc/about/finances]]." + +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img users.png alt=\"\" link=\"no\"]]" + +#~ msgid "Daily users since 2012" +#~ msgstr "Usuarias diarias desde 2012" + #~ msgid "" #~ "In 2019–2020, we simplified the installation procedure for Windows " #~ "and macOS, added support for Secure Boot, improved the upgrade process, " @@ -1120,8 +1106,8 @@ msgstr "" #~| "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " #~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" @@ -1170,73 +1156,70 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~| "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~| "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~| "type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#~| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-" -#~| "url\" value=\"https://tails.boum.org/donate/thanks\"/> <input " -#~| "type=\"hidden\" name=\"cancel_return\" class=\"return-url\" " -#~| "value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc\" " -#~| "type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~| "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~| "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~| "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~| "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~| "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~| "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~| "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~| "\" type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " #~| "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" " -#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " -#~| "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -#~| "name=\"amount\" value=\"5\" id=\"amount\"/>" +#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~| "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"custom\" value=\"default\"/> <input " -#~ "type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"return\" value=\"https://tails.boum.org/donate/thanks/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -#~ "value=\"https://tails.boum.org/donate/canceled/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"custom\" value=\"default\"/> <input type=\"hidden\" " +#~ "name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=\"return\" " +#~ "value=\"https://tails.boum.org/donate/thanks/?v=default\" class=\"return-" +#~ "url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://" +#~ "tails.boum.org/donate/canceled/?v=default\" class=\"return-url\"/> <input " +#~ "type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=" +#~ "\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=" +#~ "\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"ES\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~ "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~ "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~ "\" type=\"hidden\" value=\"ES\"/> <input type=\"hidden\" name=\"a3\" " +#~ "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +#~ "\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~ "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount" +#~ "\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Yearly </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Yearly </label>" #~ msgstr "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Única vez </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Mensual </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Anual </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> Única vez </label> <label class=\"btn " +#~ "btn-lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Mensual </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Anual </label>" #~ msgid "" -#~ "Monthly and yearly donations require a [[!img paypal-inline.png " -#~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#~ "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#~ "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." #~ msgstr "" #~ "Donaciones mensuales y anuales requieren una cuenta de [[!img paypal-" #~ "inline.png link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]." @@ -1333,19 +1316,17 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#~| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~| "for=\"sub_y\">Yearly</label>" +#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#~| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" #~ msgid "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~ "checked=\"checked\"/><label for=\"sub_m\">Mensual</label> <input " -#~ "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~ "for=\"sub_y\">Anual</label>" +#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~ "\"checked\"/><label for=\"sub_m\">Mensual</label> <input type=\"radio\" " +#~ "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Anual</label>" #~ msgid "" #~ "We know that secure tools need to be free software to be trustworthy. " @@ -1396,34 +1377,32 @@ msgstr "" #~ msgstr "Flattr" #~ msgid "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgstr "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "esto\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr esto\"]]</a>" #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgid "</a>" #~ msgstr "</a>" #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> " -#~ "(March 13 – April 10 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> (March 13 " +#~ "– April 10 2018)" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\"> Dona a través del desafÃo DuckDuckGo.</a> (entre el 13 " -#~ "de marzo – el 10 de abril de 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\"> Dona a través del desafÃo DuckDuckGo.</a> (entre el 13 de " +#~ "marzo – el 10 de abril de 2018)" #~ msgid "" #~ "<strong>Increase the impact of your donation</strong>: donating via the " diff --git a/wiki/src/donate.fr.po b/wiki/src/donate.fr.po index 787e48295b6..2a2284698fa 100644 --- a/wiki/src/donate.fr.po +++ b/wiki/src/donate.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2023-01-04 21:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -27,16 +27,16 @@ msgstr "" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -115,36 +115,34 @@ msgstr "" #. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" #. type: Content of: <div><div><div><form><div><div> @@ -165,138 +163,118 @@ msgstr "" #. type: Content of: <div><div><div><form><div><label> msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5$ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10$ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25$ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50$ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100$ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150$ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200$ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5$ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10$ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25$ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50$ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100$ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150$ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200$ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Autre\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Autre\"/>" #. type: Content of: <div><div><div><form><div> msgid "</label>" msgstr "</label>" #. type: Content of: <div><div><div><form><div><label> -#, fuzzy -#| msgid "" -#| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "other\">" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -#| "addon\">€</span>" +#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon" +#| "\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Autre\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Autre\"/> <span class=\"input-group-addon\">€</" +"span>" #. type: Content of: <div><div><div><form><div> msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>Ponctuel</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Mensuel</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Annuel</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Annuel</label>" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Les dons mensuels et annuels, même les plus petits, sont les plus précieux " "pour la durabilité de Tails. Ils nécessitent un compte [[!img paypal-inline." @@ -333,8 +311,8 @@ msgstr "" #. type: Content of: <div><div><div><form><p> msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" "<strong>Les dons sont [[!toggle id=\"tax-deductible\" text=\"déductibles des " "impôts\"]] dans les limites prévues par la loi.</strong>" @@ -379,65 +357,63 @@ msgstr "Don régulier" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> \n" -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Dons pour Tails\"/> \n" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=\"Dons " +"pour Tails\"/> \n" "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> \n" +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> \n" "<input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" "donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " "value=\"US\"/> \n" "<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" name=" +"\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label for=" +"\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</" +"label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" " +"id=\"sub25\"/>$25</label> <label for=\"sub50\"><input type=\"radio\" name=" +"\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" msgstr "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Mensuel</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Annuel</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Mensuel</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Annuel</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -457,65 +433,64 @@ msgstr "Don ponctuel" #. type: Content of: <div><div><div><div><p> msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" -"Ne nécessite pas un compte [[!img paypal-inline.png link=\"no\" " -"class=\"paypal-inline\" alt=\"PayPal\"]]." +"Ne nécessite pas un compte [[!img paypal-inline.png link=\"no\" class=" +"\"paypal-inline\" alt=\"PayPal\"]]." #. Note for translators: adapt the URLs to return to the page in your language. #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> \n" -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Dons pour Tails\"/> \n" +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> \n" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=\"Dons " +"pour Tails\"/> \n" "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> \n" +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> \n" "<input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" "donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " "value=\"US\"/> <label for=\"pp_5\">\n" -"<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" " -"checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input type=\"radio\" " -"name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " -"name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" +"<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" checked=" +"\"checked\"/>$5</label> <label for=\"pp_10\"><input type=\"radio\" name=" +"\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label for=" +"\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" id=\"pp_25\"/>" +"$25</label> <label for=\"pp_50\"><input type=\"radio\" name=\"amount\" value=" +"\"50\" id=\"pp_50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" msgstr "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Montant personnalisé</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Montant personnalisé</label>" #. type: Content of: <div><div><div><div><form> msgid "<input type=\"submit\" value=\"Donate (one-time)\"/>" @@ -534,8 +509,8 @@ msgid "" "If you need a donation receipt, contact us at <a href=\"mailto:tails-" "fundraising@boum.org\">tails-fundraising@boum.org</a>." msgstr "" -"Si vous avez besoin d'un reçu pour votre don, contactez-nous sur <a " -"href=\"mailto:tails-fundraising@boum.org\">tails-fundraising@boum.org</a>." +"Si vous avez besoin d'un reçu pour votre don, contactez-nous sur <a href=" +"\"mailto:tails-fundraising@boum.org\">tails-fundraising@boum.org</a>." #. type: Content of: <div><div><div><h3> msgid "Other ways to donate" @@ -548,12 +523,12 @@ msgstr "Bitcoin" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" @@ -562,12 +537,12 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv</strong>" @@ -856,7 +831,7 @@ msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> #, fuzzy #| msgid "Administration and fundraising" -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "Administration et financement" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -872,43 +847,6 @@ msgstr "" "préférons passer notre temps pour améliorer Tails pour les personnes qui " "l'utilise." -#. type: Content of: <div><div><h3> -msgid "Our impact" -msgstr "Notre impact" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "" -"Notre plus grande satisfaction provient de la popularité croissante de Tails." - -#. type: Content of: <div><div><p> -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" -"A partir du nombre de mises à jour automatiques, nous savons que Tails a été " -"utilisé par environ 25 000 personnes chaque jour en 2022." - -#. type: Content of: <div><div><p> -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" -"Nous gardons des personnes en sécurité plus de 10 million de fois par an, " -"pour un budget inférieur à 350 000$." - -#. type: Content of: <div><div><p> -msgid "See our [[financial records|doc/about/finances]]." -msgstr "Voir nos [[rapports financiers|doc/about/finances]]." - -#. type: Content of: <div><div><div> -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img users.png alt=\"\" link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "Personnes utilisant Tails quotidiennement depuis 2012" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Recommandé par" @@ -984,21 +922,39 @@ msgid "Come talk to us and [[become a sponsor|sponsors/become]] yourself!" msgstr "" "Venez discuter avec nous et vous-même [[devenez sponsor|sponsors/become]] !" +#, fuzzy +#~| msgid "" +#~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 other\">" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" @@ -1019,6 +975,37 @@ msgstr "" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" +#~ msgid "Our impact" +#~ msgstr "Notre impact" + +#~ msgid "Our biggest satisfaction comes from the growing popularity of Tails." +#~ msgstr "" +#~ "Notre plus grande satisfaction provient de la popularité croissante de " +#~ "Tails." + +#~ msgid "" +#~ "From the number of automatic upgrades, we know that Tails was used by " +#~ "around 25 000 people every day in 2022." +#~ msgstr "" +#~ "A partir du nombre de mises à jour automatiques, nous savons que Tails a " +#~ "été utilisé par environ 25 000 personnes chaque jour en 2022." + +#~ msgid "" +#~ "We keep people safe more than 10 million times every year, for a budget " +#~ "under $350 000." +#~ msgstr "" +#~ "Nous gardons des personnes en sécurité plus de 10 million de fois par an, " +#~ "pour un budget inférieur à 350 000$." + +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "Voir nos [[rapports financiers|doc/about/finances]]." + +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img users.png alt=\"\" link=\"no\"]]" + +#~ msgid "Daily users since 2012" +#~ msgstr "Personnes utilisant Tails quotidiennement depuis 2012" + #~ msgid "" #~ "In 2019–2020, we simplified the installation procedure for Windows " #~ "and macOS, added support for Secure Boot, improved the upgrade process, " @@ -1079,12 +1066,12 @@ msgstr "" #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgid "<strong>3QirvVRntoascPfTgNTUQvKxfKwPah5FNK</strong>" #~ msgstr "<strong>3QirvVRntoascPfTgNTUQvKxfKwPah5FNK</strong>" @@ -1124,73 +1111,70 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~| "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~| "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~| "type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#~| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-" -#~| "url\" value=\"https://tails.boum.org/donate/thanks\"/> <input " -#~| "type=\"hidden\" name=\"cancel_return\" class=\"return-url\" " -#~| "value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc\" " -#~| "type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~| "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~| "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~| "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~| "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~| "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~| "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~| "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~| "\" type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " #~| "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" " -#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " -#~| "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -#~| "name=\"amount\" value=\"5\" id=\"amount\"/>" +#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~| "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"custom\" value=\"default\"/> <input " -#~ "type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"return\" value=\"https://tails.boum.org/donate/thanks/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -#~ "value=\"https://tails.boum.org/donate/canceled/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"custom\" value=\"default\"/> <input type=\"hidden\" " +#~ "name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=\"return\" " +#~ "value=\"https://tails.boum.org/donate/thanks/?v=default\" class=\"return-" +#~ "url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://" +#~ "tails.boum.org/donate/canceled/?v=default\" class=\"return-url\"/> <input " +#~ "type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=" +#~ "\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=" +#~ "\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks/index.fr.html\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled/index.fr.html\"/> <input name=\"lc\" type=\"hidden\" " -#~ "value=\"FR\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> " -#~ "<input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~ "thanks/index.fr.html\"/> <input type=\"hidden\" name=\"cancel_return\" " +#~ "class=\"return-url\" value=\"https://tails.boum.org/donate/canceled/index." +#~ "fr.html\"/> <input name=\"lc\" type=\"hidden\" value=\"FR\"/> <input type=" +#~ "\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" " +#~ "name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" " +#~ "value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Yearly </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Yearly </label>" #~ msgstr "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Ponctuel </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Mensuel </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Annuel </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> Ponctuel </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Mensuel </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Annuel </label>" #~ msgid "" -#~ "Monthly and yearly donations require a [[!img paypal-inline.png " -#~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#~ "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#~ "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." #~ msgstr "" #~ "Les dons mensuels et annuels nécessitent un compte [[!img paypal-inline." #~ "png link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]." @@ -1284,13 +1268,12 @@ msgstr "" #~ msgid "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgstr "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">100$</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Montant personnalisé</" -#~ "label>" +#~ "for=\"pp_100\">100$</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Montant personnalisé</label>" #~ msgid "Cash" #~ msgstr "Espèces" @@ -1374,34 +1357,32 @@ msgstr "" #~ msgstr "Flattr" #~ msgid "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgstr "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/fr/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/fr/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgid "</a>" #~ msgstr "</a>" #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> " -#~ "(March 13 – April 10 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> (March 13 " +#~ "– April 10 2018)" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/fr/campaign/tails-live\" " -#~ "target=\"_blank\"> Faire un don via le DuckDuckGo donation challenge.</a> " -#~ "(13 mars – 10 avril 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/fr/campaign/tails-live\" target=" +#~ "\"_blank\"> Faire un don via le DuckDuckGo donation challenge.</a> (13 " +#~ "mars – 10 avril 2018)" #~ msgid "" #~ "<strong>Increase the impact of your donation</strong>: donating via the " @@ -1456,87 +1437,86 @@ msgstr "" #~ msgid "" #~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> " #~ "<input type=\"hidden\" name=\"business\" value=\"tails@torservers.net\"/> " -#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" " -#~ "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~ "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~ "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#~ "value=\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " +#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=" +#~ "\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +#~ "\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +#~ "\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +#~ "\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" name=" +#~ "\"cancel_return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " #~ "<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " #~ "name=\"p3\" value=\"1\"/> <input type=\"radio\" name=\"a3\" value=\"5\" " #~ "id=\"sub5\" checked=\"checked\"/><label for=\"sub5\">5€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label " -#~ "for=\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" " -#~ "id=\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" " -#~ "name=\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> " -#~ "<input type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label " -#~ "for=\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" " -#~ "value=\"250\" id=\"sub250\"/><label for=\"sub250\">250€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label " -#~ "for=\"sub500\">500€</label>" +#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label for=" +#~ "\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" id=" +#~ "\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" name=" +#~ "\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> <input " +#~ "type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label for=" +#~ "\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" value=\"250\" " +#~ "id=\"sub250\"/><label for=\"sub250\">250€</label> <input type=\"radio\" " +#~ "name=\"a3\" value=\"500\" id=\"sub500\"/><label for=\"sub500\">500€</" +#~ "label>" #~ msgstr "" #~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> " #~ "<input type=\"hidden\" name=\"business\" value=\"tails@torservers.net\"/> " -#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" " -#~ "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~ "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~ "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#~ "value=\"https://tails.boum.org/donate/thanks/index.fr.html\"/> <input " -#~ "type=\"hidden\" name=\"cancel_return\" class=\"return-url\" " -#~ "value=\"https://tails.boum.org/donate/canceled/index.fr.html\"/> <input " -#~ "name=\"lc\" type=\"hidden\" value=\"FR\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/" -#~ "> <input type=\"radio\" name=\"a3\" value=\"5\" id=\"sub5\" " -#~ "checked=\"checked\"/><label for=\"sub5\">5€</label> <input type=\"radio\" " -#~ "name=\"a3\" value=\"10\" id=\"sub10\"/><label for=\"sub10\">10€</label> " -#~ "<input type=\"radio\" name=\"a3\" value=\"20\" id=\"sub20\"/><label " -#~ "for=\"sub20\">20€</label> <input type=\"radio\" name=\"a3\" value=\"50\" " -#~ "id=\"sub50\"/><label for=\"sub50\">50€</label> <input type=\"radio\" " -#~ "name=\"a3\" value=\"100\" id=\"sub100\"/><label for=\"sub100\">100€</" -#~ "label> <input type=\"radio\" name=\"a3\" value=\"250\" id=\"sub250\"/" -#~ "><label for=\"sub250\">250€</label> <input type=\"radio\" name=\"a3\" " -#~ "value=\"500\" id=\"sub500\"/><label for=\"sub500\">500€</label>" +#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=" +#~ "\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +#~ "\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +#~ "\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +#~ "\"https://tails.boum.org/donate/thanks/index.fr.html\"/> <input type=" +#~ "\"hidden\" name=\"cancel_return\" class=\"return-url\" value=\"https://" +#~ "tails.boum.org/donate/canceled/index.fr.html\"/> <input name=\"lc\" type=" +#~ "\"hidden\" value=\"FR\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/" +#~ "> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"radio\" " +#~ "name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/><label for=" +#~ "\"sub5\">5€</label> <input type=\"radio\" name=\"a3\" value=\"10\" id=" +#~ "\"sub10\"/><label for=\"sub10\">10€</label> <input type=\"radio\" name=" +#~ "\"a3\" value=\"20\" id=\"sub20\"/><label for=\"sub20\">20€</label> <input " +#~ "type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/><label for=" +#~ "\"sub50\">50€</label> <input type=\"radio\" name=\"a3\" value=\"100\" id=" +#~ "\"sub100\"/><label for=\"sub100\">100€</label> <input type=\"radio\" name=" +#~ "\"a3\" value=\"250\" id=\"sub250\"/><label for=\"sub250\">250€</label> " +#~ "<input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label for=" +#~ "\"sub500\">500€</label>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -#~ "type=\"hidden\" name='business' value=\"tails@torservers.net\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " -#~ "<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" " -#~ "checked=\"checked\"/><label for=\"pp_5\">5€</label> <input type=\"radio\" " -#~ "name=\"amount\" value=\"10\" id=\"pp_10\"/><label for=\"pp_10\">10€</" -#~ "label> <input type=\"radio\" name=\"amount\" value=\"20\" id=\"pp_20\"/" -#~ "><label for=\"pp_20\">20€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">50€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">100€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +#~ "\"hidden\" name='business' value=\"tails@torservers.net\"/> <input type=" +#~ "\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/> " +#~ "<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden" +#~ "\" name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=" +#~ "\"return-url\" value=\"https://tails.boum.org/donate/canceled\"/> <input " +#~ "name=\"lc\" type=\"hidden\" value=\"US\"/> <input type=\"radio\" name=" +#~ "\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=" +#~ "\"pp_5\">5€</label> <input type=\"radio\" name=\"amount\" value=\"10\" id=" +#~ "\"pp_10\"/><label for=\"pp_10\">10€</label> <input type=\"radio\" name=" +#~ "\"amount\" value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">20€</label> " +#~ "<input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label " +#~ "for=\"pp_50\">50€</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"100\" id=\"pp_100\"/><label for=\"pp_100\">100€</label> <input type=" +#~ "\"radio\" name=\"amount\" value=\"\" id=\"pp_cust\"/><label for=\"pp_cust" +#~ "\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -#~ "type=\"hidden\" name='business' value=\"tails@torservers.net\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks/index.fr.html\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled/index.fr.html\"/> <input name=\"lc\" type=\"hidden\" " -#~ "value=\"FR\"/> <input type=\"radio\" name=\"amount\" value=\"5\" " -#~ "id=\"pp_5\" checked=\"checked\"/><label for=\"pp_5\">5€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/><label " -#~ "for=\"pp_10\">10€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">20€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label " -#~ "for=\"pp_50\">50€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"100\" id=\"pp_100\"/><label for=\"pp_100\">100€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"\" id=\"pp_cust\"/><label " -#~ "for=\"pp_cust\">Custom amount</label>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +#~ "\"hidden\" name='business' value=\"tails@torservers.net\"/> <input type=" +#~ "\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/> " +#~ "<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden" +#~ "\" name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/thanks/index.fr.html\"/> <input type=\"hidden\" name=" +#~ "\"cancel_return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/canceled/index.fr.html\"/> <input name=\"lc\" type=\"hidden\" " +#~ "value=\"FR\"/> <input type=\"radio\" name=\"amount\" value=\"5\" id=" +#~ "\"pp_5\" checked=\"checked\"/><label for=\"pp_5\">5€</label> <input type=" +#~ "\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/><label for=" +#~ "\"pp_10\">10€</label> <input type=\"radio\" name=\"amount\" value=\"20\" " +#~ "id=\"pp_20\"/><label for=\"pp_20\">20€</label> <input type=\"radio\" name=" +#~ "\"amount\" value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">50€</label> " +#~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " +#~ "for=\"pp_100\">100€</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgid "<strong>Zwiebelfreunde e.V.</strong>" #~ msgstr "<strong>Zwiebelfreunde e.V.</strong>" diff --git a/wiki/src/donate.it.po b/wiki/src/donate.it.po index 210f1ff808e..06430393b6b 100644 --- a/wiki/src/donate.it.po +++ b/wiki/src/donate.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -26,16 +26,16 @@ msgstr "[[!meta title=\"Donate per combattere la sorveglianza e la censura\"]]" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -120,36 +120,34 @@ msgstr "" #. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" #. type: Content of: <div><div><div><form><div><div> @@ -169,43 +167,42 @@ msgstr "" #. type: Content of: <div><div><div><form><div><label> msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" "<span class=\"input-group-addon\">$</span><input type=\"text\" pattern=\"\\d+" "\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Altro\"/>" @@ -218,88 +215,88 @@ msgstr "</label>" #, fuzzy #| msgid "" #| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #| "other\">" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" -msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +msgstr "" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -#| "addon\">€</span>" +#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon" +#| "\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Altro\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Altro\"/> <span class=\"input-group-addon\">€</" +"span>" #. type: Content of: <div><div><div><form><div> msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>Una volta</label> <label class=\"col-sm-4 col-" "xs-12\"><input type=\"radio\" name=\"frequency\" id=\"monthly\"/" -">Mensilmente</label> <label class=\"col-sm-4 col-xs-12\"><input " -"type=\"radio\" name=\"frequency\" id=\"yearly\"/>Annualmente</label>" +">Mensilmente</label> <label class=\"col-sm-4 col-xs-12\"><input type=\"radio" +"\" name=\"frequency\" id=\"yearly\"/>Annualmente</label>" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Le donazioni mensili e annuali, anche le più piccole, sono le più preziose " "per la sostenibilità di Tails. Richiedono un conto [[!img paypal-inline.png " @@ -334,11 +331,11 @@ msgstr "" #. type: Content of: <div><div><div><form><p> msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" -"<strong>Le donazioni sono interamente [[!toggle id=\"tax-deductible\" " -"text=\"deducibili dalle tasse\"]] a norma di legge.</strong>" +"<strong>Le donazioni sono interamente [[!toggle id=\"tax-deductible\" text=" +"\"deducibili dalle tasse\"]] a norma di legge.</strong>" #. type: Content of: <div><div><div><form><p> msgid "" @@ -380,63 +377,61 @@ msgstr "Donazione ricorrente" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" -msgstr "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" +msgstr "" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Mensilmente</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Mensilmente</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -456,63 +451,61 @@ msgstr "Una singola donazione" #. type: Content of: <div><div><div><div><p> msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" -"Non richiedono un [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Non richiedono un [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." #. Note for translators: adapt the URLs to return to the page in your language. #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" -msgstr "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"somma\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"somma\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"somma\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"somma\" value=\"\" id=\"pp_cust\"/>Somma personale</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" +msgstr "" +"<label for=\"pp_100\"><input type=\"radio\" name=\"somma\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"somma\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"somma\" value=\"200\" id=\"pp_200\"/>" +"$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"somma\" " +"value=\"\" id=\"pp_cust\"/>Somma personale</label>" #. type: Content of: <div><div><div><div><form> msgid "<input type=\"submit\" value=\"Donate (one-time)\"/>" @@ -545,12 +538,12 @@ msgstr "Bitcoin" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" @@ -559,12 +552,12 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv</strong>" @@ -823,7 +816,7 @@ msgid "" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -836,38 +829,6 @@ msgid "" "time improving Tails for our users." msgstr "" -#. type: Content of: <div><div><h3> -msgid "Our impact" -msgstr "Il nostro impatto" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "" - -#. type: Content of: <div><div><p> -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" - -#. type: Content of: <div><div><p> -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" - -#. type: Content of: <div><div><p> -msgid "See our [[financial records|doc/about/finances]]." -msgstr "Guarda i nostri [[report finanziari|doc/about/finances]]." - -#. type: Content of: <div><div><div> -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img users.png alt=\"\" link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Raccomandato da" @@ -944,56 +905,65 @@ msgstr "" #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 " +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 " +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 " +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" #~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" -#~| ">$100 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" -#~| ">$150 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" -#~| ">$200 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 other\">" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" +#~ msgid "Our impact" +#~ msgstr "Il nostro impatto" + +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "Guarda i nostri [[report finanziari|doc/about/finances]]." + +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img users.png alt=\"\" link=\"no\"]]" + #~ msgid "(36%)" #~ msgstr "(36%)" @@ -1040,8 +1010,8 @@ msgstr "" #~| "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " #~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" @@ -1060,73 +1030,70 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~| "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~| "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~| "type=\"hidden\" name=\"currency_code\" value=\"USD\" " -#~| "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~| "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~| "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-" -#~| "url\" value=\"https://tails.boum.org/donate/thanks\"/> <input " -#~| "type=\"hidden\" name=\"cancel_return\" class=\"return-url\" " -#~| "value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc\" " -#~| "type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +#~| "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~| "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~| "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~| "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~| "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~| "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~| "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~| "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~| "\" type=\"hidden\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " #~| "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" " -#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " -#~| "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -#~| "name=\"amount\" value=\"5\" id=\"amount\"/>" +#~| "id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~| "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~| "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"custom\" value=\"default\"/> <input " -#~ "type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"return\" value=\"https://tails.boum.org/donate/thanks/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -#~ "value=\"https://tails.boum.org/donate/canceled/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"custom\" value=\"default\"/> <input type=\"hidden\" " +#~ "name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=\"return\" " +#~ "value=\"https://tails.boum.org/donate/thanks/?v=default\" class=\"return-" +#~ "url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://" +#~ "tails.boum.org/donate/canceled/?v=default\" class=\"return-url\"/> <input " +#~ "type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=" +#~ "\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=" +#~ "\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"IT\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~ "thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=\"return-" +#~ "url\" value=\"https://tails.boum.org/donate/canceled\"/> <input name=\"lc" +#~ "\" type=\"hidden\" value=\"IT\"/> <input type=\"hidden\" name=\"a3\" " +#~ "value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +#~ "\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +#~ "\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount" +#~ "\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Yearly </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Yearly </label>" #~ msgstr "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/>Una volta</label> <label class=\"btn " -#~ "btn-lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/>Una volta</label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " #~ "autocomplete=\"off\"/> Mensilmente </label> <label class=\"btn btn-lg btn-" #~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " #~ "checked/>Annualmente </label>" #~ msgid "" -#~ "Monthly and yearly donations require a [[!img paypal-inline.png " -#~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#~ "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#~ "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." #~ msgstr "" #~ "Le donazioni mensili ed annuali necessitano di un account [[!img paypal-" #~ "inline.png link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]." @@ -1176,19 +1143,17 @@ msgstr "" #, fuzzy #~| msgid "" -#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~| "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#~| "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~| "for=\"sub_y\">Yearly</label>" +#~| "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~| "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#~| "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Yearly</label>" #~ msgid "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~ "checked=\"checked\"/><label for=\"sub_m\">Monthly</label> <input " -#~ "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~ "for=\"sub_y\">Annuale</label>" +#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~ "\"checked\"/><label for=\"sub_m\">Monthly</label> <input type=\"radio\" " +#~ "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Annuale</label>" #~ msgid "Germany" #~ msgstr "Germany" @@ -1226,15 +1191,13 @@ msgstr "" #~ msgstr "Flattr" #~ msgid "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgstr "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #, fuzzy #~| msgid "<em>Purpose of transfer</em>: Donation to Tails" @@ -1263,86 +1226,86 @@ msgstr "" #~ msgid "" #~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> " #~ "<input type=\"hidden\" name=\"business\" value=\"tails@torservers.net\"/> " -#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" " -#~ "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~ "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~ "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#~ "value=\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " +#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=" +#~ "\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +#~ "\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +#~ "\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +#~ "\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" name=" +#~ "\"cancel_return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " #~ "<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " #~ "name=\"p3\" value=\"1\"/> <input type=\"radio\" name=\"a3\" value=\"5\" " #~ "id=\"sub5\" checked=\"checked\"/><label for=\"sub5\">5€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label " -#~ "for=\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" " -#~ "id=\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" " -#~ "name=\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> " -#~ "<input type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label " -#~ "for=\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" " -#~ "value=\"250\" id=\"sub250\"/><label for=\"sub250\">250€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label " -#~ "for=\"sub500\">500€</label>" +#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label for=" +#~ "\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" id=" +#~ "\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" name=" +#~ "\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> <input " +#~ "type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label for=" +#~ "\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" value=\"250\" " +#~ "id=\"sub250\"/><label for=\"sub250\">250€</label> <input type=\"radio\" " +#~ "name=\"a3\" value=\"500\" id=\"sub500\"/><label for=\"sub500\">500€</" +#~ "label>" #~ msgstr "" #~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> " #~ "<input type=\"hidden\" name=\"business\" value=\"tails@torservers.net\"/> " -#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" " -#~ "id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -#~ "value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -#~ "value=\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" " -#~ "value=\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"IT\"/> " +#~ "<input type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=" +#~ "\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +#~ "\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=" +#~ "\"1\"/> <input type=\"hidden\" name=\"return\" class=\"return-url\" value=" +#~ "\"https://tails.boum.org/donate/thanks\"/> <input type=\"hidden\" name=" +#~ "\"cancel_return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"IT\"/> " #~ "<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " #~ "name=\"p3\" value=\"1\"/> <input type=\"radio\" name=\"a3\" value=\"5\" " #~ "id=\"sub5\" checked=\"checked\"/><label for=\"sub5\">5€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label " -#~ "for=\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" " -#~ "id=\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" " -#~ "name=\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> " -#~ "<input type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label " -#~ "for=\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" " -#~ "value=\"250\" id=\"sub250\"/><label for=\"sub250\">250€</label> <input " -#~ "type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/><label " -#~ "for=\"sub500\">500€</label>" +#~ "type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/><label for=" +#~ "\"sub10\">10€</label> <input type=\"radio\" name=\"a3\" value=\"20\" id=" +#~ "\"sub20\"/><label for=\"sub20\">20€</label> <input type=\"radio\" name=" +#~ "\"a3\" value=\"50\" id=\"sub50\"/><label for=\"sub50\">50€</label> <input " +#~ "type=\"radio\" name=\"a3\" value=\"100\" id=\"sub100\"/><label for=" +#~ "\"sub100\">100€</label> <input type=\"radio\" name=\"a3\" value=\"250\" " +#~ "id=\"sub250\"/><label for=\"sub250\">250€</label> <input type=\"radio\" " +#~ "name=\"a3\" value=\"500\" id=\"sub500\"/><label for=\"sub500\">500€</" +#~ "label>" #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -#~ "type=\"hidden\" name='business' value=\"tails@torservers.net\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"US\"/> " -#~ "<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" " -#~ "checked=\"checked\"/><label for=\"pp_5\">5€</label> <input type=\"radio\" " -#~ "name=\"amount\" value=\"10\" id=\"pp_10\"/><label for=\"pp_10\">10€</" -#~ "label> <input type=\"radio\" name=\"amount\" value=\"20\" id=\"pp_20\"/" -#~ "><label for=\"pp_20\">20€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">50€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">100€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +#~ "\"hidden\" name='business' value=\"tails@torservers.net\"/> <input type=" +#~ "\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/> " +#~ "<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden" +#~ "\" name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=" +#~ "\"return-url\" value=\"https://tails.boum.org/donate/canceled\"/> <input " +#~ "name=\"lc\" type=\"hidden\" value=\"US\"/> <input type=\"radio\" name=" +#~ "\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=" +#~ "\"pp_5\">5€</label> <input type=\"radio\" name=\"amount\" value=\"10\" id=" +#~ "\"pp_10\"/><label for=\"pp_10\">10€</label> <input type=\"radio\" name=" +#~ "\"amount\" value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">20€</label> " +#~ "<input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label " +#~ "for=\"pp_50\">50€</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"100\" id=\"pp_100\"/><label for=\"pp_100\">100€</label> <input type=" +#~ "\"radio\" name=\"amount\" value=\"\" id=\"pp_cust\"/><label for=\"pp_cust" +#~ "\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -#~ "type=\"hidden\" name='business' value=\"tails@torservers.net\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled\"/> <input name=\"lc\" type=\"hidden\" value=\"IT\"/> " -#~ "<input type=\"radio\" name=\"amount\" value=\"5\" id=\"pp_5\" " -#~ "checked=\"checked\"/><label for=\"pp_5\">5€</label> <input type=\"radio\" " -#~ "name=\"amount\" value=\"10\" id=\"pp_10\"/><label for=\"pp_10\">10€</" -#~ "label> <input type=\"radio\" name=\"amount\" value=\"20\" id=\"pp_20\"/" -#~ "><label for=\"pp_20\">20€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"50\" id=\"pp_50\"/><label for=\"pp_50\">50€</label> <input " -#~ "type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">100€</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +#~ "\"hidden\" name='business' value=\"tails@torservers.net\"/> <input type=" +#~ "\"hidden\" name=\"currency_code\" value=\"EUR\" id=\"currency_code\"/> " +#~ "<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden" +#~ "\" name=\"return\" class=\"return-url\" value=\"https://tails.boum.org/" +#~ "donate/thanks\"/> <input type=\"hidden\" name=\"cancel_return\" class=" +#~ "\"return-url\" value=\"https://tails.boum.org/donate/canceled\"/> <input " +#~ "name=\"lc\" type=\"hidden\" value=\"IT\"/> <input type=\"radio\" name=" +#~ "\"amount\" value=\"5\" id=\"pp_5\" checked=\"checked\"/><label for=" +#~ "\"pp_5\">5€</label> <input type=\"radio\" name=\"amount\" value=\"10\" id=" +#~ "\"pp_10\"/><label for=\"pp_10\">10€</label> <input type=\"radio\" name=" +#~ "\"amount\" value=\"20\" id=\"pp_20\"/><label for=\"pp_20\">20€</label> " +#~ "<input type=\"radio\" name=\"amount\" value=\"50\" id=\"pp_50\"/><label " +#~ "for=\"pp_50\">50€</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"100\" id=\"pp_100\"/><label for=\"pp_100\">100€</label> <input type=" +#~ "\"radio\" name=\"amount\" value=\"\" id=\"pp_cust\"/><label for=\"pp_cust" +#~ "\">Custom amount</label>" #~ msgid "<strong>Zwiebelfreunde e.V.</strong>" #~ msgstr "<strong>Zwiebelfreunde e.V.</strong>" diff --git a/wiki/src/donate.pt.po b/wiki/src/donate.pt.po index 8a2d267a069..936f2dc2b60 100644 --- a/wiki/src/donate.pt.po +++ b/wiki/src/donate.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" @@ -26,16 +26,16 @@ msgstr "[[!meta title=\"Doe para lutar contra a vigilância e a censura \"]]" #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -114,36 +114,34 @@ msgstr "" #. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" #. type: Content of: <div><div><div><form><div><div> @@ -164,138 +162,118 @@ msgstr "" #. type: Content of: <div><div><div><form><div><label> msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Outro\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Outro\"/>" #. type: Content of: <div><div><div><form><div> msgid "</label>" msgstr "</label>" #. type: Content of: <div><div><div><form><div><label> -#, fuzzy -#| msgid "" -#| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" -#| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "other\">" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -#| "addon\">€</span>" +#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon" +#| "\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Outro\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Outro\"/> <span class=\"input-group-addon\">€</" +"span>" #. type: Content of: <div><div><div><form><div> msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>Uma vez</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Mensalmente</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Anualmente</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Anualmente</label>" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Doações mensais e anuais, mesmo que pequenas, são as mais valiosas para a " "sustentabilidade do Tails. Para fazê-las é necessário ter uma conta no [[!" @@ -330,8 +308,8 @@ msgstr "" #. type: Content of: <div><div><div><form><p> msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" "<strong>Doações são [[!toggle id=\"tax-deductible\" text=\"dedutÃveis de " "impostos\"]] dentro dos limites permitidos pela lei.</strong>" @@ -376,63 +354,61 @@ msgstr "Doação recorrente" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" msgstr "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Mensalmente</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Anualmente</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Mensalmente</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Anualmente</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -452,63 +428,61 @@ msgstr "Doação única" #. type: Content of: <div><div><div><div><p> msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" -"Não necessita de uma conta [[!img paypal-inline.png link=\"no\" " -"class=\"paypal-inline\" alt=\"PayPal\"]]." +"Não necessita de uma conta [[!img paypal-inline.png link=\"no\" class=" +"\"paypal-inline\" alt=\"PayPal\"]]." #. Note for translators: adapt the URLs to return to the page in your language. #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" msgstr "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Valor personalizado</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Valor personalizado</label>" #. type: Content of: <div><div><div><div><form> msgid "<input type=\"submit\" value=\"Donate (one-time)\"/>" @@ -541,12 +515,12 @@ msgstr "Bitcoin" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" @@ -555,12 +529,12 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv</strong>" @@ -846,7 +820,7 @@ msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> #, fuzzy #| msgid "Administration and fundraising" -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "Administração e captação" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -861,42 +835,6 @@ msgstr "" "Aproveitamos ao máximo o dinheiro que recebemos pois preferimos investir " "nosso tempo melhorando Tails para nossos usuários." -#. type: Content of: <div><div><h3> -msgid "Our impact" -msgstr "Nosso impacto" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "Nossa maior satisfação vem da popularidade crescente do Tails." - -#. type: Content of: <div><div><p> -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" -"Pelo numero de atualizações automáticas, sabemos que o Tails foi utilizado " -"por, aproximadamente, 25.000 pessoas por dia em 2022." - -#. type: Content of: <div><div><p> -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" -"Ajudamos pessoas a se manterem seguras mais de 10 milhões de vezes por ano, " -"com um orçamento inferior a $350.000." - -#. type: Content of: <div><div><p> -msgid "See our [[financial records|doc/about/finances]]." -msgstr "Veja os nossos [[relatórios financeiros|doc/about/finances.pt]]." - -#. type: Content of: <div><div><div> -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img users.png alt=\"\" link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "Usuários por dia desde 2012" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Recomendado por" @@ -971,21 +909,39 @@ msgstr "" msgid "Come talk to us and [[become a sponsor|sponsors/become]] yourself!" msgstr "Fale conosco e [[patrocine|sponsors/become]] também!" +#, fuzzy +#~| msgid "" +#~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " +#~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" +#~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| "col-xs-6 other\">" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" @@ -1006,6 +962,35 @@ msgstr "Fale conosco e [[patrocine|sponsors/become]] também!" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" +#~ msgid "Our impact" +#~ msgstr "Nosso impacto" + +#~ msgid "Our biggest satisfaction comes from the growing popularity of Tails." +#~ msgstr "Nossa maior satisfação vem da popularidade crescente do Tails." + +#~ msgid "" +#~ "From the number of automatic upgrades, we know that Tails was used by " +#~ "around 25 000 people every day in 2022." +#~ msgstr "" +#~ "Pelo numero de atualizações automáticas, sabemos que o Tails foi " +#~ "utilizado por, aproximadamente, 25.000 pessoas por dia em 2022." + +#~ msgid "" +#~ "We keep people safe more than 10 million times every year, for a budget " +#~ "under $350 000." +#~ msgstr "" +#~ "Ajudamos pessoas a se manterem seguras mais de 10 milhões de vezes por " +#~ "ano, com um orçamento inferior a $350.000." + +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "Veja os nossos [[relatórios financeiros|doc/about/finances.pt]]." + +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img users.png alt=\"\" link=\"no\"]]" + +#~ msgid "Daily users since 2012" +#~ msgstr "Usuários por dia desde 2012" + #~ msgid "" #~ "In 2019–2020, we simplified the installation procedure for Windows " #~ "and macOS, added support for Secure Boot, improved the upgrade process, " @@ -1058,8 +1043,8 @@ msgstr "Fale conosco e [[patrocine|sponsors/become]] também!" #~| "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " #~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" @@ -1123,23 +1108,23 @@ msgstr "Fale conosco e [[patrocine|sponsors/become]] também!" #~ "fornecendo essa plataforma tão segura para todas as pessoas." #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\">" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\">" #~ msgid "</a>" #~ msgstr "</a>" #~ msgid "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> " -#~ "(March 13 – April 10 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\"> Donate via the DuckDuckGo donation challenge.</a> (March 13 " +#~ "– April 10 2018)" #~ msgstr "" -#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" " -#~ "target=\"_blank\"> Doe através do desafio de doações do DuckDuckGo.</a> " -#~ "(13 de Março – 10 de April de 2018)" +#~ "<a href=\"https://www.crowdrise.com/o/en/campaign/tails-live\" target=" +#~ "\"_blank\"> Doe através do desafio de doações do DuckDuckGo.</a> (13 de " +#~ "Março – 10 de April de 2018)" #~ msgid "" #~ "<strong>Increase the impact of your donation</strong>: donating via the " diff --git a/wiki/src/donate.ru.po b/wiki/src/donate.ru.po index a42275796aa..a34961d7d79 100644 --- a/wiki/src/donate.ru.po +++ b/wiki/src/donate.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:20+0000\n" "PO-Revision-Date: 2021-07-19 07:29+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11.3\n" #. type: Content of: <div> @@ -27,16 +27,16 @@ msgstr "[[!meta title=\"Поддержите борьбу Ñо Ñлежкой и #. type: Content of: outside any tag (error?) msgid "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" msgstr "" "[[!meta stylesheet=\"bootstrap.min\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta " -"stylesheet=\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!" -"meta stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"donate\" rel=\"stylesheet\" title=\"\"]] [[!meta stylesheet=" +"\"donate/testimonials.inline\" rel=\"stylesheet\" title=\"\"]] [[!meta " +"stylesheet=\"hide-breadcrumbs\" rel=\"stylesheet\" title=\"\"]] [[!meta " "stylesheet=\"hide-donate-banner\" rel=\"stylesheet\" title=\"\"]] [[!meta " "script=\"donate\"]]" @@ -121,37 +121,35 @@ msgstr "" #. For one-time donation only. #. type: Content of: <div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails." -"net/donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" " -"id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> " -"<input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" value=" +"\"https://tails.net/donate/canceled/\" class=\"return-url\"/> <input type=" +"\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=\"a3\" " +"value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=\"M\" id=" +"\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=" +"\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " "value=\"5\" id=\"amount\"/>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -"id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -"value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " -"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -"<input type=\"hidden\" name=\"custom\" id=\"custom\"/> <input " -"type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -"name=\"return\" value=\"https://tails.net/donate/thanks/index.ru.html\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -"value=\"https://tails.net/donate/canceled/index.ru.html\" class=\"return-" -"url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> <input " -"type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" " -"name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" " -"value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input " -"type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" +"<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=\"cmd" +"\"/> <input type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup." +"net\" id=\"business\"/> <input type=\"hidden\" name=\"currency_code\" value=" +"\"USD\" id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " +"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"custom\" id=" +"\"custom\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " +"type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/thanks/" +"index.ru.html\" class=\"return-url\"/> <input type=\"hidden\" name=" +"\"cancel_return\" value=\"https://tails.net/donate/canceled/index.ru.html\" " +"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " +"<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=" +"\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=" +"\"p3\" value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> " +"<input type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" #. type: Content of: <div><div><div><form><div><div> msgid "" @@ -170,47 +168,45 @@ msgstr "" #. type: Content of: <div><div><div><form><div><label> msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> msgid "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Other\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Other\"/>" msgstr "" -"<span class=\"input-group-addon\">$</span> <input type=\"text\" " -"pattern=\"\\d+\" class=\"form-control\" id=\"other-dollar\" " -"placeholder=\"Сколько?\"/>" +"<span class=\"input-group-addon\">$</span> <input type=\"text\" pattern=\"\\d" +"+\" class=\"form-control\" id=\"other-dollar\" placeholder=\"Сколько?\"/>" #. type: Content of: <div><div><div><form><div> msgid "</label>" @@ -220,88 +216,88 @@ msgstr "</label>" #, fuzzy #| msgid "" #| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#| "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#| "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#| "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#| "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#| "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#| "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" #| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #| "other\">" msgid "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>100€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>150€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>200€ </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" msgstr "" -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -"active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" -"label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -"10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </label> " -"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> " -"<input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input " -"type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </label> <label " -"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 other\">" +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 active" +"\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </label> " +"<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 10\"> " +"<input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </label> <label " +"class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 25\"> <input " +"type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </label> <label class=" +"\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 50\"> <input type=" +"\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </label> <label class=\"btn " +"btn-amount btn-lg btn-primary col-md-3 col-xs-6 100\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"100\"/>$100 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 150\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"150\"/>$150 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 200\"> <input type=\"radio\" " +"autocomplete=\"off\" value=\"200\"/>$200 </label> <label class=\"btn btn-" +"amount btn-lg btn-primary col-md-3 col-xs-6 other\">" #. type: Content of: <div><div><div><form><div><label><div> #, fuzzy #| msgid "" #| "<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -#| "addon\">€</span>" +#| "id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon" +#| "\">€</span>" msgid "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Other\"/> <span class=\"input-group-addon\">€</" +"span>" msgstr "" -"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" " -"id=\"other-euro\" placeholder=\"Сколько?\"/> <span class=\"input-group-" -"addon\">€</span>" +"<input type=\"text\" pattern=\"\\d+\" class=\"form-control text-right\" id=" +"\"other-euro\" placeholder=\"Сколько?\"/> <span class=\"input-group-addon\">" +"€</span>" #. type: Content of: <div><div><div><form><div> msgid "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>One-time</label> <label class=\"col-sm-4 col-xs-12\"><input " "type=\"radio\" name=\"frequency\" id=\"monthly\"/>Monthly</label> <label " -"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " -"id=\"yearly\"/>Yearly</label>" +"class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" id=" +"\"yearly\"/>Yearly</label>" msgstr "" "<label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=\"frequency\" " "id=\"one-time\"/>Однократно</label> <label class=\"col-sm-4 col-" "xs-12\"><input type=\"radio\" name=\"frequency\" id=\"monthly\"/>ЕжемеÑÑчно</" -"label> <label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" " -"name=\"frequency\" id=\"yearly\"/>Ежегодно</label>" +"label> <label class=\"col-sm-4 col-xs-12\"><input type=\"radio\" name=" +"\"frequency\" id=\"yearly\"/>Ежегодно</label>" #. type: Content of: <div><div><div><div><p> msgid "" "Monthly and yearly donations, even the smallest, are the most valuable for " -"the sustainability of Tails. They require a [[!img paypal-inline.png " -"link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +"the sustainability of Tails. They require a [[!img paypal-inline.png link=" +"\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." msgstr "" "Мы оÑобенно ценим ежемеÑÑчные и ежегодные пожертвованиÑ, даже небольшие. Они " "обеÑпечивают ÑтабильноÑть Tails. (ТребуетÑÑ Ð°ÐºÐºÐ°ÑƒÐ½Ñ‚ [[!img paypal-inline." @@ -337,8 +333,8 @@ msgstr "" #. type: Content of: <div><div><div><form><p> msgid "" -"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-" -"deductible\"]] to the full extent permitted by law.</strong>" +"<strong>Donations are [[!toggle id=\"tax-deductible\" text=\"tax-deductible" +"\"]] to the full extent permitted by law.</strong>" msgstr "" "Ð’ ÑоответÑтвии Ñ Ð·Ð°ÐºÐ¾Ð½Ð¾Ð¼ <strong>к пожертвованиÑм в полной мере могут быть " "применены [[!toggle id=\"tax-deductible\" text=\"налоговые вычеты\"]].</" @@ -384,63 +380,61 @@ msgstr "РегулÑрное пожертвование" msgid "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" msgstr "" "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\"/> <input " "type=\"hidden\" name=\"business\" value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<input type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" " -"name=\"p3\" value=\"1\"/> <label for=\"sub5\"><input type=\"radio\" " -"name=\"a3\" value=\"5\" id=\"sub5\" checked=\"checked\"/>$5</label> <label " -"for=\"sub10\"><input type=\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/" -">$10</label> <label for=\"sub25\"><input type=\"radio\" name=\"a3\" " -"value=\"25\" id=\"sub25\"/>$25</label> <label for=\"sub50\"><input " -"type=\"radio\" name=\"a3\" value=\"50\" id=\"sub50\"/>$50</label>" +"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" id=" +"\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" value=" +"\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" value=\"1\"/" +"> <input type=\"hidden\" name=\"return\" value=\"https://tails.net/donate/" +"thanks/\" class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return" +"\" value=\"https://tails.net/donate/canceled/\" class=\"return-url\"/> " +"<input type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" " +"name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> " +"<label for=\"sub5\"><input type=\"radio\" name=\"a3\" value=\"5\" id=" +"\"sub5\" checked=\"checked\"/>$5</label> <label for=\"sub10\"><input type=" +"\"radio\" name=\"a3\" value=\"10\" id=\"sub10\"/>$10</label> <label for=" +"\"sub25\"><input type=\"radio\" name=\"a3\" value=\"25\" id=\"sub25\"/>$25</" +"label> <label for=\"sub50\"><input type=\"radio\" name=\"a3\" value=\"50\" " +"id=\"sub50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" msgstr "" -"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" " -"id=\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" " -"name=\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label " -"for=\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/" -">$200</label>" +"<label for=\"sub100\"><input type=\"radio\" name=\"a3\" value=\"100\" id=" +"\"sub100\"/>$100</label> <label for=\"sub150\"><input type=\"radio\" name=" +"\"a3\" value=\"150\" id=\"sub150\"/>$150</label> <label for=" +"\"sub500\"><input type=\"radio\" name=\"a3\" value=\"500\" id=\"sub500\"/>" +"$200</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>Monthly</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Yearly</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>Monthly</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Yearly</label>" msgstr "" -"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" " -"id=\"sub_m\" checked=\"checked\"/>ЕжемеÑÑчно</label> <label " -"for=\"sub_y\"><input type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/" -">Ежегодно</label>" +"<label for=\"sub_m\"><input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m" +"\" checked=\"checked\"/>ЕжемеÑÑчно</label> <label for=\"sub_y\"><input type=" +"\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/>Ежегодно</label>" #. type: Content of: <div><div><div><div><form> msgid "" @@ -460,8 +454,8 @@ msgstr "Разовое пожертвование" #. type: Content of: <div><div><div><div><p> msgid "" -"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-" -"inline\" alt=\"PayPal\"]] account." +"Does not require a [[!img paypal-inline.png link=\"no\" class=\"paypal-inline" +"\" alt=\"PayPal\"]] account." msgstr "" "Ðе требует аккаунта [[!img paypal-inline.png link=\"no\" class=\"paypal-" "inline\" alt=\"PayPal\"]]." @@ -470,53 +464,51 @@ msgstr "" #. Note for translators: adapt the value of 'lc' to your language. #. type: Content of: <div><div><div><div><form> msgid "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" msgstr "" -"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input " -"type=\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> " -"<input type=\"hidden\" name=\"currency_code\" value=\"USD\" " -"id=\"currency_code\"/> <input type=\"hidden\" name=\"item_name\" " -"value=\"Donation to Tails\"/> <input type=\"hidden\" name=\"no_note\" " -"value=\"1\"/> <input type=\"hidden\" name=\"return\" value=\"https://tails." -"net/donate/thanks/\" class=\"return-url\"/> <input type=\"hidden\" " -"name=\"cancel_return\" value=\"https://tails.net/donate/canceled/\" " -"class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -"<label for=\"pp_5\"><input type=\"radio\" name=\"amount\" value=\"5\" " -"id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=\"pp_10\"><input " -"type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>$10</label> <label " -"for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=\"25\" " -"id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " +"<input type=\"hidden\" name=\"cmd\" value=\"_donations\"/> <input type=" +"\"hidden\" name='business' value=\"tailsriseuplabs@riseup.net\"/> <input " +"type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> " +"<input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " +"<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " +"name=\"return\" value=\"https://tails.net/donate/thanks/\" class=\"return-url" +"\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://tails.net/" +"donate/canceled/\" class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" " +"value=\"US\"/> <label for=\"pp_5\"><input type=\"radio\" name=\"amount\" " +"value=\"5\" id=\"pp_5\" checked=\"checked\"/>$5</label> <label for=" +"\"pp_10\"><input type=\"radio\" name=\"amount\" value=\"10\" id=\"pp_10\"/>" +"$10</label> <label for=\"pp_25\"><input type=\"radio\" name=\"amount\" value=" +"\"25\" id=\"pp_25\"/>$25</label> <label for=\"pp_50\"><input type=\"radio\" " "name=\"amount\" value=\"50\" id=\"pp_50\"/>$50</label>" #. type: Content of: <div><div><div><div><form> msgid "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Custom amount</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Custom amount</label>" msgstr "" -"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" " -"id=\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" " -"name=\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label " -"for=\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" " -"id=\"pp_200\"/>$200</label> <label for=\"pp_cust\"><input type=\"radio\" " -"name=\"amount\" value=\"\" id=\"pp_cust\"/>Ð”Ñ€ÑƒÐ³Ð°Ñ Ñумма</label>" +"<label for=\"pp_100\"><input type=\"radio\" name=\"amount\" value=\"100\" id=" +"\"pp_100\"/>$100</label> <label for=\"pp_150\"><input type=\"radio\" name=" +"\"amount\" value=\"150\" id=\"pp_150\"/>$150</label> <label for=" +"\"pp_200\"><input type=\"radio\" name=\"amount\" value=\"200\" id=\"pp_200\"/" +">$200</label> <label for=\"pp_cust\"><input type=\"radio\" name=\"amount\" " +"value=\"\" id=\"pp_cust\"/>Ð”Ñ€ÑƒÐ³Ð°Ñ Ñумма</label>" #. type: Content of: <div><div><div><div><form> msgid "<input type=\"submit\" value=\"Donate (one-time)\"/>" @@ -536,8 +528,8 @@ msgid "" "If you need a donation receipt, contact us at <a href=\"mailto:tails-" "fundraising@boum.org\">tails-fundraising@boum.org</a>." msgstr "" -"ЕÑли вам в ÑвÑзи Ñ Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸ÐµÐ¼ нужен чек, ÑвÑжитеÑÑŒ Ñ Ð½Ð°Ð¼Ð¸ <a " -"href=\"mailto:tails-fundraising@boum.org\">tails-fundraising@boum.org</a>." +"ЕÑли вам в ÑвÑзи Ñ Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸ÐµÐ¼ нужен чек, ÑвÑжитеÑÑŒ Ñ Ð½Ð°Ð¼Ð¸ <a href=" +"\"mailto:tails-fundraising@boum.org\">tails-fundraising@boum.org</a>." #. type: Content of: <div><div><div><h3> msgid "Other ways to donate" @@ -550,12 +542,12 @@ msgstr "Bitcoin" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" msgstr "" "<a href=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\">[[!img " -"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" " -"alt=\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" +"bitcoin-1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2.png link=\"no\" alt=" +"\"bitcoin:1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" @@ -564,12 +556,12 @@ msgstr "<strong>1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2</strong>" #. type: Content of: <div><div><div><div><div><p> msgid "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" msgstr "" "<a href=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\">[[!img " -"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" " -"alt=\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" +"bitcoin-bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv.png link=\"no\" alt=" +"\"bitcoin:bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv\"]]</a>" #. type: Content of: <div><div><div><div><div><p> msgid "<strong>bc1qjg53lww9jrm506dj0g0szmk4pxt6f55x8dncuv</strong>" @@ -867,7 +859,7 @@ msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> #, fuzzy #| msgid "Administration and fundraising" -msgid "Administration and fundraising" +msgid "Administration and fundraising" msgstr "ÐдминиÑтрирование и фандрайзинг" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -882,53 +874,6 @@ msgstr "" "Мы ÑтараемÑÑ Ñ‚Ñ€Ð°Ñ‚Ð¸Ñ‚ÑŒ как можно большую чаÑть полученных денег на улучшение " "Tails Ð´Ð»Ñ Ð½Ð°ÑˆÐ¸Ñ… пользователей." -#. type: Content of: <div><div><h3> -msgid "Our impact" -msgstr "Ðаши показатели" - -#. type: Content of: <div><div><p> -msgid "Our biggest satisfaction comes from the growing popularity of Tails." -msgstr "" -"Больше вÑего нам нравитÑÑ Ð½Ð°Ð±Ð»ÑŽÐ´Ð°Ñ‚ÑŒ, как раÑтёт чиÑло пользователей Tails." - -#. type: Content of: <div><div><p> -#, fuzzy -#| msgid "" -#| "From the number of automatic upgrades, we know that Tails was used by " -#| "around 30 000 people every day in 2020. This number has been " -#| "steadily growing by 15% each year on average since 2012." -msgid "" -"From the number of automatic upgrades, we know that Tails was used by around " -"25 000 people every day in 2022." -msgstr "" -"По чиÑлу автоматичеÑких обновлений мы узнали, что в 2020 году Tails " -"ежедневно иÑпользовали примерно 30 тыÑÑч человек. Ðтот показатель неуклонно " -"раÑтёт в Ñреднем на 15% в год Ñ 2012 года." - -#. type: Content of: <div><div><p> -#, fuzzy -#| msgid "" -#| "We keep people safe more than 10 million times every year, for a budget " -#| "under $300 000." -msgid "" -"We keep people safe more than 10 million times every year, for a budget " -"under $350 000." -msgstr "" -"С бюджетом менее 300 тыÑÑч долларов мы ежегодно помогаем людÑм обеÑпечить " -"безопаÑноÑть 10 миллионов раз." - -#. type: Content of: <div><div><p> -msgid "See our [[financial records|doc/about/finances]]." -msgstr "См. наши [[финанÑовые отчёты|doc/about/finances]]." - -#. type: Content of: <div><div><div> -msgid "[[!img users.png alt=\"\" link=\"no\"]]" -msgstr "[[!img users.png alt=\"\" link=\"no\"]]" - -#. type: Content of: <div><div><div><p> -msgid "Daily users since 2012" -msgstr "ЧиÑло пользователей ежедневно (Ñ 2012 г.)" - #. type: Content of: <div><div><h3> msgid "Recommended by" msgstr "Кто рекомендует Tails" @@ -1008,56 +953,96 @@ msgstr "Приходите к нам! [[СтановитеÑÑŒ нашим Ñпо #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~| "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~| "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 " +#~| "xs-6 10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 " +#~| "xs-6 25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" -#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 " +#~| "xs-6 50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ " #~| "</label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-" #~| "xs-6 100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/" -#~| ">$100 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">100€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/" -#~| ">$150 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">150€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/" -#~| ">$200 </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " +#~| ">200€ </label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 " #~| "col-xs-6 other\">" #~ msgid "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" #~ msgstr "" #~ "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " -#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>$5 </" +#~ "active\"> <input type=\"radio\" autocomplete=\"off\" value=\"5\"/>5€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>$10 </" +#~ "10\"> <input type=\"radio\" autocomplete=\"off\" value=\"10\"/>10€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>$25 </" +#~ "25\"> <input type=\"radio\" autocomplete=\"off\" value=\"25\"/>25€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>$50 </" +#~ "50\"> <input type=\"radio\" autocomplete=\"off\" value=\"50\"/>50€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>$100 </" +#~ "100\"> <input type=\"radio\" autocomplete=\"off\" value=\"100\"/>100€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>$150 </" +#~ "150\"> <input type=\"radio\" autocomplete=\"off\" value=\"150\"/>150€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " -#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>$200 </" +#~ "200\"> <input type=\"radio\" autocomplete=\"off\" value=\"200\"/>200€ </" #~ "label> <label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 " #~ "other\">" +#~ msgid "Our impact" +#~ msgstr "Ðаши показатели" + +#~ msgid "Our biggest satisfaction comes from the growing popularity of Tails." +#~ msgstr "" +#~ "Больше вÑего нам нравитÑÑ Ð½Ð°Ð±Ð»ÑŽÐ´Ð°Ñ‚ÑŒ, как раÑтёт чиÑло пользователей Tails." + +#, fuzzy +#~| msgid "" +#~| "From the number of automatic upgrades, we know that Tails was used by " +#~| "around 30 000 people every day in 2020. This number has been " +#~| "steadily growing by 15% each year on average since 2012." +#~ msgid "" +#~ "From the number of automatic upgrades, we know that Tails was used by " +#~ "around 25 000 people every day in 2022." +#~ msgstr "" +#~ "По чиÑлу автоматичеÑких обновлений мы узнали, что в 2020 году Tails " +#~ "ежедневно иÑпользовали примерно 30 тыÑÑч человек. Ðтот показатель " +#~ "неуклонно раÑтёт в Ñреднем на 15% в год Ñ 2012 года." + +#, fuzzy +#~| msgid "" +#~| "We keep people safe more than 10 million times every year, for a budget " +#~| "under $300 000." +#~ msgid "" +#~ "We keep people safe more than 10 million times every year, for a budget " +#~ "under $350 000." +#~ msgstr "" +#~ "С бюджетом менее 300 тыÑÑч долларов мы ежегодно помогаем людÑм обеÑпечить " +#~ "безопаÑноÑть 10 миллионов раз." + +#~ msgid "See our [[financial records|doc/about/finances]]." +#~ msgstr "См. наши [[финанÑовые отчёты|doc/about/finances]]." + +#~ msgid "[[!img users.png alt=\"\" link=\"no\"]]" +#~ msgstr "[[!img users.png alt=\"\" link=\"no\"]]" + +#~ msgid "Daily users since 2012" +#~ msgstr "ЧиÑло пользователей ежедневно (Ñ 2012 г.)" + #~ msgid "" #~ "In 2019–2020, we simplified the installation procedure for Windows " #~ "and macOS, added support for Secure Boot, improved the upgrade process, " @@ -1112,8 +1097,8 @@ msgstr "Приходите к нам! [[СтановитеÑÑŒ нашим Ñпо #, fuzzy #~ msgid "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " -#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" " -#~ "alt=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" +#~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\" alt=" +#~ "\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\"]]</a>" #~ msgstr "" #~ "<a href=\"bitcoin:3QirvVRntoascPfTgNTUQvKxfKwPah5FNK\">[[!img " #~ "bitcoin-3QirvVRntoascPfTgNTUQvKxfKwPah5FNK.png link=\"no\"]]</a>" @@ -1123,58 +1108,56 @@ msgstr "Приходите к нам! [[СтановитеÑÑŒ нашим Ñпо #, fuzzy #~ msgid "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"custom\" value=\"default\"/> <input " -#~ "type=\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"return\" value=\"https://tails.boum.org/donate/thanks/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"cancel_return\" " -#~ "value=\"https://tails.boum.org/donate/canceled/?v=default\" " -#~ "class=\"return-url\"/> <input type=\"hidden\" name=\"lc\" value=\"US\"/> " -#~ "<input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input " -#~ "type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"custom\" value=\"default\"/> <input type=\"hidden\" " +#~ "name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=\"return\" " +#~ "value=\"https://tails.boum.org/donate/thanks/?v=default\" class=\"return-" +#~ "url\"/> <input type=\"hidden\" name=\"cancel_return\" value=\"https://" +#~ "tails.boum.org/donate/canceled/?v=default\" class=\"return-url\"/> <input " +#~ "type=\"hidden\" name=\"lc\" value=\"US\"/> <input type=\"hidden\" name=" +#~ "\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" name=\"t3\" value=" +#~ "\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"src\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"amount\" value=\"5\" id=\"amount\"/>" #~ msgstr "" -#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" " -#~ "id=\"cmd\"/> <input type=\"hidden\" name=\"business\" " -#~ "value=\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input " -#~ "type=\"hidden\" name=\"currency_code\" value=\"USD\" id=\"currency_code\"/" -#~ "> <input type=\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> " -#~ "<input type=\"hidden\" name=\"no_note\" value=\"1\"/> <input " -#~ "type=\"hidden\" name=\"return\" class=\"return-url\" value=\"https://" -#~ "tails.boum.org/donate/thanks/index.de.html\"/> <input type=\"hidden\" " -#~ "name=\"cancel_return\" class=\"return-url\" value=\"https://tails.boum." -#~ "org/donate/canceled/index.de.html\"/> <input name=\"lc\" type=\"hidden\" " -#~ "value=\"DE\"/> <input type=\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> " -#~ "<input type=\"hidden\" name=\"t3\" value=\"M\" id=\"t3\"/> <input " -#~ "type=\"hidden\" name=\"p3\" value=\"1\"/> <input type=\"hidden\" " -#~ "name=\"src\" value=\"1\"/> <input type=\"hidden\" name=\"amount\" " -#~ "value=\"5\" id=\"amount\"/>" +#~ "<input type=\"hidden\" name=\"cmd\" value=\"_xclick-subscriptions\" id=" +#~ "\"cmd\"/> <input type=\"hidden\" name=\"business\" value=" +#~ "\"tailsriseuplabs@riseup.net\" id=\"business\"/> <input type=\"hidden\" " +#~ "name=\"currency_code\" value=\"USD\" id=\"currency_code\"/> <input type=" +#~ "\"hidden\" name=\"item_name\" value=\"Donation to Tails\"/> <input type=" +#~ "\"hidden\" name=\"no_note\" value=\"1\"/> <input type=\"hidden\" name=" +#~ "\"return\" class=\"return-url\" value=\"https://tails.boum.org/donate/" +#~ "thanks/index.de.html\"/> <input type=\"hidden\" name=\"cancel_return\" " +#~ "class=\"return-url\" value=\"https://tails.boum.org/donate/canceled/index." +#~ "de.html\"/> <input name=\"lc\" type=\"hidden\" value=\"DE\"/> <input type=" +#~ "\"hidden\" name=\"a3\" value=\"5\" id=\"a3\"/> <input type=\"hidden\" " +#~ "name=\"t3\" value=\"M\" id=\"t3\"/> <input type=\"hidden\" name=\"p3\" " +#~ "value=\"1\"/> <input type=\"hidden\" name=\"src\" value=\"1\"/> <input " +#~ "type=\"hidden\" name=\"amount\" value=\"5\" id=\"amount\"/>" #~ msgid "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> One-time </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monthly </label> <label class=\"btn " -#~ "btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Yearly </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> One-time </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monthly </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Yearly </label>" #~ msgstr "" -#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Einmalig </label> <label " -#~ "class=\"btn btn-lg btn-primary active\" id=\"monthly\"> <input " -#~ "type=\"radio\" autocomplete=\"off\"/> Monatlich </label> <label " -#~ "class=\"btn btn-lg btn-primary\" id=\"yearly\"> <input type=\"radio\" " -#~ "autocomplete=\"off\" checked/> Jährlich </label>" +#~ "<label class=\"btn btn-lg btn-primary\" id=\"one-time\"> <input type=" +#~ "\"radio\" autocomplete=\"off\"/> Einmalig </label> <label class=\"btn btn-" +#~ "lg btn-primary active\" id=\"monthly\"> <input type=\"radio\" " +#~ "autocomplete=\"off\"/> Monatlich </label> <label class=\"btn btn-lg btn-" +#~ "primary\" id=\"yearly\"> <input type=\"radio\" autocomplete=\"off\" " +#~ "checked/> Jährlich </label>" #, fuzzy #~ msgid "" -#~ "Monthly and yearly donations require a [[!img paypal-inline.png " -#~ "link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]] account." +#~ "Monthly and yearly donations require a [[!img paypal-inline.png link=\"no" +#~ "\" class=\"paypal-inline\" alt=\"PayPal\"]] account." #~ msgstr "" #~ "<input type=\"submit\" value=\"Spenden\"/> (Benötigt ein [[!img paypal-" #~ "inline.png link=\"no\" class=\"paypal-inline\" alt=\"PayPal\"]]-Konto.)" @@ -1239,13 +1222,13 @@ msgstr "Приходите к нам! [[СтановитеÑÑŒ нашим Ñпо #, fuzzy #~ msgid "" #~ "<input type=\"radio\" name=\"amount\" value=\"100\" id=\"pp_100\"/><label " -#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" " -#~ "value=\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" +#~ "for=\"pp_100\">$100</label> <input type=\"radio\" name=\"amount\" value=" +#~ "\"\" id=\"pp_cust\"/><label for=\"pp_cust\">Custom amount</label>" #~ msgstr "" -#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" " -#~ "checked=\"checked\"/><label for=\"sub_m\">Monatlich</label> <input " -#~ "type=\"radio\" name=\"t3\" value=\"Y\" id=\"sub_y\"/><label " -#~ "for=\"sub_y\">Jährlich</label>" +#~ "<input type=\"radio\" name=\"t3\" value=\"M\" id=\"sub_m\" checked=" +#~ "\"checked\"/><label for=\"sub_m\">Monatlich</label> <input type=\"radio\" " +#~ "name=\"t3\" value=\"Y\" id=\"sub_y\"/><label for=\"sub_y\">Jährlich</" +#~ "label>" #~ msgid "" #~ "We know that secure tools need to be free software to be trustworthy. " @@ -1298,15 +1281,13 @@ msgstr "Приходите к нам! [[СтановитеÑÑŒ нашим Ñпо #~ msgstr "Flattr" #~ msgid "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #~ msgstr "" -#~ "<a href=\"https://flattr.com/submit/auto?" -#~ "fid=j1rqzg&url=https%3A%2F%2Ftails.boum.org%2Fdonate%2F\" " -#~ "target=\"_blank\">[[!img flattr-badge-large.png link=\"no\" alt=\"Flattr " -#~ "this\"]]</a>" +#~ "<a href=\"https://flattr.com/submit/auto?fid=j1rqzg&url=https%3A%2F" +#~ "%2Ftails.boum.org%2Fdonate%2F\" target=\"_blank\">[[!img flattr-badge-" +#~ "large.png link=\"no\" alt=\"Flattr this\"]]</a>" #, fuzzy #~ msgid "" -- GitLab From 60936459b0dd152ead197ef46b02ab838f8ea644 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Thu, 24 Aug 2023 13:34:20 -0600 Subject: [PATCH 085/119] Delete /contribute/roadmap Quick fix for fundraising#17785. --- wiki/src/contribute.mdwn | 1 - wiki/src/contribute/design.mdwn | 3 -- wiki/src/contribute/how/code.mdwn | 2 +- wiki/src/contribute/roadmap.mdwn | 45 ------------------- wiki/src/contribute/starter_tasks.mdwn | 2 +- .../contribute/working_together/GitLab.mdwn | 2 +- wiki/src/footer.html | 1 - ...prove_the_infrastructure_behind_Tails.mdwn | 4 +- wiki/src/news/report_2011_05-06.mdwn | 2 +- wiki/src/news/report_2012_01-04.mdwn | 2 +- wiki/src/news/report_2012_08.mdwn | 2 +- wiki/src/news/report_2016_08.mdwn | 4 +- wiki/src/news/report_2016_09.mdwn | 2 +- wiki/src/news/report_2017_09.mdwn | 2 +- wiki/src/news/report_2018_10.mdwn | 2 +- wiki/src/news/summit_2013.mdwn | 6 +-- wiki/src/news/test_3.0-beta4.mdwn | 2 - wiki/src/news/test_3.0-rc1.mdwn | 2 - wiki/src/news/test_3.12-rc1.mdwn | 2 - wiki/src/news/test_3.2-rc1.mdwn | 2 - wiki/src/news/test_3.6~rc1.mdwn | 2 - wiki/src/news/test_3.9-rc1.mdwn | 2 - wiki/src/news/test_4.0-beta1.mdwn | 2 - wiki/src/news/test_4.0-beta2.mdwn | 2 - wiki/src/news/test_4.0-rc1.mdwn | 2 - wiki/src/news/test_4.11-rc1.mdwn | 2 - wiki/src/news/test_4.5-rc1.mdwn | 2 - wiki/src/news/test_5.0-beta1.mdwn | 2 - wiki/src/news/version_0.10.mdwn | 3 -- wiki/src/news/version_0.11.mdwn | 3 -- wiki/src/news/version_0.12.1.mdwn | 3 -- wiki/src/news/version_0.12.mdwn | 3 -- wiki/src/news/version_0.13.mdwn | 1 - wiki/src/news/version_0.14.mdwn | 1 - wiki/src/news/version_0.15.mdwn | 1 - wiki/src/news/version_0.16.mdwn | 1 - wiki/src/news/version_0.17.1.mdwn | 1 - wiki/src/news/version_0.17.2.mdwn | 1 - wiki/src/news/version_0.17.mdwn | 1 - wiki/src/news/version_0.18.mdwn | 1 - wiki/src/news/version_0.19.mdwn | 1 - wiki/src/news/version_0.20.1.mdwn | 1 - wiki/src/news/version_0.20.mdwn | 1 - wiki/src/news/version_0.21.mdwn | 1 - wiki/src/news/version_0.22.1.mdwn | 1 - wiki/src/news/version_0.22.mdwn | 1 - wiki/src/news/version_0.23.mdwn | 1 - wiki/src/news/version_0.6.mdwn | 10 ++--- wiki/src/news/version_0.7.1.mdwn | 3 -- wiki/src/news/version_0.7.2.mdwn | 3 -- wiki/src/news/version_0.7.mdwn | 3 -- wiki/src/news/version_0.8.mdwn | 3 -- wiki/src/news/version_0.9.mdwn | 3 -- wiki/src/news/version_1.0.1.mdwn | 1 - wiki/src/news/version_1.0.mdwn | 1 - wiki/src/news/version_1.1.1.mdwn | 1 - wiki/src/news/version_1.1.2.mdwn | 1 - wiki/src/news/version_1.1.mdwn | 1 - wiki/src/news/version_1.2.1.mdwn | 1 - wiki/src/news/version_1.2.2.mdwn | 1 - wiki/src/news/version_1.2.3.mdwn | 1 - wiki/src/news/version_1.2.mdwn | 1 - wiki/src/news/version_1.3.1.mdwn | 1 - wiki/src/news/version_1.3.2.mdwn | 1 - wiki/src/news/version_1.3.mdwn | 1 - wiki/src/news/version_1.4.1.mdwn | 1 - wiki/src/news/version_1.4.mdwn | 1 - wiki/src/news/version_1.5.1.mdwn | 1 - wiki/src/news/version_1.5.mdwn | 1 - wiki/src/news/version_1.6.mdwn | 1 - wiki/src/news/version_1.7.mdwn | 1 - wiki/src/news/version_1.8.1.mdwn | 1 - wiki/src/news/version_1.8.2.mdwn | 1 - wiki/src/news/version_1.8.mdwn | 1 - wiki/src/news/version_2.0.1.mdwn | 1 - wiki/src/news/version_2.0.mdwn | 1 - wiki/src/news/version_2.10.mdwn | 1 - wiki/src/news/version_2.11.mdwn | 1 - wiki/src/news/version_2.12.mdwn | 1 - wiki/src/news/version_2.2.1.mdwn | 1 - wiki/src/news/version_2.2.mdwn | 1 - wiki/src/news/version_2.3.mdwn | 1 - wiki/src/news/version_2.4.mdwn | 1 - wiki/src/news/version_2.5.mdwn | 1 - wiki/src/news/version_2.6.mdwn | 1 - wiki/src/news/version_2.7.1.mdwn | 1 - wiki/src/news/version_2.7.mdwn | 1 - wiki/src/news/version_2.9.1.mdwn | 1 - wiki/src/news/version_3.0.1.mdwn | 1 - wiki/src/news/version_3.0.mdwn | 1 - wiki/src/news/version_3.1.mdwn | 1 - wiki/src/news/version_3.10.1.mdwn | 1 - wiki/src/news/version_3.11.mdwn | 1 - wiki/src/news/version_3.12.1.mdwn | 1 - wiki/src/news/version_3.12.mdwn | 1 - wiki/src/news/version_3.13.1.mdwn | 1 - wiki/src/news/version_3.13.2.mdwn | 1 - wiki/src/news/version_3.13.mdwn | 1 - wiki/src/news/version_3.14.1.mdwn | 1 - wiki/src/news/version_3.14.2.mdwn | 1 - wiki/src/news/version_3.14.mdwn | 1 - wiki/src/news/version_3.15.mdwn | 1 - wiki/src/news/version_3.16.mdwn | 1 - wiki/src/news/version_3.2.mdwn | 1 - wiki/src/news/version_3.3.mdwn | 1 - wiki/src/news/version_3.4.mdwn | 1 - wiki/src/news/version_3.5.mdwn | 1 - wiki/src/news/version_3.6.1.mdwn | 1 - wiki/src/news/version_3.6.2.mdwn | 1 - wiki/src/news/version_3.6.mdwn | 1 - wiki/src/news/version_3.7.1.mdwn | 1 - wiki/src/news/version_3.7.mdwn | 1 - wiki/src/news/version_3.8.mdwn | 1 - wiki/src/news/version_3.9.1.mdwn | 1 - wiki/src/news/version_3.9.mdwn | 1 - wiki/src/news/version_4.0.mdwn | 1 - wiki/src/news/version_4.1.1.mdwn | 1 - wiki/src/news/version_4.1.mdwn | 1 - wiki/src/news/version_4.10.mdwn | 1 - wiki/src/news/version_4.11.mdwn | 1 - wiki/src/news/version_4.12.mdwn | 1 - wiki/src/news/version_4.13.mdwn | 1 - wiki/src/news/version_4.14.mdwn | 1 - wiki/src/news/version_4.15.1.mdwn | 1 - wiki/src/news/version_4.15.mdwn | 1 - wiki/src/news/version_4.16.mdwn | 1 - wiki/src/news/version_4.17.mdwn | 1 - wiki/src/news/version_4.18.mdwn | 1 - wiki/src/news/version_4.19.mdwn | 1 - wiki/src/news/version_4.2.2.mdwn | 1 - wiki/src/news/version_4.2.mdwn | 1 - wiki/src/news/version_4.20.mdwn | 1 - wiki/src/news/version_4.21.mdwn | 1 - wiki/src/news/version_4.22.mdwn | 1 - wiki/src/news/version_4.23.mdwn | 1 - wiki/src/news/version_4.24.mdwn | 1 - wiki/src/news/version_4.25.mdwn | 1 - wiki/src/news/version_4.26.mdwn | 1 - wiki/src/news/version_4.27.mdwn | 1 - wiki/src/news/version_4.28.mdwn | 1 - wiki/src/news/version_4.29.mdwn | 1 - wiki/src/news/version_4.3.mdwn | 1 - wiki/src/news/version_4.4.1.mdwn | 1 - wiki/src/news/version_4.4.mdwn | 1 - wiki/src/news/version_4.5.mdwn | 1 - wiki/src/news/version_4.6.mdwn | 1 - wiki/src/news/version_4.7.mdwn | 1 - wiki/src/news/version_4.8.mdwn | 1 - wiki/src/news/version_4.9.mdwn | 1 - wiki/src/news/version_5.0.mdwn | 1 - wiki/src/news/version_5.1.1.mdwn | 1 - wiki/src/news/version_5.1.mdwn | 1 - wiki/src/news/version_5.10.mdwn | 1 - wiki/src/news/version_5.11.mdwn | 1 - wiki/src/news/version_5.2.mdwn | 1 - wiki/src/news/version_5.3.1.mdwn | 1 - wiki/src/news/version_5.3.mdwn | 1 - wiki/src/news/version_5.4.mdwn | 1 - wiki/src/news/version_5.5.mdwn | 1 - wiki/src/news/version_5.6.mdwn | 1 - wiki/src/news/version_5.7.mdwn | 1 - wiki/src/shortcuts.mdwn | 1 - 162 files changed, 19 insertions(+), 248 deletions(-) delete mode 100644 wiki/src/contribute/roadmap.mdwn diff --git a/wiki/src/contribute.mdwn b/wiki/src/contribute.mdwn index a73f73449e8..24f5bb310f7 100644 --- a/wiki/src/contribute.mdwn +++ b/wiki/src/contribute.mdwn @@ -131,7 +131,6 @@ Tools for contributors ====================== - Source code: [[Git repositories|contribute/git]] - - [[!tails_roadmap desc="Roadmap"]] - [[GitLab source code and bug tracker|contribute/working_together/GitLab]] - [[Starter tasks|starter_tasks]] for new contributors - [[Building a Tails image|contribute/build]] diff --git a/wiki/src/contribute/design.mdwn b/wiki/src/contribute/design.mdwn index 35feeed2846..131ec59993c 100644 --- a/wiki/src/contribute/design.mdwn +++ b/wiki/src/contribute/design.mdwn @@ -1354,9 +1354,6 @@ needed to make them useful to anyone. Other caveats are listed on the [[support/known issues]] page. -See the development [[!tails_roadmap]] for more information about -where Tails is heading to. - ## 3.11 Fingerprint Tails tries to make it as difficult as possible to distinguish Tails diff --git a/wiki/src/contribute/how/code.mdwn b/wiki/src/contribute/how/code.mdwn index 4d102978ffb..f7a6147a38f 100644 --- a/wiki/src/contribute/how/code.mdwn +++ b/wiki/src/contribute/how/code.mdwn @@ -58,7 +58,7 @@ upstream... which sometimes implies to write a patch ourselves. ## Pick up a task We use [[!tails_gitlab groups/tails/-/issues desc="GitLab"]] to track -our lists of tasks and bugs, as well as our [[!tails_roadmap]]. +our lists of tasks and bugs, as well as our roadmap. If you already know which one of the listed tasks you want to tackle and it has the *T:Code* label, then you can probably safely skip to the next section. diff --git a/wiki/src/contribute/roadmap.mdwn b/wiki/src/contribute/roadmap.mdwn deleted file mode 100644 index cf033a81858..00000000000 --- a/wiki/src/contribute/roadmap.mdwn +++ /dev/null @@ -1,45 +0,0 @@ -[[!meta title="Roadmap"]] - -Our plans for the next releases -=============================== - -See our [[!tails_gitlab groups/tails/-/milestones desc="GitLab milestones"]]. - -Our priorities for 2021–2022 -================================== - -## New features and major improvements - -- <strike>Improve the interface of the **Persistent Storage settings** ([[!tails_ticket 15572]])</strike> [DONE] - -- <strike>Redesign how to **start Tor and configure Tor bridges** ([[!tails_ticket 10491]], [[!tails_ticket 17215]])</strike> [DONE] - -- <strike>Make it possible to **persist Tor bridges** ([[!tails_ticket 5461]])</strike> [DONE] - -## Security and maintenance - -- Add **Boot Loader entries for common hardware problems** ([[!tails_ticket 17641]]) - -- <strike>Migrate to **Wayland** ([[!tails_ticket 12213]])</strike> [DONE] - -- <strike>Release **Tails 5.0** based on Debian 11 (Bullseye) ([Tails 5.0](https://gitlab.tails.boum.org/tails/tails/-/issues?milestone_title=Tails_5.0))</strike> [DONE] - -## Website and documentation - -- Restructure our **support pages** ([[!tails_ticket 15130]]) - -- <strike>Simplify our **installation pages** ([[!tails_ticket 16808]])</strike> [DONE] - -- <strike>Rewrite our **warnings page** ([[!tails_ticket 8845]])</strike> [DONE] - -<!-- -Other candidates that I decided not to include in the summary: - -- Do usability tests with first time users ([[!tails_ticket 18074]])) -- Review accessibility and responsive web design on our website ([[!tails_ticket XXX]]) -- Create a public repository of user research data ([[!tails_ticket 18075]]) -- Gather privacy-preserving metrics on numbers of installation and versions ([[!tails_ticket 16535]], [[!tails_ticket 17545]]) -- Clarify hardware limitations and recommended hardware ([[!tails_ticket 17441]], [[!tails_ticket 15026]]) -- Allow doing a backup of the Persistent Storage when cloning ([[!tails_ticket 7049]]) -- Explain the **basics of using Tails** ([[!tails_ticket 17725]]) ---> diff --git a/wiki/src/contribute/starter_tasks.mdwn b/wiki/src/contribute/starter_tasks.mdwn index 328ea8e7409..7de273373b0 100644 --- a/wiki/src/contribute/starter_tasks.mdwn +++ b/wiki/src/contribute/starter_tasks.mdwn @@ -15,7 +15,7 @@ clarification. You can also have a look at other tasks marked as [[!tails_gitlab groups/tails/-/issues?label_name%5B%5D=P%3ALow desc="low priority"]] on our GitLab. -We marked them as of low priority according to our [[!tails_roadmap]] but they might +We marked them as of low priority according to our roadmap but they might be interesting, useful and fun to work on! Recommendations diff --git a/wiki/src/contribute/working_together/GitLab.mdwn b/wiki/src/contribute/working_together/GitLab.mdwn index 974529f7850..37911c5e0b9 100644 --- a/wiki/src/contribute/working_together/GitLab.mdwn +++ b/wiki/src/contribute/working_together/GitLab.mdwn @@ -197,7 +197,7 @@ Different teams and contributors use the _Milestone_ value differently: contributors should be able to rely on. - Others use it as a pool of tasks they want to have on their short-term radar. -For issues that are on the Tails [[!tails_roadmap]], no milestone is set, +For issues that are on our roadmap, no milestone is set, until it makes sense to target a specific release. However, such issues have a `$YEAR` label. diff --git a/wiki/src/footer.html b/wiki/src/footer.html index 68d46e42abe..1458295b240 100644 --- a/wiki/src/footer.html +++ b/wiki/src/footer.html @@ -37,7 +37,6 @@ <li>[[Translate|contribute/how/translate]]</li> <li>[[Source code|contribute/how/code]]</li> <li>[[!tails_gitlab tails/tails/-/issues desc="GitLab"]]</li> -<li>[[Roadmap|contribute/roadmap]]</li> <li>[[Donate|donate]]</li> </ul> diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.mdwn b/wiki/src/news/improve_the_infrastructure_behind_Tails.mdwn index 66cba1d7f20..a78e570049c 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.mdwn +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.mdwn @@ -13,8 +13,8 @@ a challenge to keep Tails alive and getting better. We needs more hands! -Among the things we know [[!tails_roadmap desc="we should do in the -next few years"]], we have identified some areas that could benefit the most +Among the things we know we should do in the +next few years, we have identified some areas that could benefit the most from new dedicated contributors. Today, we are talking of **improving the infrastructure behind diff --git a/wiki/src/news/report_2011_05-06.mdwn b/wiki/src/news/report_2011_05-06.mdwn index 49c3e3973da..c3c562c40cc 100644 --- a/wiki/src/news/report_2011_05-06.mdwn +++ b/wiki/src/news/report_2011_05-06.mdwn @@ -157,6 +157,6 @@ of which one we will include in Tails. To end with, the Tails core developers have recently discussed nearly every pending task whose implementation was blocked by the lack of a -clear decision. As a consequence, our [[!tails_roadmap]] was +clear decision. As a consequence, our roadmap was updated. This makes it possible for us, and [[any other contributor|contribute]], to move forward on many topics. diff --git a/wiki/src/news/report_2012_01-04.mdwn b/wiki/src/news/report_2012_01-04.mdwn index d8ed187c8a8..9fd7bbaa11d 100644 --- a/wiki/src/news/report_2012_01-04.mdwn +++ b/wiki/src/news/report_2012_01-04.mdwn @@ -81,7 +81,7 @@ might require some more time to get fully ready. Free WiFi hotspots support and local firewall hardening are not far from being releasable either. -As a glimpse at our [[!tails_roadmap]] shows, we are +As a glimpse at our roadmap shows, we are getting close to the Tails 1.0 release, which might be out before the end of the year. diff --git a/wiki/src/news/report_2012_08.mdwn b/wiki/src/news/report_2012_08.mdwn index 9b84fb7c67b..3f0819dc7cb 100644 --- a/wiki/src/news/report_2012_08.mdwn +++ b/wiki/src/news/report_2012_08.mdwn @@ -230,7 +230,7 @@ instead of the obsolete CheckIt. Clarify some steps in the [[release process|contribute/release_process]]. Document better how to release Tails custom packages. -Update [[!tails_roadmap desc="the roadmap page"]]. +Update the roadmap page. Translations ============ diff --git a/wiki/src/news/report_2016_08.mdwn b/wiki/src/news/report_2016_08.mdwn index 3ae634c589b..00a00f30ca6 100644 --- a/wiki/src/news/report_2016_08.mdwn +++ b/wiki/src/news/report_2016_08.mdwn @@ -13,8 +13,8 @@ a number of fixes for bugs and security holes. Code ==== -- We updated our roadmap, listing our [[priorities for the next - years|contribute/roadmap]]. +- We updated our roadmap, listing our priorities for the next + years. - Use a dedicated homepage for *Tor Browser* in Tails to be able to customize what we are showing when people start Tails ([[!tails_ticket 11725]]). diff --git a/wiki/src/news/report_2016_09.mdwn b/wiki/src/news/report_2016_09.mdwn index 2607e0f8bd2..f5bfe6e8bd6 100644 --- a/wiki/src/news/report_2016_09.mdwn +++ b/wiki/src/news/report_2016_09.mdwn @@ -103,7 +103,7 @@ is great in itself. Documentation and website ========================= -- We published our [[roadmap for 2016-2017|contribute/roadmap]]. +- We published our roadmap for 2016-2017. - We designed a new [[donation page|donate]] which proposes tax-deductible donations in both euros, through Zwiebelfreunde and diff --git a/wiki/src/news/report_2017_09.mdwn b/wiki/src/news/report_2017_09.mdwn index e74be8aeb97..d2c5c9c005a 100644 --- a/wiki/src/news/report_2017_09.mdwn +++ b/wiki/src/news/report_2017_09.mdwn @@ -70,7 +70,7 @@ Code Documentation and website ========================= -- We updated our [[roadmap|contribute/roadmap]] with our priorities for +- We updated our roadmap with our priorities for the next years. - We greatly improved our [[instructions for building the Tails ISO diff --git a/wiki/src/news/report_2018_10.mdwn b/wiki/src/news/report_2018_10.mdwn index 00f877d145c..7ef9b1c81e8 100644 --- a/wiki/src/news/report_2018_10.mdwn +++ b/wiki/src/news/report_2018_10.mdwn @@ -51,7 +51,7 @@ This work will be released in Tails 3.12 (January 29). Documentation and website ========================= -- We updated our [[!tails_roadmap desc="roadmap"]] for the next 2 years. +- We updated our roadmap for the next 2 years. Hot topics on our help desk =========================== diff --git a/wiki/src/news/summit_2013.mdwn b/wiki/src/news/summit_2013.mdwn index 4c14e004238..ca3bb0c9d67 100644 --- a/wiki/src/news/summit_2013.mdwn +++ b/wiki/src/news/summit_2013.mdwn @@ -13,8 +13,8 @@ We mainly discussed the **growth of the project**: given the growing number of users and our super-short release cycle, it is a challenge to keep the project sustainable and maintainable in the mid/long term. -Our take on this is first reflected by [[!tails_roadmap desc="our -**updated roadmap**"]]: we now have a better vision of what we want to +Our take on this is first reflected by our +**updated roadmap**: we now have a better vision of what we want to focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we even were bold enough to draft goals for 3.0. @@ -66,7 +66,7 @@ was perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/issues?query_id=108) -and [[!tails_roadmap desc="plans"]]. We are not exploiting the full +and plans. We are not exploiting the full potential of Redmine yet, but it already feels far less messy than how we did previously. Hopefully this will help others get involved! Many thanks go to Riseup for hosting the Redmine instance we use. diff --git a/wiki/src/news/test_3.0-beta4.mdwn b/wiki/src/news/test_3.0-beta4.mdwn index 9c37cadfcb8..1b69f6fe4f3 100644 --- a/wiki/src/news/test_3.0-beta4.mdwn +++ b/wiki/src/news/test_3.0-beta4.mdwn @@ -103,8 +103,6 @@ around May 19. Tails 3.0 is [[scheduled|contribute/calendar]] for June 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.0-beta4">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_3.0-rc1.mdwn b/wiki/src/news/test_3.0-rc1.mdwn index 788cf63a775..095cd5dc334 100644 --- a/wiki/src/news/test_3.0-rc1.mdwn +++ b/wiki/src/news/test_3.0-rc1.mdwn @@ -126,8 +126,6 @@ around May 19. Tails 3.0 is [[scheduled|contribute/calendar]] for June 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.0-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_3.12-rc1.mdwn b/wiki/src/news/test_3.12-rc1.mdwn index 74bf4aa883b..fc842bf5870 100644 --- a/wiki/src/news/test_3.12-rc1.mdwn +++ b/wiki/src/news/test_3.12-rc1.mdwn @@ -119,8 +119,6 @@ verify** step. Tails 3.12 is [[scheduled|contribute/calendar]] for January 29. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.12-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_3.2-rc1.mdwn b/wiki/src/news/test_3.2-rc1.mdwn index c930f73dc6d..1d488cb5248 100644 --- a/wiki/src/news/test_3.2-rc1.mdwn +++ b/wiki/src/news/test_3.2-rc1.mdwn @@ -105,8 +105,6 @@ Known issues in 3.2~rc1 Tails 3.2 is [[scheduled|contribute/calendar]] on September 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_3.6~rc1.mdwn b/wiki/src/news/test_3.6~rc1.mdwn index 8bc9f2b6115..786612c0480 100644 --- a/wiki/src/news/test_3.6~rc1.mdwn +++ b/wiki/src/news/test_3.6~rc1.mdwn @@ -100,8 +100,6 @@ ones|support/known_issues]] Tails 3.6 is [[scheduled|contribute/calendar]] on March 12. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_3.9-rc1.mdwn b/wiki/src/news/test_3.9-rc1.mdwn index be6275546ba..781b148eab0 100644 --- a/wiki/src/news/test_3.9-rc1.mdwn +++ b/wiki/src/news/test_3.9-rc1.mdwn @@ -112,8 +112,6 @@ verify** step. Tails 3.9 is [[scheduled|contribute/calendar]] for September 5. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.9-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_4.0-beta1.mdwn b/wiki/src/news/test_4.0-beta1.mdwn index 650ee1a8998..20aeef5fabf 100644 --- a/wiki/src/news/test_4.0-beta1.mdwn +++ b/wiki/src/news/test_4.0-beta1.mdwn @@ -123,8 +123,6 @@ Follow our installation instructions: Tails 4.0 is [[scheduled|contribute/calendar]] for October 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.0-beta1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_4.0-beta2.mdwn b/wiki/src/news/test_4.0-beta2.mdwn index 40ac834e591..8c4ea5d8f57 100644 --- a/wiki/src/news/test_4.0-beta2.mdwn +++ b/wiki/src/news/test_4.0-beta2.mdwn @@ -109,8 +109,6 @@ Follow our installation instructions: Tails 4.0 is [[scheduled|contribute/calendar]] for October 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.0-beta2">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_4.0-rc1.mdwn b/wiki/src/news/test_4.0-rc1.mdwn index bd61552aa2b..52d0745441c 100644 --- a/wiki/src/news/test_4.0-rc1.mdwn +++ b/wiki/src/news/test_4.0-rc1.mdwn @@ -116,8 +116,6 @@ Follow our installation instructions: Tails 4.0 is [[scheduled|contribute/calendar]] for October 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.0-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_4.11-rc1.mdwn b/wiki/src/news/test_4.11-rc1.mdwn index 1b38b2eb892..2da5d2205d9 100644 --- a/wiki/src/news/test_4.11-rc1.mdwn +++ b/wiki/src/news/test_4.11-rc1.mdwn @@ -107,8 +107,6 @@ Follow our installation instructions: Tails 4.11 is [[scheduled|contribute/calendar]] for September 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.11-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_4.5-rc1.mdwn b/wiki/src/news/test_4.5-rc1.mdwn index 5fede4d21cf..e4dc0b1ee6c 100644 --- a/wiki/src/news/test_4.5-rc1.mdwn +++ b/wiki/src/news/test_4.5-rc1.mdwn @@ -156,8 +156,6 @@ Follow our installation instructions: Tails 4.5 is [[scheduled|contribute/calendar]] for April 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.5-rc1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/test_5.0-beta1.mdwn b/wiki/src/news/test_5.0-beta1.mdwn index c1961513e17..fe6ce84ba39 100644 --- a/wiki/src/news/test_5.0-beta1.mdwn +++ b/wiki/src/news/test_5.0-beta1.mdwn @@ -106,8 +106,6 @@ you install instead of upgrading.</p></div> We will keep our [[calendar|contribute/calendar]] updated regarding the planned release date of Tails 5.0. -Have a look at our [[!tails_roadmap]] to see where we are heading to. - We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=5.0-beta1">donating</a> is only one of them). Come [[talk to us|about/contact#tails-dev]]! diff --git a/wiki/src/news/version_0.10.mdwn b/wiki/src/news/version_0.10.mdwn index eb0a465c05f..72a8b6b624c 100644 --- a/wiki/src/news/version_0.10.mdwn +++ b/wiki/src/news/version_0.10.mdwn @@ -101,9 +101,6 @@ in the 2 GB to 4 GB region is wiped. The improvements made in Tails # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.11.mdwn b/wiki/src/news/version_0.11.mdwn index 1f2838a9772..ce791085ca6 100644 --- a/wiki/src/news/version_0.11.mdwn +++ b/wiki/src/news/version_0.11.mdwn @@ -87,9 +87,6 @@ See the Getting started page. # A glimpse towards the future -Where do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.12.1.mdwn b/wiki/src/news/version_0.12.1.mdwn index e45c77ecc02..3135a95e2e5 100644 --- a/wiki/src/news/version_0.12.1.mdwn +++ b/wiki/src/news/version_0.12.1.mdwn @@ -44,9 +44,6 @@ See the Getting started page. # A glimpse towards the future -Where do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.12.mdwn b/wiki/src/news/version_0.12.mdwn index 62b150ba3a5..e0c5152f44e 100644 --- a/wiki/src/news/version_0.12.mdwn +++ b/wiki/src/news/version_0.12.mdwn @@ -71,9 +71,6 @@ See the Getting started page. # A glimpse towards the future -Where do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.13.mdwn b/wiki/src/news/version_0.13.mdwn index 66e25f6e12e..62f9d178240 100644 --- a/wiki/src/news/version_0.13.mdwn +++ b/wiki/src/news/version_0.13.mdwn @@ -69,7 +69,6 @@ that affects the last release of Tails|support/known_issues]]. # What's coming up? -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute diff --git a/wiki/src/news/version_0.14.mdwn b/wiki/src/news/version_0.14.mdwn index 2a853887529..e744951c5dc 100644 --- a/wiki/src/news/version_0.14.mdwn +++ b/wiki/src/news/version_0.14.mdwn @@ -57,7 +57,6 @@ that affects the last release of Tails|support/known_issues]]. # What's coming up? -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute diff --git a/wiki/src/news/version_0.15.mdwn b/wiki/src/news/version_0.15.mdwn index 4bf665591ce..b45d2679656 100644 --- a/wiki/src/news/version_0.15.mdwn +++ b/wiki/src/news/version_0.15.mdwn @@ -61,7 +61,6 @@ that affects the last release of Tails|support/known_issues]]. # What's coming up? -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute diff --git a/wiki/src/news/version_0.16.mdwn b/wiki/src/news/version_0.16.mdwn index 9d836467b9a..cc5ad5bb13e 100644 --- a/wiki/src/news/version_0.16.mdwn +++ b/wiki/src/news/version_0.16.mdwn @@ -63,7 +63,6 @@ that affects the last release of Tails|support/known_issues]]. # What's coming up? -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], there are many ways **you** can contribute diff --git a/wiki/src/news/version_0.17.1.mdwn b/wiki/src/news/version_0.17.1.mdwn index 6acfd72a2a3..63332790d24 100644 --- a/wiki/src/news/version_0.17.1.mdwn +++ b/wiki/src/news/version_0.17.1.mdwn @@ -46,7 +46,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release (0.17.2) is scheduled for April 9. It will be a minor, bugfix only one. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], there are many ways **you** can contribute diff --git a/wiki/src/news/version_0.17.2.mdwn b/wiki/src/news/version_0.17.2.mdwn index 5311bedfdfc..9c5cb14a402 100644 --- a/wiki/src/news/version_0.17.2.mdwn +++ b/wiki/src/news/version_0.17.2.mdwn @@ -48,7 +48,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release (0.18) is scheduled for May 16. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], there are many ways **you** can contribute diff --git a/wiki/src/news/version_0.17.mdwn b/wiki/src/news/version_0.17.mdwn index 15be1578c4e..29e7b930900 100644 --- a/wiki/src/news/version_0.17.mdwn +++ b/wiki/src/news/version_0.17.mdwn @@ -82,7 +82,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for April 9. It will probably be a minor, bugfix only one. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], there are many ways **you** can contribute diff --git a/wiki/src/news/version_0.18.mdwn b/wiki/src/news/version_0.18.mdwn index 62632eadadd..76b03bb33d5 100644 --- a/wiki/src/news/version_0.18.mdwn +++ b/wiki/src/news/version_0.18.mdwn @@ -72,7 +72,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for June 27. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? As explained in our [["how to contribute" documentation|contribute]], there are many ways **you** can contribute diff --git a/wiki/src/news/version_0.19.mdwn b/wiki/src/news/version_0.19.mdwn index ea46478c4ef..62ef6f4b7ae 100644 --- a/wiki/src/news/version_0.19.mdwn +++ b/wiki/src/news/version_0.19.mdwn @@ -56,7 +56,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for around August 7. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.20.1.mdwn b/wiki/src/news/version_0.20.1.mdwn index bec306e941c..442e83c9e19 100644 --- a/wiki/src/news/version_0.20.1.mdwn +++ b/wiki/src/news/version_0.20.1.mdwn @@ -75,7 +75,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for around October 29. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.20.mdwn b/wiki/src/news/version_0.20.mdwn index 924efeb10a1..71b82443c2e 100644 --- a/wiki/src/news/version_0.20.mdwn +++ b/wiki/src/news/version_0.20.mdwn @@ -63,7 +63,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for around September 19. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.21.mdwn b/wiki/src/news/version_0.21.mdwn index 0c072dd787c..5ce314d88d6 100644 --- a/wiki/src/news/version_0.21.mdwn +++ b/wiki/src/news/version_0.21.mdwn @@ -64,7 +64,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is scheduled for around December 11. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.22.1.mdwn b/wiki/src/news/version_0.22.1.mdwn index a1cdc6f7730..0162e0ea65d 100644 --- a/wiki/src/news/version_0.22.1.mdwn +++ b/wiki/src/news/version_0.22.1.mdwn @@ -65,7 +65,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for March 18. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.22.mdwn b/wiki/src/news/version_0.22.mdwn index ce36981e6b2..3baa114662e 100644 --- a/wiki/src/news/version_0.22.mdwn +++ b/wiki/src/news/version_0.22.mdwn @@ -77,7 +77,6 @@ The next Tails release is scheduled for January 21. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.23.mdwn b/wiki/src/news/version_0.23.mdwn index 8f166617053..74533e21bd6 100644 --- a/wiki/src/news/version_0.23.mdwn +++ b/wiki/src/news/version_0.23.mdwn @@ -102,7 +102,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for April 29. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_0.6.mdwn b/wiki/src/news/version_0.6.mdwn index 802049e5807..e870e35c18c 100644 --- a/wiki/src/news/version_0.6.mdwn +++ b/wiki/src/news/version_0.6.mdwn @@ -44,12 +44,8 @@ See the online Changelog for details. -Were do we go from here? - -1. This release is likely to be the last one to be based on Debian - Lenny. Further development will be based on the (to be released - soon) next Debian stable release: Squeeze. -2. Have a look to our [[!tails_roadmap]] to learn more about our - plans. +This release is likely to be the last one to be based on Debian +Lenny. Further development will be based on the (to be released +soon) next Debian stable release: Squeeze. [[Download it, seed it!|install]] diff --git a/wiki/src/news/version_0.7.1.mdwn b/wiki/src/news/version_0.7.1.mdwn index 621b507b1a8..00329981ddc 100644 --- a/wiki/src/news/version_0.7.1.mdwn +++ b/wiki/src/news/version_0.7.1.mdwn @@ -75,9 +75,6 @@ soonish. # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.7.2.mdwn b/wiki/src/news/version_0.7.2.mdwn index 59b161b9f70..f7f6fa2d8c8 100644 --- a/wiki/src/news/version_0.7.2.mdwn +++ b/wiki/src/news/version_0.7.2.mdwn @@ -39,9 +39,6 @@ See the Getting started page. # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.7.mdwn b/wiki/src/news/version_0.7.mdwn index 6e6bc265746..87ba2f2750f 100644 --- a/wiki/src/news/version_0.7.mdwn +++ b/wiki/src/news/version_0.7.mdwn @@ -78,9 +78,6 @@ soonish. # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our brand new [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.8.mdwn b/wiki/src/news/version_0.8.mdwn index e5df61649c0..487cfd97058 100644 --- a/wiki/src/news/version_0.8.mdwn +++ b/wiki/src/news/version_0.8.mdwn @@ -43,9 +43,6 @@ hardware. Your mileage may vary. # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_0.9.mdwn b/wiki/src/news/version_0.9.mdwn index e68470cf8a5..a2f852216b7 100644 --- a/wiki/src/news/version_0.9.mdwn +++ b/wiki/src/news/version_0.9.mdwn @@ -83,9 +83,6 @@ in the 2 GB to 4 GB region is wiped. The improvements made in Tails # A glimpse towards the future -Were do we go from here? Have a look to our [[!tails_roadmap]] to -see where we are heading to. - Would you want to help? As explained in our [["how to contribute" documentation|contribute]], here are many ways **you** can contribute to Tails: no need to be a hardcore developer. diff --git a/wiki/src/news/version_1.0.1.mdwn b/wiki/src/news/version_1.0.1.mdwn index 24974ab99f1..dff44194ffc 100644 --- a/wiki/src/news/version_1.0.1.mdwn +++ b/wiki/src/news/version_1.0.1.mdwn @@ -47,7 +47,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for July 22. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.0.mdwn b/wiki/src/news/version_1.0.mdwn index ddc0318e3b1..bf023f30411 100644 --- a/wiki/src/news/version_1.0.mdwn +++ b/wiki/src/news/version_1.0.mdwn @@ -138,7 +138,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for June 10. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Would you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.1.1.mdwn b/wiki/src/news/version_1.1.1.mdwn index 2c92ec82566..a6a3c0c588f 100644 --- a/wiki/src/news/version_1.1.1.mdwn +++ b/wiki/src/news/version_1.1.1.mdwn @@ -63,7 +63,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for October 14. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.1.2.mdwn b/wiki/src/news/version_1.1.2.mdwn index 1a8d4dfeee9..5dff9882441 100644 --- a/wiki/src/news/version_1.1.2.mdwn +++ b/wiki/src/news/version_1.1.2.mdwn @@ -59,7 +59,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for October 14. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.1.mdwn b/wiki/src/news/version_1.1.mdwn index 0bf47aa33fc..6ddacfe8692 100644 --- a/wiki/src/news/version_1.1.mdwn +++ b/wiki/src/news/version_1.1.mdwn @@ -96,7 +96,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for September 2. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.2.1.mdwn b/wiki/src/news/version_1.2.1.mdwn index 5f87b4fd48b..9cea850ee15 100644 --- a/wiki/src/news/version_1.2.1.mdwn +++ b/wiki/src/news/version_1.2.1.mdwn @@ -76,7 +76,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for January 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.2.2.mdwn b/wiki/src/news/version_1.2.2.mdwn index 273ee2273f8..8bf187e086e 100644 --- a/wiki/src/news/version_1.2.2.mdwn +++ b/wiki/src/news/version_1.2.2.mdwn @@ -77,7 +77,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for January 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.2.3.mdwn b/wiki/src/news/version_1.2.3.mdwn index 77d7f158437..849f1683e6c 100644 --- a/wiki/src/news/version_1.2.3.mdwn +++ b/wiki/src/news/version_1.2.3.mdwn @@ -64,7 +64,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for February 24. -Have a look at our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.2.mdwn b/wiki/src/news/version_1.2.mdwn index 05bd36ead30..17bb13e9529 100644 --- a/wiki/src/news/version_1.2.mdwn +++ b/wiki/src/news/version_1.2.mdwn @@ -65,7 +65,6 @@ that affects the last release of Tails|support/known_issues]]. The next Tails release is [[scheduled|contribute/calendar]] for November 25. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.3.1.mdwn b/wiki/src/news/version_1.3.1.mdwn index e81ba6f5253..8fe1f9dbebc 100644 --- a/wiki/src/news/version_1.3.1.mdwn +++ b/wiki/src/news/version_1.3.1.mdwn @@ -41,7 +41,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for March 31. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.3.2.mdwn b/wiki/src/news/version_1.3.2.mdwn index bb3d78b118a..d6d8c654457 100644 --- a/wiki/src/news/version_1.3.2.mdwn +++ b/wiki/src/news/version_1.3.2.mdwn @@ -38,7 +38,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for May 12. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.3.mdwn b/wiki/src/news/version_1.3.mdwn index b0e590bac22..79cb3d99b0c 100644 --- a/wiki/src/news/version_1.3.mdwn +++ b/wiki/src/news/version_1.3.mdwn @@ -64,7 +64,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for April 7. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.4.1.mdwn b/wiki/src/news/version_1.4.1.mdwn index 17de2ed9273..33f5ab904ed 100644 --- a/wiki/src/news/version_1.4.1.mdwn +++ b/wiki/src/news/version_1.4.1.mdwn @@ -48,7 +48,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for August 11. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]], for diff --git a/wiki/src/news/version_1.4.mdwn b/wiki/src/news/version_1.4.mdwn index a803bbe8f62..a18329763b2 100644 --- a/wiki/src/news/version_1.4.mdwn +++ b/wiki/src/news/version_1.4.mdwn @@ -109,7 +109,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for June 30. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.5.1.mdwn b/wiki/src/news/version_1.5.1.mdwn index af51b917c81..503f8f7e098 100644 --- a/wiki/src/news/version_1.5.1.mdwn +++ b/wiki/src/news/version_1.5.1.mdwn @@ -36,7 +36,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for September 22. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]]. If you want to help, come talk diff --git a/wiki/src/news/version_1.5.mdwn b/wiki/src/news/version_1.5.mdwn index 08551314b84..def02bdb6af 100644 --- a/wiki/src/news/version_1.5.mdwn +++ b/wiki/src/news/version_1.5.mdwn @@ -54,7 +54,6 @@ Go to the [[install]] page. The next Tails release is [[scheduled|contribute/calendar]] for September 22. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]], for diff --git a/wiki/src/news/version_1.6.mdwn b/wiki/src/news/version_1.6.mdwn index b598a5bc9a0..e4887eb53a4 100644 --- a/wiki/src/news/version_1.6.mdwn +++ b/wiki/src/news/version_1.6.mdwn @@ -50,7 +50,6 @@ manually|doc/upgrade/#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for November 3. -Have a look to our [[!tails_roadmap]] to see where we are heading to. Do you want to help? There are many ways [[**you** can contribute to Tails|contribute]], for diff --git a/wiki/src/news/version_1.7.mdwn b/wiki/src/news/version_1.7.mdwn index ce27545ac5b..4bcca8455b4 100644 --- a/wiki/src/news/version_1.7.mdwn +++ b/wiki/src/news/version_1.7.mdwn @@ -78,7 +78,6 @@ manually|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for December 15. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_1.8.1.mdwn b/wiki/src/news/version_1.8.1.mdwn index ad1706806fd..0c0291b24e2 100644 --- a/wiki/src/news/version_1.8.1.mdwn +++ b/wiki/src/news/version_1.8.1.mdwn @@ -57,7 +57,6 @@ to the network: The next Tails release is [[scheduled|contribute/calendar]] for January 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_1.8.2.mdwn b/wiki/src/news/version_1.8.2.mdwn index a363ed8706b..ad10f282746 100644 --- a/wiki/src/news/version_1.8.2.mdwn +++ b/wiki/src/news/version_1.8.2.mdwn @@ -35,7 +35,6 @@ manually|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for January 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_1.8.mdwn b/wiki/src/news/version_1.8.mdwn index 8712cca578e..8918ffd09bb 100644 --- a/wiki/src/news/version_1.8.mdwn +++ b/wiki/src/news/version_1.8.mdwn @@ -76,7 +76,6 @@ manually|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for January 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.0.1.mdwn b/wiki/src/news/version_2.0.1.mdwn index 5386d387823..311abae1dba 100644 --- a/wiki/src/news/version_2.0.1.mdwn +++ b/wiki/src/news/version_2.0.1.mdwn @@ -35,7 +35,6 @@ manually|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for March 08. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.0.mdwn b/wiki/src/news/version_2.0.mdwn index f71ad3404aa..1139dc9a8e6 100644 --- a/wiki/src/news/version_2.0.mdwn +++ b/wiki/src/news/version_2.0.mdwn @@ -126,7 +126,6 @@ instructions|doc/upgrade#manual]] instead. The next Tails release is [[scheduled|contribute/calendar]] for March 6. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.10.mdwn b/wiki/src/news/version_2.10.mdwn index d27e172866c..8234f3d4926 100644 --- a/wiki/src/news/version_2.10.mdwn +++ b/wiki/src/news/version_2.10.mdwn @@ -82,7 +82,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.11 is [[scheduled|contribute/calendar]] for March 3rd. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=2.10">donating</a> is only one of diff --git a/wiki/src/news/version_2.11.mdwn b/wiki/src/news/version_2.11.mdwn index e37a3836c80..1a6726a1932 100644 --- a/wiki/src/news/version_2.11.mdwn +++ b/wiki/src/news/version_2.11.mdwn @@ -76,7 +76,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.12 is [[scheduled|contribute/calendar]] for April 18th. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=2.11">donating</a> is only one of diff --git a/wiki/src/news/version_2.12.mdwn b/wiki/src/news/version_2.12.mdwn index 54ec1be4db8..884fcf9df84 100644 --- a/wiki/src/news/version_2.12.mdwn +++ b/wiki/src/news/version_2.12.mdwn @@ -53,7 +53,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.0 is [[scheduled|contribute/calendar]] for June 13th. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=2.12">donating</a> is only one of diff --git a/wiki/src/news/version_2.2.1.mdwn b/wiki/src/news/version_2.2.1.mdwn index eca377f4171..e638603c6d9 100644 --- a/wiki/src/news/version_2.2.1.mdwn +++ b/wiki/src/news/version_2.2.1.mdwn @@ -31,7 +31,6 @@ manually|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for April 19. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.2.mdwn b/wiki/src/news/version_2.2.mdwn index 41495c6263f..7c7a6336855 100644 --- a/wiki/src/news/version_2.2.mdwn +++ b/wiki/src/news/version_2.2.mdwn @@ -76,7 +76,6 @@ do a manual upgrade|doc/upgrade#manual]]. The next Tails release is [[scheduled|contribute/calendar]] for April 19. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.3.mdwn b/wiki/src/news/version_2.3.mdwn index 2cc23a927fb..414ac12c5f0 100644 --- a/wiki/src/news/version_2.3.mdwn +++ b/wiki/src/news/version_2.3.mdwn @@ -54,7 +54,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.4 is [[scheduled|contribute/calendar]] for June 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.4.mdwn b/wiki/src/news/version_2.4.mdwn index e45143589f5..9b3a798aab1 100644 --- a/wiki/src/news/version_2.4.mdwn +++ b/wiki/src/news/version_2.4.mdwn @@ -105,7 +105,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.5 is [[scheduled|contribute/calendar]] for August 2. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.5.mdwn b/wiki/src/news/version_2.5.mdwn index 30245157e5d..e5f682c99be 100644 --- a/wiki/src/news/version_2.5.mdwn +++ b/wiki/src/news/version_2.5.mdwn @@ -62,7 +62,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.6 is [[scheduled|contribute/calendar]] for September 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.6.mdwn b/wiki/src/news/version_2.6.mdwn index 155da51b611..5b75a1d98b6 100644 --- a/wiki/src/news/version_2.6.mdwn +++ b/wiki/src/news/version_2.6.mdwn @@ -81,7 +81,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.7 is [[scheduled|contribute/calendar]] for November 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.7.1.mdwn b/wiki/src/news/version_2.7.1.mdwn index bd86a3762ba..5f4e560ae1a 100644 --- a/wiki/src/news/version_2.7.1.mdwn +++ b/wiki/src/news/version_2.7.1.mdwn @@ -36,7 +36,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.9 is [[scheduled|contribute/calendar]] for December 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] ([[donating|donate]] is only one of diff --git a/wiki/src/news/version_2.7.mdwn b/wiki/src/news/version_2.7.mdwn index 6e364d06333..5ade92ddb34 100644 --- a/wiki/src/news/version_2.7.mdwn +++ b/wiki/src/news/version_2.7.mdwn @@ -52,7 +52,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.8 is [[scheduled|contribute/calendar]] for December 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=2.7">donating</a> is only one of diff --git a/wiki/src/news/version_2.9.1.mdwn b/wiki/src/news/version_2.9.1.mdwn index cd7b7605f21..c161dd515a6 100644 --- a/wiki/src/news/version_2.9.1.mdwn +++ b/wiki/src/news/version_2.9.1.mdwn @@ -59,7 +59,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 2.10 is [[scheduled|contribute/calendar]] for January 24. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=2.9.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.0.1.mdwn b/wiki/src/news/version_3.0.1.mdwn index e723c20f1e9..51479eb6749 100644 --- a/wiki/src/news/version_3.0.1.mdwn +++ b/wiki/src/news/version_3.0.1.mdwn @@ -46,7 +46,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.1 is [[scheduled|contribute/calendar]] for August 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.0.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.0.mdwn b/wiki/src/news/version_3.0.mdwn index 5ed2c27c912..7e400c1c7d7 100644 --- a/wiki/src/news/version_3.0.mdwn +++ b/wiki/src/news/version_3.0.mdwn @@ -220,7 +220,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.1 is [[scheduled|contribute/calendar]] for August 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.0">donating</a> is only one of diff --git a/wiki/src/news/version_3.1.mdwn b/wiki/src/news/version_3.1.mdwn index e79eb894643..cb98861656e 100644 --- a/wiki/src/news/version_3.1.mdwn +++ b/wiki/src/news/version_3.1.mdwn @@ -49,7 +49,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.2 is [[scheduled|contribute/calendar]] for October 3. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.10.1.mdwn b/wiki/src/news/version_3.10.1.mdwn index 0fd26dca236..11ba1920032 100644 --- a/wiki/src/news/version_3.10.1.mdwn +++ b/wiki/src/news/version_3.10.1.mdwn @@ -70,7 +70,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.11 is [[scheduled|contribute/calendar]] for December 11. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.10.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.11.mdwn b/wiki/src/news/version_3.11.mdwn index ed902c1508c..33b3ad24e26 100644 --- a/wiki/src/news/version_3.11.mdwn +++ b/wiki/src/news/version_3.11.mdwn @@ -82,7 +82,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.12 is [[scheduled|contribute/calendar]] for January 29. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.11">donating</a> is only one of diff --git a/wiki/src/news/version_3.12.1.mdwn b/wiki/src/news/version_3.12.1.mdwn index e07ddda05da..2a64ece8038 100644 --- a/wiki/src/news/version_3.12.1.mdwn +++ b/wiki/src/news/version_3.12.1.mdwn @@ -86,7 +86,6 @@ You can also test an experimental image: Tails 3.13 is [[scheduled|contribute/calendar]] for March 19. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.12.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.12.mdwn b/wiki/src/news/version_3.12.mdwn index af00b112bc7..2b18d5fa367 100644 --- a/wiki/src/news/version_3.12.mdwn +++ b/wiki/src/news/version_3.12.mdwn @@ -136,7 +136,6 @@ You can also test an experimental image: Tails 3.13 is [[scheduled|contribute/calendar]] for March 19. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.12">donating</a> is only one of diff --git a/wiki/src/news/version_3.13.1.mdwn b/wiki/src/news/version_3.13.1.mdwn index 394d4b69b93..d4b3d62cea3 100644 --- a/wiki/src/news/version_3.13.1.mdwn +++ b/wiki/src/news/version_3.13.1.mdwn @@ -128,7 +128,6 @@ Tails 3.13.1: Tails 3.14 is [[scheduled|contribute/calendar]] for May 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.13.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.13.2.mdwn b/wiki/src/news/version_3.13.2.mdwn index 036d8b85d2b..a40f6909674 100644 --- a/wiki/src/news/version_3.13.2.mdwn +++ b/wiki/src/news/version_3.13.2.mdwn @@ -244,7 +244,6 @@ Tails 3.13.2: Tails 3.14 is [[scheduled|contribute/calendar]] for May 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.13.2">donating</a> is only one of diff --git a/wiki/src/news/version_3.13.mdwn b/wiki/src/news/version_3.13.mdwn index eb72317f955..662b59a87e2 100644 --- a/wiki/src/news/version_3.13.mdwn +++ b/wiki/src/news/version_3.13.mdwn @@ -165,7 +165,6 @@ Tails 3.13: Tails 3.14 is [[scheduled|contribute/calendar]] for May 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.13">donating</a> is only one of diff --git a/wiki/src/news/version_3.14.1.mdwn b/wiki/src/news/version_3.14.1.mdwn index 9e25f29188c..a5544743469 100644 --- a/wiki/src/news/version_3.14.1.mdwn +++ b/wiki/src/news/version_3.14.1.mdwn @@ -146,7 +146,6 @@ Tails 3.14.1: Tails 3.15 is [[scheduled|contribute/calendar]] for July 9. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.14.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.14.2.mdwn b/wiki/src/news/version_3.14.2.mdwn index dfd35759682..847448b28a7 100644 --- a/wiki/src/news/version_3.14.2.mdwn +++ b/wiki/src/news/version_3.14.2.mdwn @@ -97,7 +97,6 @@ Tails 3.14.2: Tails 3.15 is [[scheduled|contribute/calendar]] for July 9. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.14.2">donating</a> is only one of diff --git a/wiki/src/news/version_3.14.mdwn b/wiki/src/news/version_3.14.mdwn index 6c6436e8011..2cd4fa0e82c 100644 --- a/wiki/src/news/version_3.14.mdwn +++ b/wiki/src/news/version_3.14.mdwn @@ -147,7 +147,6 @@ Tails 3.14: Tails 3.15 is [[scheduled|contribute/calendar]] for July 9. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.14">donating</a> is only one of diff --git a/wiki/src/news/version_3.15.mdwn b/wiki/src/news/version_3.15.mdwn index f9a48de8e11..cb3abfc6985 100644 --- a/wiki/src/news/version_3.15.mdwn +++ b/wiki/src/news/version_3.15.mdwn @@ -68,7 +68,6 @@ Tails 3.15: Tails 3.16 is [[scheduled|contribute/calendar]] for September 3. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.15">donating</a> is only one of diff --git a/wiki/src/news/version_3.16.mdwn b/wiki/src/news/version_3.16.mdwn index 919f207ffff..3db50cf6282 100644 --- a/wiki/src/news/version_3.16.mdwn +++ b/wiki/src/news/version_3.16.mdwn @@ -79,7 +79,6 @@ Tails 3.16: Tails 4.0 is [[scheduled|contribute/calendar]] for October 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.16">donating</a> is only one of diff --git a/wiki/src/news/version_3.2.mdwn b/wiki/src/news/version_3.2.mdwn index dd59f913234..b6af13ca92c 100644 --- a/wiki/src/news/version_3.2.mdwn +++ b/wiki/src/news/version_3.2.mdwn @@ -92,7 +92,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.3 is [[scheduled|contribute/calendar]] for November 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.2">donating</a> is only one of diff --git a/wiki/src/news/version_3.3.mdwn b/wiki/src/news/version_3.3.mdwn index 3f442dde399..96bccc31c28 100644 --- a/wiki/src/news/version_3.3.mdwn +++ b/wiki/src/news/version_3.3.mdwn @@ -69,7 +69,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.5 is [[scheduled|contribute/calendar]] for January 16. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.3">donating</a> is only one of diff --git a/wiki/src/news/version_3.4.mdwn b/wiki/src/news/version_3.4.mdwn index 93d4062f6a2..e3b9d6fb70f 100644 --- a/wiki/src/news/version_3.4.mdwn +++ b/wiki/src/news/version_3.4.mdwn @@ -72,7 +72,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.5 is [[scheduled|contribute/calendar]] for January 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.4">donating</a> is only one of diff --git a/wiki/src/news/version_3.5.mdwn b/wiki/src/news/version_3.5.mdwn index 40537927450..2637fd131cf 100644 --- a/wiki/src/news/version_3.5.mdwn +++ b/wiki/src/news/version_3.5.mdwn @@ -84,7 +84,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.6 is [[scheduled|contribute/calendar]] for March 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.5">donating</a> is only one of diff --git a/wiki/src/news/version_3.6.1.mdwn b/wiki/src/news/version_3.6.1.mdwn index 2622476bcde..5fbe6fe9897 100644 --- a/wiki/src/news/version_3.6.1.mdwn +++ b/wiki/src/news/version_3.6.1.mdwn @@ -67,7 +67,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.7 is [[scheduled|contribute/calendar]] for May 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.6.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.6.2.mdwn b/wiki/src/news/version_3.6.2.mdwn index d889f398c2f..324975d83e7 100644 --- a/wiki/src/news/version_3.6.2.mdwn +++ b/wiki/src/news/version_3.6.2.mdwn @@ -67,7 +67,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.7 is [[scheduled|contribute/calendar]] for May 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.6.2">donating</a> is only one of diff --git a/wiki/src/news/version_3.6.mdwn b/wiki/src/news/version_3.6.mdwn index c07e8803f6a..819f30a15d2 100644 --- a/wiki/src/news/version_3.6.mdwn +++ b/wiki/src/news/version_3.6.mdwn @@ -133,7 +133,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.7 is [[scheduled|contribute/calendar]] for May 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.6">donating</a> is only one of diff --git a/wiki/src/news/version_3.7.1.mdwn b/wiki/src/news/version_3.7.1.mdwn index eb773cf288e..fc007e5de5a 100644 --- a/wiki/src/news/version_3.7.1.mdwn +++ b/wiki/src/news/version_3.7.1.mdwn @@ -58,7 +58,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.8 is [[scheduled|contribute/calendar]] for June 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.7.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.7.mdwn b/wiki/src/news/version_3.7.mdwn index 56d3c40a7fa..9df823a47cc 100644 --- a/wiki/src/news/version_3.7.mdwn +++ b/wiki/src/news/version_3.7.mdwn @@ -65,7 +65,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.8 is [[scheduled|contribute/calendar]] for June 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.7">donating</a> is only one of diff --git a/wiki/src/news/version_3.8.mdwn b/wiki/src/news/version_3.8.mdwn index d7c78165433..d23b9cd09e9 100644 --- a/wiki/src/news/version_3.8.mdwn +++ b/wiki/src/news/version_3.8.mdwn @@ -62,7 +62,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.9 is [[scheduled|contribute/calendar]] for September 5. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.8">donating</a> is only one of diff --git a/wiki/src/news/version_3.9.1.mdwn b/wiki/src/news/version_3.9.1.mdwn index 422778442bb..026d21f76c8 100644 --- a/wiki/src/news/version_3.9.1.mdwn +++ b/wiki/src/news/version_3.9.1.mdwn @@ -61,7 +61,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.10 is [[scheduled|contribute/calendar]] for October 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.9.1">donating</a> is only one of diff --git a/wiki/src/news/version_3.9.mdwn b/wiki/src/news/version_3.9.mdwn index dbd98e3b33f..3d9db275166 100644 --- a/wiki/src/news/version_3.9.mdwn +++ b/wiki/src/news/version_3.9.mdwn @@ -139,7 +139,6 @@ See the list of [[long-standing issues|support/known_issues]]. Tails 3.10 is [[scheduled|contribute/calendar]] for October 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=3.9">donating</a> is only one of diff --git a/wiki/src/news/version_4.0.mdwn b/wiki/src/news/version_4.0.mdwn index e0f7fb4facc..93c7fe9c590 100644 --- a/wiki/src/news/version_4.0.mdwn +++ b/wiki/src/news/version_4.0.mdwn @@ -210,7 +210,6 @@ Tails 4.0: Tails 4.1 is [[scheduled|contribute/calendar]] for December 3. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.0">donating</a> is only one of diff --git a/wiki/src/news/version_4.1.1.mdwn b/wiki/src/news/version_4.1.1.mdwn index 9419ca0fd92..09b0b4e67cb 100644 --- a/wiki/src/news/version_4.1.1.mdwn +++ b/wiki/src/news/version_4.1.1.mdwn @@ -53,7 +53,6 @@ Tails 4.1.1: Tails 4.2 is [[scheduled|contribute/calendar]] for January 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.1.1">donating</a> is only one of diff --git a/wiki/src/news/version_4.1.mdwn b/wiki/src/news/version_4.1.mdwn index 6af73ec9ee0..88dd9c9ab28 100644 --- a/wiki/src/news/version_4.1.mdwn +++ b/wiki/src/news/version_4.1.mdwn @@ -95,7 +95,6 @@ Tails 4.1: Tails 4.2 is [[scheduled|contribute/calendar]] for January 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.1">donating</a> is only one of diff --git a/wiki/src/news/version_4.10.mdwn b/wiki/src/news/version_4.10.mdwn index 30f177fe413..ea1ec58ee55 100644 --- a/wiki/src/news/version_4.10.mdwn +++ b/wiki/src/news/version_4.10.mdwn @@ -78,7 +78,6 @@ Tails 4.10 directly: Tails 4.11 is [[scheduled|contribute/calendar]] for September 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.10">donating</a> is only one of diff --git a/wiki/src/news/version_4.11.mdwn b/wiki/src/news/version_4.11.mdwn index 05ca00e2938..561f392309b 100644 --- a/wiki/src/news/version_4.11.mdwn +++ b/wiki/src/news/version_4.11.mdwn @@ -79,7 +79,6 @@ Tails 4.11 directly: Tails 4.12 is [[scheduled|contribute/calendar]] for October 20. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.11">donating</a> is only one of diff --git a/wiki/src/news/version_4.12.mdwn b/wiki/src/news/version_4.12.mdwn index c6225afe22d..57cdaec6e5d 100644 --- a/wiki/src/news/version_4.12.mdwn +++ b/wiki/src/news/version_4.12.mdwn @@ -77,7 +77,6 @@ Tails 4.12 directly: Tails 4.13 is [[scheduled|contribute/calendar]] for November 17. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.12">donating</a> is only one of diff --git a/wiki/src/news/version_4.13.mdwn b/wiki/src/news/version_4.13.mdwn index 56f0312c98c..27d79813748 100644 --- a/wiki/src/news/version_4.13.mdwn +++ b/wiki/src/news/version_4.13.mdwn @@ -89,7 +89,6 @@ Tails 4.13 directly: Tails 4.14 is [[scheduled|contribute/calendar]] for December 15. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.13">donating</a> is only one of diff --git a/wiki/src/news/version_4.14.mdwn b/wiki/src/news/version_4.14.mdwn index 1df15ce41bb..7dfe1d30932 100644 --- a/wiki/src/news/version_4.14.mdwn +++ b/wiki/src/news/version_4.14.mdwn @@ -85,7 +85,6 @@ Tails 4.14 directly: Tails 4.15 is [[scheduled|contribute/calendar]] for January 26. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.14">donating</a> is only one of diff --git a/wiki/src/news/version_4.15.1.mdwn b/wiki/src/news/version_4.15.1.mdwn index 20b27cc0527..6154d089ef7 100644 --- a/wiki/src/news/version_4.15.1.mdwn +++ b/wiki/src/news/version_4.15.1.mdwn @@ -58,7 +58,6 @@ Tails 4.15.1 directly: Tails 4.16 is [[scheduled|contribute/calendar]] for February 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.15.1">donating</a> is only one of diff --git a/wiki/src/news/version_4.15.mdwn b/wiki/src/news/version_4.15.mdwn index 65a5f06779a..8e0ef36848c 100644 --- a/wiki/src/news/version_4.15.mdwn +++ b/wiki/src/news/version_4.15.mdwn @@ -74,7 +74,6 @@ Tails 4.15 directly: Tails 4.16 is [[scheduled|contribute/calendar]] for February 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.15">donating</a> is only one of diff --git a/wiki/src/news/version_4.16.mdwn b/wiki/src/news/version_4.16.mdwn index c27fba13494..dc84476ed3c 100644 --- a/wiki/src/news/version_4.16.mdwn +++ b/wiki/src/news/version_4.16.mdwn @@ -64,7 +64,6 @@ Tails 4.16 directly: Tails 4.17 is [[scheduled|contribute/calendar]] for March 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.16">donating</a> is only one of diff --git a/wiki/src/news/version_4.17.mdwn b/wiki/src/news/version_4.17.mdwn index 6e9ae57920f..76f04eb5868 100644 --- a/wiki/src/news/version_4.17.mdwn +++ b/wiki/src/news/version_4.17.mdwn @@ -77,7 +77,6 @@ Tails 4.17 directly: Tails 4.18 is [[scheduled|contribute/calendar]] for April 20. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.17">donating</a> is only one of diff --git a/wiki/src/news/version_4.18.mdwn b/wiki/src/news/version_4.18.mdwn index 78fe4042c09..c230e400021 100644 --- a/wiki/src/news/version_4.18.mdwn +++ b/wiki/src/news/version_4.18.mdwn @@ -83,7 +83,6 @@ Tails 4.18 directly: Tails 4.19 is [[scheduled|contribute/calendar]] for June 1. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.17">donating</a> is only one of diff --git a/wiki/src/news/version_4.19.mdwn b/wiki/src/news/version_4.19.mdwn index 492d0c6a33c..587cab3c4b7 100644 --- a/wiki/src/news/version_4.19.mdwn +++ b/wiki/src/news/version_4.19.mdwn @@ -90,4 +90,3 @@ Tails 4.19 directly: Tails 4.20 is [[scheduled|contribute/calendar]] for July 13. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.2.2.mdwn b/wiki/src/news/version_4.2.2.mdwn index 6ca0eb5e02f..54c52d45be3 100644 --- a/wiki/src/news/version_4.2.2.mdwn +++ b/wiki/src/news/version_4.2.2.mdwn @@ -72,7 +72,6 @@ Tails 4.2.2: Tails 4.3 is [[scheduled|contribute/calendar]] for February 11. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.2.2">donating</a> is only one of diff --git a/wiki/src/news/version_4.2.mdwn b/wiki/src/news/version_4.2.mdwn index 021608430d6..3abd6d32af3 100644 --- a/wiki/src/news/version_4.2.mdwn +++ b/wiki/src/news/version_4.2.mdwn @@ -103,7 +103,6 @@ Tails 4.2: Tails 4.3 is [[scheduled|contribute/calendar]] for February 11. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.2">donating</a> is only one of diff --git a/wiki/src/news/version_4.20.mdwn b/wiki/src/news/version_4.20.mdwn index e2b2d155207..25a3f28059f 100644 --- a/wiki/src/news/version_4.20.mdwn +++ b/wiki/src/news/version_4.20.mdwn @@ -138,4 +138,3 @@ Tails 4.20 directly: Tails 4.21 is [[scheduled|contribute/calendar]] for August 10. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.21.mdwn b/wiki/src/news/version_4.21.mdwn index 187e9fa213c..b8eae1dffe0 100644 --- a/wiki/src/news/version_4.21.mdwn +++ b/wiki/src/news/version_4.21.mdwn @@ -55,4 +55,3 @@ Tails 4.21 directly: Tails 4.22 is [[scheduled|contribute/calendar]] for September 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.22.mdwn b/wiki/src/news/version_4.22.mdwn index 780a096a38f..5894046df0e 100644 --- a/wiki/src/news/version_4.22.mdwn +++ b/wiki/src/news/version_4.22.mdwn @@ -126,4 +126,3 @@ Tails 4.22 directly: Tails 4.23 is [[scheduled|contribute/calendar]] for October 5. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.23.mdwn b/wiki/src/news/version_4.23.mdwn index 1b6db468098..1e4fece9538 100644 --- a/wiki/src/news/version_4.23.mdwn +++ b/wiki/src/news/version_4.23.mdwn @@ -53,4 +53,3 @@ Tails 4.23 directly: Tails 4.24 is [[scheduled|contribute/calendar]] for November 2. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.24.mdwn b/wiki/src/news/version_4.24.mdwn index b0dbc4be3f1..88c225c25b4 100644 --- a/wiki/src/news/version_4.24.mdwn +++ b/wiki/src/news/version_4.24.mdwn @@ -74,4 +74,3 @@ Tails 4.24 directly: Tails 4.25 is [[scheduled|contribute/calendar]] for December 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.25.mdwn b/wiki/src/news/version_4.25.mdwn index 406b3694bef..5564bfa268e 100644 --- a/wiki/src/news/version_4.25.mdwn +++ b/wiki/src/news/version_4.25.mdwn @@ -106,4 +106,3 @@ Tails 4.25 directly: Tails 4.26 is [[scheduled|contribute/calendar]] for January 11. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.26.mdwn b/wiki/src/news/version_4.26.mdwn index 38cb01b36d1..695f340cd7e 100644 --- a/wiki/src/news/version_4.26.mdwn +++ b/wiki/src/news/version_4.26.mdwn @@ -60,4 +60,3 @@ Tails 4.26 directly: Tails 4.27 is [[scheduled|contribute/calendar]] for February 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.27.mdwn b/wiki/src/news/version_4.27.mdwn index 2eef9ca180a..df6833e0786 100644 --- a/wiki/src/news/version_4.27.mdwn +++ b/wiki/src/news/version_4.27.mdwn @@ -72,4 +72,3 @@ Tails 4.27 directly: Tails 4.28 is [[scheduled|contribute/calendar]] for March 8. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.28.mdwn b/wiki/src/news/version_4.28.mdwn index 665b9e14e64..87394abad07 100644 --- a/wiki/src/news/version_4.28.mdwn +++ b/wiki/src/news/version_4.28.mdwn @@ -62,4 +62,3 @@ Tails 4.28 directly: Tails 4.29 is [[scheduled|contribute/calendar]] for April 5. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.29.mdwn b/wiki/src/news/version_4.29.mdwn index 7ccd32a1516..6c9b6f801f6 100644 --- a/wiki/src/news/version_4.29.mdwn +++ b/wiki/src/news/version_4.29.mdwn @@ -62,4 +62,3 @@ Tails 4.29 directly: Tails 4.30 is [[scheduled|contribute/calendar]] for May 3. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_4.3.mdwn b/wiki/src/news/version_4.3.mdwn index 233840073a5..ad7ab606584 100644 --- a/wiki/src/news/version_4.3.mdwn +++ b/wiki/src/news/version_4.3.mdwn @@ -74,7 +74,6 @@ Tails 4.3: Tails 4.4 is [[scheduled|contribute/calendar]] for March 10. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.3">donating</a> is only one of diff --git a/wiki/src/news/version_4.4.1.mdwn b/wiki/src/news/version_4.4.1.mdwn index 2e423a219d7..1031d4a1b60 100644 --- a/wiki/src/news/version_4.4.1.mdwn +++ b/wiki/src/news/version_4.4.1.mdwn @@ -64,7 +64,6 @@ Tails 4.4.1 directly: Tails 4.5 is [[scheduled|contribute/calendar]] for April 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.4.1">donating</a> is only one of diff --git a/wiki/src/news/version_4.4.mdwn b/wiki/src/news/version_4.4.mdwn index e3b9b9519fc..26bbb4c7403 100644 --- a/wiki/src/news/version_4.4.mdwn +++ b/wiki/src/news/version_4.4.mdwn @@ -68,7 +68,6 @@ Tails 4.4: Tails 4.5 is [[scheduled|contribute/calendar]] for April 7. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.4">donating</a> is only one of diff --git a/wiki/src/news/version_4.5.mdwn b/wiki/src/news/version_4.5.mdwn index 7f7fd6ae470..73a0e3b0ebb 100644 --- a/wiki/src/news/version_4.5.mdwn +++ b/wiki/src/news/version_4.5.mdwn @@ -71,7 +71,6 @@ Tails 4.5 directly: Tails 4.6 is [[scheduled|contribute/calendar]] for May 5. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.5">donating</a> is only one of diff --git a/wiki/src/news/version_4.6.mdwn b/wiki/src/news/version_4.6.mdwn index a6ad1a5c29c..c2c7ffe8cb3 100644 --- a/wiki/src/news/version_4.6.mdwn +++ b/wiki/src/news/version_4.6.mdwn @@ -68,7 +68,6 @@ Tails 4.6 directly: Tails 4.7 is [[scheduled|contribute/calendar]] for June 2. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.6">donating</a> is only one of diff --git a/wiki/src/news/version_4.7.mdwn b/wiki/src/news/version_4.7.mdwn index b8bb8582869..ded0aff4550 100644 --- a/wiki/src/news/version_4.7.mdwn +++ b/wiki/src/news/version_4.7.mdwn @@ -65,7 +65,6 @@ Tails 4.7 directly: Tails 4.8 is [[scheduled|contribute/calendar]] for June 30. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.7">donating</a> is only one of diff --git a/wiki/src/news/version_4.8.mdwn b/wiki/src/news/version_4.8.mdwn index d4bb4c27724..8b6d56e7879 100644 --- a/wiki/src/news/version_4.8.mdwn +++ b/wiki/src/news/version_4.8.mdwn @@ -145,7 +145,6 @@ Tails 4.8 directly: Tails 4.9 is [[scheduled|contribute/calendar]] for July 28. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.8">donating</a> is only one of diff --git a/wiki/src/news/version_4.9.mdwn b/wiki/src/news/version_4.9.mdwn index 32580c59208..0091a9b97fb 100644 --- a/wiki/src/news/version_4.9.mdwn +++ b/wiki/src/news/version_4.9.mdwn @@ -73,7 +73,6 @@ Tails 4.9 directly: Tails 4.10 is [[scheduled|contribute/calendar]] for August 25. -Have a look at our [[!tails_roadmap]] to see where we are heading to. We need your help and there are many ways to [[contribute to Tails|contribute]] (<a href="https://tails.net/donate/?r=4.9">donating</a> is only one of diff --git a/wiki/src/news/version_5.0.mdwn b/wiki/src/news/version_5.0.mdwn index 54c8d806b52..e1f799139bd 100644 --- a/wiki/src/news/version_5.0.mdwn +++ b/wiki/src/news/version_5.0.mdwn @@ -130,4 +130,3 @@ Tails 5.0 directly: Tails 5.1 is [[scheduled|contribute/calendar]] for May 31. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.1.1.mdwn b/wiki/src/news/version_5.1.1.mdwn index fd56e8577f3..d1b0249727b 100644 --- a/wiki/src/news/version_5.1.1.mdwn +++ b/wiki/src/news/version_5.1.1.mdwn @@ -59,4 +59,3 @@ Tails 5.1.1 directly: Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but it will likely be released later than that. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.1.mdwn b/wiki/src/news/version_5.1.mdwn index 21ffdf062ab..4bae2d0ca26 100644 --- a/wiki/src/news/version_5.1.mdwn +++ b/wiki/src/news/version_5.1.mdwn @@ -146,4 +146,3 @@ Tails 5.1 directly: Tails 5.2 is [[scheduled|contribute/calendar]] for June 28. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.10.mdwn b/wiki/src/news/version_5.10.mdwn index 8a9c23f7789..0c152243580 100644 --- a/wiki/src/news/version_5.10.mdwn +++ b/wiki/src/news/version_5.10.mdwn @@ -83,4 +83,3 @@ Tails 5.10 directly: Tails 5.11 is [[scheduled|contribute/calendar]] for March 14. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.11.mdwn b/wiki/src/news/version_5.11.mdwn index 17ccdb8385b..9f14980d6aa 100644 --- a/wiki/src/news/version_5.11.mdwn +++ b/wiki/src/news/version_5.11.mdwn @@ -77,4 +77,3 @@ Tails 5.11 directly: Tails 5.12 is [[scheduled|contribute/calendar]] for April 18. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.2.mdwn b/wiki/src/news/version_5.2.mdwn index 677b7e74dd3..4dcd0564138 100644 --- a/wiki/src/news/version_5.2.mdwn +++ b/wiki/src/news/version_5.2.mdwn @@ -57,4 +57,3 @@ Tails 5.2 directly: Tails 5.3 is [[scheduled|contribute/calendar]] for August 9. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.3.1.mdwn b/wiki/src/news/version_5.3.1.mdwn index 7686b29c0db..6468f4e0538 100644 --- a/wiki/src/news/version_5.3.1.mdwn +++ b/wiki/src/news/version_5.3.1.mdwn @@ -69,4 +69,3 @@ Tails 5.3.1 directly: Tails 5.4 is [[scheduled|contribute/calendar]] for August 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.3.mdwn b/wiki/src/news/version_5.3.mdwn index a71f0428be2..2d2c8b3f99d 100644 --- a/wiki/src/news/version_5.3.mdwn +++ b/wiki/src/news/version_5.3.mdwn @@ -55,4 +55,3 @@ Tails 5.3 directly: Tails 5.4 is [[scheduled|contribute/calendar]] for August 23. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.4.mdwn b/wiki/src/news/version_5.4.mdwn index 1597971acfd..55f93746583 100644 --- a/wiki/src/news/version_5.4.mdwn +++ b/wiki/src/news/version_5.4.mdwn @@ -62,4 +62,3 @@ Tails 5.4 directly: Tails 5.5 is [[scheduled|contribute/calendar]] for September 20. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.5.mdwn b/wiki/src/news/version_5.5.mdwn index 90fd35cc1ef..47ca1c70d4b 100644 --- a/wiki/src/news/version_5.5.mdwn +++ b/wiki/src/news/version_5.5.mdwn @@ -74,4 +74,3 @@ Tails 5.5 directly: Tails 5.6 is [[scheduled|contribute/calendar]] for October 25. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.6.mdwn b/wiki/src/news/version_5.6.mdwn index ec236627d5d..2435c9ded26 100644 --- a/wiki/src/news/version_5.6.mdwn +++ b/wiki/src/news/version_5.6.mdwn @@ -60,4 +60,3 @@ Tails 5.6 directly: Tails 5.7 is scheduled for November 22. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/news/version_5.7.mdwn b/wiki/src/news/version_5.7.mdwn index 90e52ee20a9..ae766cc4540 100644 --- a/wiki/src/news/version_5.7.mdwn +++ b/wiki/src/news/version_5.7.mdwn @@ -93,4 +93,3 @@ Tails 5.7 directly: Tails 5.8 is [[scheduled|contribute/calendar]] for December 20. -Have a look at our [[!tails_roadmap]] to see where we are heading to. diff --git a/wiki/src/shortcuts.mdwn b/wiki/src/shortcuts.mdwn index 0935502f36a..bdd3019a8e8 100644 --- a/wiki/src/shortcuts.mdwn +++ b/wiki/src/shortcuts.mdwn @@ -92,7 +92,6 @@ ikiwiki will include your shortcut in the standard underlay. desc="list of *Starter* tasks"]] * [[!shortcut name=tails_ticket url="https://gitlab.tails.boum.org/tails/tails/-/issues/%S" desc="#%s"]] * [[!shortcut name=tails_mr url="https://gitlab.tails.boum.org/tails/tails/-/merge_requests/%S" desc="!%s"]] -* [[!shortcut name=tails_roadmap url="https://tails.net/contribute/roadmap" desc="roadmap"]] * [[!shortcut name=tails_gitweb url="https://gitlab.tails.boum.org/tails/tails/-/blob/master/%S"]] * [[!shortcut name=tails_gitweb_dir url="https://gitlab.tails.boum.org/tails/tails/-/tree/master/%S"]] * [[!shortcut name=tails_gitweb_branch url="https://gitlab.tails.boum.org/tails/tails/-/commits/%S/"]] -- GitLab From bfb445956f25f187e0eefcd27a1f979e55dbeb49 Mon Sep 17 00:00:00 2001 From: IkiWiki <ikiwiki.info> Date: Thu, 24 Aug 2023 19:56:14 +0000 Subject: [PATCH 086/119] updated PO files --- wiki/src/contribute.de.po | 6 +-- wiki/src/contribute.es.po | 9 ++-- wiki/src/contribute.fr.po | 9 ++-- wiki/src/contribute.it.po | 9 ++-- wiki/src/contribute.pt.po | 28 ++++------- wiki/src/contribute.ru.po | 6 +-- wiki/src/footer.de.po | 6 +-- wiki/src/footer.es.po | 9 ++-- wiki/src/footer.fr.po | 9 ++-- wiki/src/footer.it.po | 6 +-- wiki/src/footer.pt.po | 9 ++-- wiki/src/footer.ru.po | 6 +-- ...rove_the_infrastructure_behind_Tails.de.po | 9 ++-- ...rove_the_infrastructure_behind_Tails.es.po | 9 ++-- ...rove_the_infrastructure_behind_Tails.fr.po | 19 ++++---- ...rove_the_infrastructure_behind_Tails.it.po | 9 ++-- ...rove_the_infrastructure_behind_Tails.pt.po | 9 ++-- ...rove_the_infrastructure_behind_Tails.ru.po | 9 ++-- wiki/src/news/summit_2013.de.po | 22 ++++----- wiki/src/news/summit_2013.es.po | 22 ++++----- wiki/src/news/summit_2013.fr.po | 48 +++++++++++++------ wiki/src/news/summit_2013.it.po | 22 ++++----- wiki/src/news/summit_2013.pt.po | 22 ++++----- wiki/src/news/summit_2013.ru.po | 22 ++++----- wiki/src/news/version_4.0.de.po | 33 +++++++------ wiki/src/news/version_4.0.es.po | 33 +++++++------ wiki/src/news/version_4.0.fr.po | 33 +++++++------ wiki/src/news/version_4.0.it.po | 29 ++++++----- wiki/src/news/version_4.0.pt.po | 29 ++++++----- wiki/src/news/version_4.0.ru.po | 25 ++++------ wiki/src/news/version_4.1.1.de.po | 14 +++--- wiki/src/news/version_4.1.1.es.po | 14 +++--- wiki/src/news/version_4.1.1.fr.po | 14 +++--- wiki/src/news/version_4.1.1.it.po | 14 +++--- wiki/src/news/version_4.1.1.pt.po | 10 ++-- wiki/src/news/version_4.1.1.ru.po | 6 +-- wiki/src/news/version_4.1.de.po | 14 +++--- wiki/src/news/version_4.1.es.po | 14 +++--- wiki/src/news/version_4.1.fr.po | 14 +++--- wiki/src/news/version_4.1.it.po | 14 +++--- wiki/src/news/version_4.1.pt.po | 10 ++-- wiki/src/news/version_4.1.ru.po | 6 +-- wiki/src/news/version_4.10.de.po | 14 +++--- wiki/src/news/version_4.10.es.po | 14 +++--- wiki/src/news/version_4.10.fr.po | 20 ++++---- wiki/src/news/version_4.10.it.po | 14 +++--- wiki/src/news/version_4.10.pt.po | 10 ++-- wiki/src/news/version_4.10.ru.po | 6 +-- wiki/src/news/version_4.11.de.po | 6 +-- wiki/src/news/version_4.11.es.po | 6 +-- wiki/src/news/version_4.11.fr.po | 14 +++--- wiki/src/news/version_4.11.it.po | 6 +-- wiki/src/news/version_4.11.pt.po | 6 +-- wiki/src/news/version_4.11.ru.po | 6 +-- wiki/src/news/version_4.12.de.po | 14 +++--- wiki/src/news/version_4.12.es.po | 14 +++--- wiki/src/news/version_4.12.fr.po | 20 ++++---- wiki/src/news/version_4.12.it.po | 14 +++--- wiki/src/news/version_4.12.pt.po | 10 ++-- wiki/src/news/version_4.12.ru.po | 6 +-- wiki/src/news/version_4.13.de.po | 24 +++++----- wiki/src/news/version_4.13.es.po | 24 +++++----- wiki/src/news/version_4.13.fr.po | 24 +++++----- wiki/src/news/version_4.13.it.po | 20 ++++---- wiki/src/news/version_4.13.pt.po | 20 ++++---- wiki/src/news/version_4.13.ru.po | 16 +++---- wiki/src/news/version_4.14.de.po | 14 +++--- wiki/src/news/version_4.14.es.po | 14 +++--- wiki/src/news/version_4.14.fr.po | 20 ++++---- wiki/src/news/version_4.14.it.po | 14 +++--- wiki/src/news/version_4.14.pt.po | 10 ++-- wiki/src/news/version_4.14.ru.po | 6 +-- wiki/src/news/version_4.15.1.de.po | 14 +++--- wiki/src/news/version_4.15.1.es.po | 14 +++--- wiki/src/news/version_4.15.1.fr.po | 14 +++--- wiki/src/news/version_4.15.1.it.po | 14 +++--- wiki/src/news/version_4.15.1.pt.po | 10 ++-- wiki/src/news/version_4.15.1.ru.po | 6 +-- wiki/src/news/version_4.15.de.po | 14 +++--- wiki/src/news/version_4.15.es.po | 14 +++--- wiki/src/news/version_4.15.fr.po | 20 ++++---- wiki/src/news/version_4.15.it.po | 14 +++--- wiki/src/news/version_4.15.pt.po | 10 ++-- wiki/src/news/version_4.15.ru.po | 6 +-- wiki/src/news/version_4.16.de.po | 14 +++--- wiki/src/news/version_4.16.es.po | 14 +++--- wiki/src/news/version_4.16.fr.po | 20 ++++---- wiki/src/news/version_4.16.it.po | 14 +++--- wiki/src/news/version_4.16.pt.po | 10 ++-- wiki/src/news/version_4.16.ru.po | 6 +-- wiki/src/news/version_4.17.de.po | 14 +++--- wiki/src/news/version_4.17.es.po | 14 +++--- wiki/src/news/version_4.17.fr.po | 20 ++++---- wiki/src/news/version_4.17.it.po | 14 +++--- wiki/src/news/version_4.17.pt.po | 10 ++-- wiki/src/news/version_4.17.ru.po | 6 +-- wiki/src/news/version_4.18.de.po | 14 +++--- wiki/src/news/version_4.18.es.po | 14 +++--- wiki/src/news/version_4.18.fr.po | 20 ++++---- wiki/src/news/version_4.18.it.po | 14 +++--- wiki/src/news/version_4.18.pt.po | 10 ++-- wiki/src/news/version_4.18.ru.po | 6 +-- wiki/src/news/version_4.19.de.po | 12 ++--- wiki/src/news/version_4.19.es.po | 12 ++--- wiki/src/news/version_4.19.fr.po | 12 ++--- wiki/src/news/version_4.19.it.po | 12 ++--- wiki/src/news/version_4.19.pt.po | 8 ++-- wiki/src/news/version_4.19.ru.po | 6 +-- wiki/src/news/version_4.2.2.de.po | 14 +++--- wiki/src/news/version_4.2.2.es.po | 14 +++--- wiki/src/news/version_4.2.2.fr.po | 14 +++--- wiki/src/news/version_4.2.2.it.po | 14 +++--- wiki/src/news/version_4.2.2.pt.po | 10 ++-- wiki/src/news/version_4.2.2.ru.po | 6 +-- wiki/src/news/version_4.2.de.po | 14 +++--- wiki/src/news/version_4.2.es.po | 14 +++--- wiki/src/news/version_4.2.fr.po | 14 +++--- wiki/src/news/version_4.2.it.po | 14 +++--- wiki/src/news/version_4.2.pt.po | 10 ++-- wiki/src/news/version_4.2.ru.po | 6 +-- wiki/src/news/version_4.20.de.po | 12 ++--- wiki/src/news/version_4.20.es.po | 12 ++--- wiki/src/news/version_4.20.fr.po | 15 +++--- wiki/src/news/version_4.20.it.po | 12 ++--- wiki/src/news/version_4.20.pt.po | 8 ++-- wiki/src/news/version_4.20.ru.po | 6 +-- wiki/src/news/version_4.21.de.po | 12 ++--- wiki/src/news/version_4.21.es.po | 12 ++--- wiki/src/news/version_4.21.fr.po | 12 ++--- wiki/src/news/version_4.21.it.po | 12 ++--- wiki/src/news/version_4.21.pt.po | 8 ++-- wiki/src/news/version_4.21.ru.po | 6 +-- wiki/src/news/version_4.22.de.po | 6 +-- wiki/src/news/version_4.22.es.po | 6 +-- wiki/src/news/version_4.22.fr.po | 12 ++--- wiki/src/news/version_4.22.it.po | 6 +-- wiki/src/news/version_4.22.pt.po | 6 +-- wiki/src/news/version_4.22.ru.po | 6 +-- wiki/src/news/version_4.23.de.po | 12 ++--- wiki/src/news/version_4.23.es.po | 12 ++--- wiki/src/news/version_4.23.fr.po | 12 ++--- wiki/src/news/version_4.23.it.po | 12 ++--- wiki/src/news/version_4.23.pt.po | 8 ++-- wiki/src/news/version_4.23.ru.po | 6 +-- wiki/src/news/version_4.24.de.po | 6 +-- wiki/src/news/version_4.24.es.po | 6 +-- wiki/src/news/version_4.24.fr.po | 12 ++--- wiki/src/news/version_4.24.it.po | 6 +-- wiki/src/news/version_4.24.pt.po | 6 +-- wiki/src/news/version_4.24.ru.po | 6 +-- wiki/src/news/version_4.25.de.po | 6 +-- wiki/src/news/version_4.25.es.po | 6 +-- wiki/src/news/version_4.25.fr.po | 12 ++--- wiki/src/news/version_4.25.it.po | 6 +-- wiki/src/news/version_4.25.pt.po | 6 +-- wiki/src/news/version_4.25.ru.po | 6 +-- wiki/src/news/version_4.26.de.po | 6 +-- wiki/src/news/version_4.26.es.po | 6 +-- wiki/src/news/version_4.26.fr.po | 12 ++--- wiki/src/news/version_4.26.it.po | 6 +-- wiki/src/news/version_4.26.pt.po | 6 +-- wiki/src/news/version_4.26.ru.po | 6 +-- wiki/src/news/version_4.27.de.po | 6 +-- wiki/src/news/version_4.27.es.po | 6 +-- wiki/src/news/version_4.27.fr.po | 12 ++--- wiki/src/news/version_4.27.it.po | 6 +-- wiki/src/news/version_4.27.pt.po | 6 +-- wiki/src/news/version_4.27.ru.po | 6 +-- wiki/src/news/version_4.28.de.po | 6 +-- wiki/src/news/version_4.28.es.po | 6 +-- wiki/src/news/version_4.28.fr.po | 12 ++--- wiki/src/news/version_4.28.it.po | 6 +-- wiki/src/news/version_4.28.pt.po | 6 +-- wiki/src/news/version_4.28.ru.po | 6 +-- wiki/src/news/version_4.29.de.po | 6 +-- wiki/src/news/version_4.29.es.po | 6 +-- wiki/src/news/version_4.29.fr.po | 12 ++--- wiki/src/news/version_4.29.it.po | 6 +-- wiki/src/news/version_4.29.pt.po | 6 +-- wiki/src/news/version_4.29.ru.po | 6 +-- wiki/src/news/version_4.3.de.po | 14 +++--- wiki/src/news/version_4.3.es.po | 14 +++--- wiki/src/news/version_4.3.fr.po | 14 +++--- wiki/src/news/version_4.3.it.po | 14 +++--- wiki/src/news/version_4.3.pt.po | 10 ++-- wiki/src/news/version_4.3.ru.po | 6 +-- wiki/src/news/version_4.4.1.de.po | 14 +++--- wiki/src/news/version_4.4.1.es.po | 14 +++--- wiki/src/news/version_4.4.1.fr.po | 14 +++--- wiki/src/news/version_4.4.1.it.po | 14 +++--- wiki/src/news/version_4.4.1.pt.po | 10 ++-- wiki/src/news/version_4.4.1.ru.po | 6 +-- wiki/src/news/version_4.4.de.po | 14 +++--- wiki/src/news/version_4.4.es.po | 14 +++--- wiki/src/news/version_4.4.fr.po | 14 +++--- wiki/src/news/version_4.4.it.po | 14 +++--- wiki/src/news/version_4.4.pt.po | 10 ++-- wiki/src/news/version_4.4.ru.po | 6 +-- wiki/src/news/version_4.5.de.po | 14 +++--- wiki/src/news/version_4.5.es.po | 14 +++--- wiki/src/news/version_4.5.fr.po | 14 +++--- wiki/src/news/version_4.5.it.po | 14 +++--- wiki/src/news/version_4.5.pt.po | 10 ++-- wiki/src/news/version_4.5.ru.po | 6 +-- wiki/src/news/version_4.6.de.po | 16 +++---- wiki/src/news/version_4.6.es.po | 16 +++---- wiki/src/news/version_4.6.fr.po | 16 +++---- wiki/src/news/version_4.6.it.po | 16 +++---- wiki/src/news/version_4.6.pt.po | 12 ++--- wiki/src/news/version_4.6.ru.po | 12 ++--- wiki/src/news/version_4.7.de.po | 14 +++--- wiki/src/news/version_4.7.es.po | 14 +++--- wiki/src/news/version_4.7.fr.po | 20 ++++---- wiki/src/news/version_4.7.it.po | 14 +++--- wiki/src/news/version_4.7.pt.po | 10 ++-- wiki/src/news/version_4.7.ru.po | 6 +-- wiki/src/news/version_4.8.de.po | 28 +++++------ wiki/src/news/version_4.8.es.po | 28 +++++------ wiki/src/news/version_4.8.fr.po | 32 ++++++------- wiki/src/news/version_4.8.it.po | 24 +++++----- wiki/src/news/version_4.8.pt.po | 24 +++++----- wiki/src/news/version_4.8.ru.po | 20 ++++---- wiki/src/news/version_4.9.de.po | 14 +++--- wiki/src/news/version_4.9.es.po | 14 +++--- wiki/src/news/version_4.9.fr.po | 20 ++++---- wiki/src/news/version_4.9.it.po | 14 +++--- wiki/src/news/version_4.9.pt.po | 10 ++-- wiki/src/news/version_4.9.ru.po | 6 +-- wiki/src/news/version_5.0.de.po | 18 +++---- wiki/src/news/version_5.0.es.po | 18 +++---- wiki/src/news/version_5.0.fr.po | 28 +++++------ wiki/src/news/version_5.0.it.po | 18 +++---- wiki/src/news/version_5.0.pt.po | 18 +++---- wiki/src/news/version_5.0.ru.po | 18 +++---- wiki/src/news/version_5.1.1.de.po | 6 +-- wiki/src/news/version_5.1.1.es.po | 6 +-- wiki/src/news/version_5.1.1.fr.po | 12 ++--- wiki/src/news/version_5.1.1.it.po | 6 +-- wiki/src/news/version_5.1.1.pt.po | 6 +-- wiki/src/news/version_5.1.1.ru.po | 6 +-- wiki/src/news/version_5.1.de.po | 6 +-- wiki/src/news/version_5.1.es.po | 6 +-- wiki/src/news/version_5.1.fr.po | 12 ++--- wiki/src/news/version_5.1.it.po | 6 +-- wiki/src/news/version_5.1.pt.po | 6 +-- wiki/src/news/version_5.1.ru.po | 6 +-- wiki/src/news/version_5.10.de.po | 6 +-- wiki/src/news/version_5.10.es.po | 6 +-- wiki/src/news/version_5.10.fr.po | 12 ++--- wiki/src/news/version_5.10.it.po | 6 +-- wiki/src/news/version_5.10.pt.po | 6 +-- wiki/src/news/version_5.10.ru.po | 6 +-- wiki/src/news/version_5.11.de.po | 6 +-- wiki/src/news/version_5.11.es.po | 6 +-- wiki/src/news/version_5.11.fr.po | 12 ++--- wiki/src/news/version_5.11.it.po | 6 +-- wiki/src/news/version_5.11.pt.po | 6 +-- wiki/src/news/version_5.11.ru.po | 6 +-- wiki/src/news/version_5.2.de.po | 6 +-- wiki/src/news/version_5.2.es.po | 6 +-- wiki/src/news/version_5.2.fr.po | 12 ++--- wiki/src/news/version_5.2.it.po | 6 +-- wiki/src/news/version_5.2.pt.po | 6 +-- wiki/src/news/version_5.2.ru.po | 6 +-- wiki/src/news/version_5.3.1.de.po | 6 +-- wiki/src/news/version_5.3.1.es.po | 6 +-- wiki/src/news/version_5.3.1.fr.po | 12 ++--- wiki/src/news/version_5.3.1.it.po | 6 +-- wiki/src/news/version_5.3.1.pt.po | 6 +-- wiki/src/news/version_5.3.1.ru.po | 6 +-- wiki/src/news/version_5.3.de.po | 6 +-- wiki/src/news/version_5.3.es.po | 6 +-- wiki/src/news/version_5.3.fr.po | 12 ++--- wiki/src/news/version_5.3.it.po | 6 +-- wiki/src/news/version_5.3.pt.po | 6 +-- wiki/src/news/version_5.3.ru.po | 6 +-- wiki/src/news/version_5.4.de.po | 6 +-- wiki/src/news/version_5.4.es.po | 6 +-- wiki/src/news/version_5.4.fr.po | 12 ++--- wiki/src/news/version_5.4.it.po | 6 +-- wiki/src/news/version_5.4.pt.po | 6 +-- wiki/src/news/version_5.4.ru.po | 6 +-- wiki/src/news/version_5.5.de.po | 6 +-- wiki/src/news/version_5.5.es.po | 6 +-- wiki/src/news/version_5.5.fr.po | 12 ++--- wiki/src/news/version_5.5.it.po | 6 +-- wiki/src/news/version_5.5.pt.po | 6 +-- wiki/src/news/version_5.5.ru.po | 6 +-- wiki/src/news/version_5.6.de.po | 6 +-- wiki/src/news/version_5.6.es.po | 9 +--- wiki/src/news/version_5.6.fr.po | 24 ++++------ wiki/src/news/version_5.6.it.po | 14 ++---- wiki/src/news/version_5.6.pt.po | 6 +-- wiki/src/news/version_5.6.ru.po | 6 +-- wiki/src/news/version_5.7.de.po | 6 +-- wiki/src/news/version_5.7.es.po | 6 +-- wiki/src/news/version_5.7.fr.po | 12 ++--- wiki/src/news/version_5.7.it.po | 6 +-- wiki/src/news/version_5.7.pt.po | 6 +-- wiki/src/news/version_5.7.ru.po | 6 +-- 300 files changed, 1432 insertions(+), 1998 deletions(-) diff --git a/wiki/src/contribute.de.po b/wiki/src/contribute.de.po index 563287b44f8..8a07a422b8a 100644 --- a/wiki/src/contribute.de.po +++ b/wiki/src/contribute.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -440,10 +440,6 @@ msgstr "Werkzeuge für Beitragende\n" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "Quellcode: [[Git repositories|contribute/git]]" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "" - #. type: Bullet: ' - ' #, fuzzy #| msgid "[[Document progress|contribute/working_together/document_progress]]" diff --git a/wiki/src/contribute.es.po b/wiki/src/contribute.es.po index 4b2c0f4cf72..7625be5cff0 100644 --- a/wiki/src/contribute.es.po +++ b/wiki/src/contribute.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-03-24 06:34+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -399,10 +399,6 @@ msgstr "Herramientas para colaboradores" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "Código fuente: [[Git repositories|contribute/git]]" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" - #. type: Bullet: ' - ' msgid "" "[[GitLab source code and bug tracker|contribute/working_together/GitLab]]" @@ -739,6 +735,9 @@ msgstr "" "Para hablar con otros colaboradores de Tails suscrÃbete a [[nuestra lista de " "correo|about/contact]]." +#~ msgid "[[!tails_roadmap desc=\"Roadmap\"]]" +#~ msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" + #, fuzzy #~| msgid "[[Code of conduct|contribute/working_together/code_of_conduct]]" #~ msgid "" diff --git a/wiki/src/contribute.fr.po b/wiki/src/contribute.fr.po index fd773686af6..32c022c308c 100644 --- a/wiki/src/contribute.fr.po +++ b/wiki/src/contribute.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -391,10 +391,6 @@ msgstr "Tools for contributors" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "Source code: [[Git repositories|contribute/git]]" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" - #. type: Bullet: ' - ' msgid "" "[[GitLab source code and bug tracker|contribute/working_together/GitLab]]" @@ -685,6 +681,9 @@ msgstr "" "Pour discuter avec d'autres personnes contribuant à Tails, inscrivez-vous " "aux [[listes de discussion correspondantes|about/contact]]." +#~ msgid "[[!tails_roadmap desc=\"Roadmap\"]]" +#~ msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" + #, fuzzy #~| msgid "[[People|contribute/working_together/people]]" #~ msgid "" diff --git a/wiki/src/contribute.it.po b/wiki/src/contribute.it.po index b82cca50377..0a19289d0bf 100644 --- a/wiki/src/contribute.it.po +++ b/wiki/src/contribute.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -375,10 +375,6 @@ msgstr "Strumenti per chi collabora" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "Source code: [[Git repositories|contribute/git]]" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" - #. type: Bullet: ' - ' msgid "" "[[GitLab source code and bug tracker|contribute/working_together/GitLab]]" @@ -713,6 +709,9 @@ msgstr "" "Per discutere con altre persone che contribuiscono a Tails, iscriviti alle " "[[mailing list corrispondenti|about/contact]]." +#~ msgid "[[!tails_roadmap desc=\"Roadmap\"]]" +#~ msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" + #, fuzzy #~| msgid "" #~| "[[Marking a task as Starter|contribute/working_together/" diff --git a/wiki/src/contribute.pt.po b/wiki/src/contribute.pt.po index d313db70744..53c18b7953e 100644 --- a/wiki/src/contribute.pt.po +++ b/wiki/src/contribute.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-10 18:49+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <LL@li.org>\n" @@ -311,16 +311,11 @@ msgid "" "\t</ol>\n" msgstr "" "\t<ol>\n" -"\t\t<li class=\"L2\"><a href=\"#reference-documents\">Documentos de " -"referência</a></li>\n" -"\t\t<li class=\"L2\"><a href=\"#tools\">Ferramentas para " -"contribuidores</a></li>\n" -"\t\t<li class=\"L2\"><a href=\"#release-cycle\">Ciclo de lançamento</a></li>" -"\n" -"\t\t<li class=\"L2\"><a href=\"#upstream\">Relacionamento com " -"upstream</a></li>\n" -"\t\t<li class=\"L2\"><a href=\"#collective-process\">Processo " -"coletivo</a></li>\n" +"\t\t<li class=\"L2\"><a href=\"#reference-documents\">Documentos de referência</a></li>\n" +"\t\t<li class=\"L2\"><a href=\"#tools\">Ferramentas para contribuidores</a></li>\n" +"\t\t<li class=\"L2\"><a href=\"#release-cycle\">Ciclo de lançamento</a></li>\n" +"\t\t<li class=\"L2\"><a href=\"#upstream\">Relacionamento com upstream</a></li>\n" +"\t\t<li class=\"L2\"><a href=\"#collective-process\">Processo coletivo</a></li>\n" "\t\t<li class=\"L2\"><a href=\"#talk\">Fale conosco</a></li>\n" "\t</ol>\n" @@ -401,10 +396,6 @@ msgstr "Ferramentas para contribuidores" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "Código fonte: [[Repositórios git|contribute/git]]" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" - #. type: Bullet: ' - ' msgid "" "[[GitLab source code and bug tracker|contribute/working_together/GitLab]]" @@ -684,9 +675,7 @@ msgstr "Papéis para implementações patrocinadas (documentação interna):" #. type: Plain text #, no-wrap msgid " [[!tails_gitlab tails/summit/-/wikis/Handbook/Grant_contract_management]]\n" -msgstr "" -" [[!tails_gitlab tails/summit/-/wikis/Handbook/Grant_contract_management]]" -"\n" +msgstr " [[!tails_gitlab tails/summit/-/wikis/Handbook/Grant_contract_management]]\n" #. type: Plain text #, no-wrap @@ -706,6 +695,9 @@ msgstr "" "Para falar com outras pessoas que contribuem com o Tails, inscreva-se na " "[[lista de emails especÃfica para isso|about/contact]]." +#~ msgid "[[!tails_roadmap desc=\"Roadmap\"]]" +#~ msgstr "[[!tails_roadmap desc=\"Roadmap\"]]" + #, fuzzy #~| msgid "[[People|contribute/working_together/people]]" #~ msgid "" diff --git a/wiki/src/contribute.ru.po b/wiki/src/contribute.ru.po index db960db472f..cb42d2f8b43 100644 --- a/wiki/src/contribute.ru.po +++ b/wiki/src/contribute.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-05-10 13:23+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -304,10 +304,6 @@ msgstr "" msgid "Source code: [[Git repositories|contribute/git]]" msgstr "" -#. type: Bullet: ' - ' -msgid "[[!tails_roadmap desc=\"Roadmap\"]]" -msgstr "" - #. type: Bullet: ' - ' msgid "" "[[GitLab source code and bug tracker|contribute/working_together/GitLab]]" diff --git a/wiki/src/footer.de.po b/wiki/src/footer.de.po index 76b3d639255..9a0d9d88e33 100644 --- a/wiki/src/footer.de.po +++ b/wiki/src/footer.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: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-09 21:40+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -94,10 +94,6 @@ msgstr "" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "[[Spenden|donate]]" diff --git a/wiki/src/footer.es.po b/wiki/src/footer.es.po index 7420c592e8a..c709bd9881b 100644 --- a/wiki/src/footer.es.po +++ b/wiki/src/footer.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: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-01-21 09:17+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -94,10 +94,6 @@ msgstr "[[Código fuente|contribute/how/code]]" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "[[Roadmap|contribute/roadmap]]" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "[[Donar|donate]]" @@ -158,6 +154,9 @@ msgstr "" "[[!img lib/twitter.svg link=\"https://twitter.com/Tails_live\" alt=\"Twitter" "\"]]" +#~ msgid "[[Roadmap|contribute/roadmap]]" +#~ msgstr "[[Roadmap|contribute/roadmap]]" + #~ msgid "[[!meta title=\"\"]]" #~ msgstr "[[!meta title=\"\"]]" diff --git a/wiki/src/footer.fr.po b/wiki/src/footer.fr.po index ba27b4d068e..f8992dfa25b 100644 --- a/wiki/src/footer.fr.po +++ b/wiki/src/footer.fr.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: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -94,10 +94,6 @@ msgstr "[[Code source|contribute/how/code]]" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "[[Feuille de route|contribute/roadmap]]" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "[[Faire un don|donate]]" @@ -158,5 +154,8 @@ msgstr "" "[[!img lib/twitter.svg link=\"https://twitter.com/Tails_live\" alt=\"Twitter" "\"]]" +#~ msgid "[[Roadmap|contribute/roadmap]]" +#~ msgstr "[[Feuille de route|contribute/roadmap]]" + #~ msgid "[[!meta title=\"\"]]" #~ msgstr "[[!meta title=\"\"]]" diff --git a/wiki/src/footer.it.po b/wiki/src/footer.it.po index e62bdafb40c..14a3db1d12a 100644 --- a/wiki/src/footer.it.po +++ b/wiki/src/footer.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: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-16 10:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -94,10 +94,6 @@ msgstr "[[Codice sorgente|contribute/how/code]]" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "[[Dona|donate]]" diff --git a/wiki/src/footer.pt.po b/wiki/src/footer.pt.po index 81981f04a1a..1dd5d921702 100644 --- a/wiki/src/footer.pt.po +++ b/wiki/src/footer.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: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-08-29 22:15+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -94,10 +94,6 @@ msgstr "[[Código fonte|contribute/how/code]]" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "[[Roadmap|contribute/roadmap]]" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "[[Faça uma doação|donate]]" @@ -158,5 +154,8 @@ msgstr "" "[[!img lib/twitter.svg link=\"https://twitter.com/Tails_live\" alt=\"Twitter" "\"]]" +#~ msgid "[[Roadmap|contribute/roadmap]]" +#~ msgstr "[[Roadmap|contribute/roadmap]]" + #~ msgid "[[!meta title=\"\"]]" #~ msgstr "[[!meta title=\"\"]]" diff --git a/wiki/src/footer.ru.po b/wiki/src/footer.ru.po index 56c1e9b36ca..68f745c14d8 100644 --- a/wiki/src/footer.ru.po +++ b/wiki/src/footer.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-10-18 10:43-0500\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -95,10 +95,6 @@ msgstr "" msgid "[[!tails_gitlab tails/tails/-/issues desc=\"GitLab\"]]" msgstr "" -#. type: Content of: <div><ul><li> -msgid "[[Roadmap|contribute/roadmap]]" -msgstr "" - #. type: Content of: <div><ul><li> msgid "[[Donate|donate]]" msgstr "" diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.de.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.de.po index 7cb0e223f3a..7483eba1338 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.de.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,11 +51,10 @@ msgid "We needs more hands!" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" #. type: Plain text diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.es.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.es.po index 4a0d6a71a33..e4975e53106 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.es.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-04-24 22:22+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -51,11 +51,10 @@ msgid "We needs more hands!" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" #. type: Plain text diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.fr.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.fr.po index 5435d0bd1a7..d7cc682d268 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.fr.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-05-04 19:23+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: French <http://translate.tails.boum.org/projects/tails/" @@ -22,9 +22,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "[[!meta title=\"Call for help: improve the infrastructure behind Tails\"]]\n" -msgstr "" -"[!meta title=\"Appel à l'aide : améliorer l'infrastructure derrière Tails\"]]" -"\n" +msgstr "[!meta title=\"Appel à l'aide : améliorer l'infrastructure derrière Tails\"]]\n" #. type: Plain text #, no-wrap @@ -60,11 +58,16 @@ msgid "We needs more hands!" msgstr "Il nous faut plus de bras !" #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Among the things we know [[!tails_roadmap desc=\"we should do in the\n" +#| "next few years\"]], we have identified some areas that could benefit the " +#| "most\n" +#| "from new dedicated contributors.\n" msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" "Parmi les choses que nous savons [[!tails_roadmap desc=\"que nous devrions " "faire\n" diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.it.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.it.po index dfe93aa8a8d..767090c4631 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.it.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2020-12-24 14:43+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -51,11 +51,10 @@ msgid "We needs more hands!" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" #. type: Plain text diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.pt.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.pt.po index fdd8507c5b2..11c38a30af5 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.pt.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -52,11 +52,10 @@ msgid "We needs more hands!" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" #. type: Plain text diff --git a/wiki/src/news/improve_the_infrastructure_behind_Tails.ru.po b/wiki/src/news/improve_the_infrastructure_behind_Tails.ru.po index 8ce3bbbba6c..c546c7fcfb5 100644 --- a/wiki/src/news/improve_the_infrastructure_behind_Tails.ru.po +++ b/wiki/src/news/improve_the_infrastructure_behind_Tails.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2020-04-12 16:10+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2018-10-25 10:19+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,11 +52,10 @@ msgid "We needs more hands!" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Among the things we know [[!tails_roadmap desc=\"we should do in the\n" -"next few years\"]], we have identified some areas that could benefit the most\n" -"from new dedicated contributors.\n" +"Among the things we know we should do in the next few years, we have " +"identified some areas that could benefit the most from new dedicated " +"contributors." msgstr "" #. type: Plain text diff --git a/wiki/src/news/summit_2013.de.po b/wiki/src/news/summit_2013.de.po index 6173bf80fa1..95ccbc58661 100644 --- a/wiki/src/news/summit_2013.de.po +++ b/wiki/src/news/summit_2013.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: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2019-07-16 07:52+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,13 +53,11 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" #. type: Plain text @@ -140,11 +138,11 @@ msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" #. type: Plain text diff --git a/wiki/src/news/summit_2013.es.po b/wiki/src/news/summit_2013.es.po index 2daef3fa517..6fdc9f0cbf0 100644 --- a/wiki/src/news/summit_2013.es.po +++ b/wiki/src/news/summit_2013.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: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-04-24 22:23+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -53,13 +53,11 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" #. type: Plain text @@ -140,11 +138,11 @@ msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" #. type: Plain text diff --git a/wiki/src/news/summit_2013.fr.po b/wiki/src/news/summit_2013.fr.po index b1b6f4a53cf..7dd7f521517 100644 --- a/wiki/src/news/summit_2013.fr.po +++ b/wiki/src/news/summit_2013.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-05-04 19:23+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -61,18 +61,26 @@ msgstr "" "moyen/long terme." #. type: Plain text -#, no-wrap +#, fuzzy +#| msgid "" +#| "Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" +#| "**updated roadmap**\"]]: we now have a better vision of what we want to\n" +#| "focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" +#| "milestones are now pretty well defined, and we even were bold enough\n" +#| "to draft goals for 3.0.\n" msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" "Notre prise en compte en est premièrement reflétée par [[!tails_roadmap\n" -"desc=\"notre **feuille de route mise à jour**\"]] : nous avons désormais une meilleure\n" -"vision de ce sur quoi nous voulons nous concentrer pour les prochaines versions majeures\n" -"de Tails : les étapes pour la 1.0, 1.1 et 2.0 sont maintenant plutôt bien définies, et nous\n" +"desc=\"notre **feuille de route mise à jour**\"]] : nous avons désormais une " +"meilleure\n" +"vision de ce sur quoi nous voulons nous concentrer pour les prochaines " +"versions majeures\n" +"de Tails : les étapes pour la 1.0, 1.1 et 2.0 sont maintenant plutôt bien " +"définies, et nous\n" "fûmes assez audacieux pour brouillonner des objectifs pour la 3.0.\n" #. type: Plain text @@ -184,15 +192,25 @@ msgstr "" "nous n'étions donc jamais désÅ“uvrés." #. type: Plain text +#, fuzzy +#| msgid "" +#| "The most noticeable technical change that happened during the summit was " +#| "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" +#| "tails) for managing our [tasks](https://labs.riseup.net/code/projects/" +#| "tails/issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are " +#| "not exploiting the full potential of Redmine yet, but it already feels " +#| "far less messy than how we did previously. Hopefully this will help " +#| "others get involved! Many thanks go to Riseup for hosting the Redmine " +#| "instance we use. Note that we will keep using ikiwiki for blueprints." msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" "Le changement technique le plus visible qui eu lieu durant le sommet est " "sans doute [notre **migration vers Redmine**](https://labs.riseup.net/code/" diff --git a/wiki/src/news/summit_2013.it.po b/wiki/src/news/summit_2013.it.po index 0df951328dd..a230c5b7a84 100644 --- a/wiki/src/news/summit_2013.it.po +++ b/wiki/src/news/summit_2013.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: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2020-12-24 14:43+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -53,13 +53,11 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" #. type: Plain text @@ -140,11 +138,11 @@ msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" #. type: Plain text diff --git a/wiki/src/news/summit_2013.pt.po b/wiki/src/news/summit_2013.pt.po index 40bfbb25b71..f04f4d1b8e0 100644 --- a/wiki/src/news/summit_2013.pt.po +++ b/wiki/src/news/summit_2013.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: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-20 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,13 +53,11 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" #. type: Plain text @@ -140,11 +138,11 @@ msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" #. type: Plain text diff --git a/wiki/src/news/summit_2013.ru.po b/wiki/src/news/summit_2013.ru.po index f699875b6e3..31dbe41eda4 100644 --- a/wiki/src/news/summit_2013.ru.po +++ b/wiki/src/news/summit_2013.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2021-11-19 17:07+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2018-10-25 10:22+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,13 +54,11 @@ msgid "" msgstr "" #. type: Plain text -#, no-wrap msgid "" -"Our take on this is first reflected by [[!tails_roadmap desc=\"our\n" -"**updated roadmap**\"]]: we now have a better vision of what we want to\n" -"focus on for the next major releases of Tails: the 1.0, 1.1 and 2.0\n" -"milestones are now pretty well defined, and we even were bold enough\n" -"to draft goals for 3.0.\n" +"Our take on this is first reflected by our **updated roadmap**: we now have " +"a better vision of what we want to focus on for the next major releases of " +"Tails: the 1.0, 1.1 and 2.0 milestones are now pretty well defined, and we " +"even were bold enough to draft goals for 3.0." msgstr "" #. type: Plain text @@ -141,11 +139,11 @@ msgid "" "The most noticeable technical change that happened during the summit was " "perhaps [our **move to Redmine**](https://labs.riseup.net/code/projects/" "tails) for managing our [tasks](https://labs.riseup.net/code/projects/tails/" -"issues?query_id=108) and [[!tails_roadmap desc=\"plans\"]]. We are not " -"exploiting the full potential of Redmine yet, but it already feels far less " -"messy than how we did previously. Hopefully this will help others get " -"involved! Many thanks go to Riseup for hosting the Redmine instance we use. " -"Note that we will keep using ikiwiki for blueprints." +"issues?query_id=108) and plans. We are not exploiting the full potential of " +"Redmine yet, but it already feels far less messy than how we did previously. " +"Hopefully this will help others get involved! Many thanks go to Riseup for " +"hosting the Redmine instance we use. Note that we will keep using ikiwiki " +"for blueprints." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_4.0.de.po b/wiki/src/news/version_4.0.de.po index 8aff0688610..8a9384f94d8 100644 --- a/wiki/src/news/version_4.0.de.po +++ b/wiki/src/news/version_4.0.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-12 00:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,11 +39,10 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" #. type: Plain text @@ -126,7 +125,7 @@ msgstr "" msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" @@ -373,11 +372,11 @@ msgstr "Behobene Probleme" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog " -"desc=\"Änderungsprotokoll\"]]." +"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=" +"\"Änderungsprotokoll\"]]." #. type: Plain text msgid "" @@ -499,12 +498,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -512,3 +505,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.0\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.0.es.po b/wiki/src/news/version_4.0.es.po index b345f6f7d86..131949bc869 100644 --- a/wiki/src/news/version_4.0.es.po +++ b/wiki/src/news/version_4.0.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-12 00:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,11 +39,10 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" #. type: Plain text @@ -126,7 +125,7 @@ msgstr "" msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" @@ -373,11 +372,11 @@ msgstr "Problemas arreglados" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text msgid "" @@ -497,12 +496,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -510,3 +503,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.0\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.0.fr.po b/wiki/src/news/version_4.0.fr.po index 2ee14fb74e0..214ec8b79a6 100644 --- a/wiki/src/news/version_4.0.fr.po +++ b/wiki/src/news/version_4.0.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,11 +46,10 @@ msgstr "[[!tag announce]]\n" #| "improvements. Tails 4.0 introduces more changes than any other version " #| "since years." msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" "Nous avons la fierté de vous présenter Tails 4.0, la première version de " "Tails basée sur Debian 10 (Buster). Elle apporte de nouvelles versions de la " @@ -155,7 +154,7 @@ msgstr "L’icône oignon a été retiré de la barre supérieure." msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" " Pour passer à une nouvelle identité, choisir\n" @@ -457,11 +456,11 @@ msgstr "Problèmes corrigés" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog " -"desc=\"liste des changements\"]]." +"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=" +"\"liste des changements\"]]." #. type: Plain text msgid "" @@ -591,12 +590,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "Tails 4.1 est [[prévu|contribute/calendar]] pour le 3 décembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -607,3 +600,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.0\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.0.it.po b/wiki/src/news/version_4.0.it.po index 0ae4d3600d4..8824bbc2e68 100644 --- a/wiki/src/news/version_4.0.it.po +++ b/wiki/src/news/version_4.0.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,11 +39,10 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" #. type: Plain text @@ -126,7 +125,7 @@ msgstr "" msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" @@ -373,8 +372,8 @@ msgstr "Problemi risolti" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" "Per ulteriori dettagli, leggi il nostro [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." @@ -497,12 +496,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -510,3 +503,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.0\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.0.pt.po b/wiki/src/news/version_4.0.pt.po index a151e38cffd..a544a12ee18 100644 --- a/wiki/src/news/version_4.0.pt.po +++ b/wiki/src/news/version_4.0.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,11 +39,10 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" #. type: Plain text @@ -126,7 +125,7 @@ msgstr "" msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" @@ -373,11 +372,11 @@ msgstr "Problemas resolvidos" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text msgid "" @@ -497,10 +496,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -508,3 +503,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.0\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.0.ru.po b/wiki/src/news/version_4.0.ru.po index 2a5e9e2e6d4..bfd7d07920a 100644 --- a/wiki/src/news/version_4.0.ru.po +++ b/wiki/src/news/version_4.0.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-12 00:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.9.1\n" #. type: Plain text @@ -40,11 +40,10 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 4.0, the first version of " -"Tails based on Debian 10 (Buster). It brings new versions of most of the " -"software included in Tails and some important usability and performance " -"improvements. Tails 4.0 introduces more changes than any other version since " -"years." +"We are especially proud to present you Tails 4.0, the first version of Tails " +"based on Debian 10 (Buster). It brings new versions of most of the software " +"included in Tails and some important usability and performance improvements. " +"Tails 4.0 introduces more changes than any other version since years." msgstr "" #. type: Plain text @@ -127,7 +126,7 @@ msgstr "" msgid "" " To switch to a new identity, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png class=symbolic link=\"no\" alt=\"\"]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" @@ -374,8 +373,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -496,10 +495,6 @@ msgstr "" msgid "Tails 4.1 is [[scheduled|contribute/calendar]] for December 3." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.1.1.de.po b/wiki/src/news/version_4.1.1.de.po index ca689195aff..5a060275c87 100644 --- a/wiki/src/news/version_4.1.1.de.po +++ b/wiki/src/news/version_4.1.1.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -160,12 +160,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -173,3 +167,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.1.1.es.po b/wiki/src/news/version_4.1.1.es.po index f3721efaf86..3731f7ae8af 100644 --- a/wiki/src/news/version_4.1.1.es.po +++ b/wiki/src/news/version_4.1.1.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -161,12 +161,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -174,3 +168,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.1.1.fr.po b/wiki/src/news/version_4.1.1.fr.po index 5b45ac77104..c48a03d4453 100644 --- a/wiki/src/news/version_4.1.1.fr.po +++ b/wiki/src/news/version_4.1.1.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -170,12 +170,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "Tails 4.2 est [[prévu|contribute/calendar]] pour le 7 janvier." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -183,3 +177,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1.1\">faire un don</a> est seulement l'une d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.1.1.it.po b/wiki/src/news/version_4.1.1.it.po index 38f3a2e7eb3..7e90b90e84b 100644 --- a/wiki/src/news/version_4.1.1.it.po +++ b/wiki/src/news/version_4.1.1.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -171,12 +171,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "Tails 4.2 è [[previsto|contribute/calendar]] per il 7 gennaio." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -187,3 +181,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.1.1\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.1.1.pt.po b/wiki/src/news/version_4.1.1.pt.po index 9a43e7264e2..297510f13fc 100644 --- a/wiki/src/news/version_4.1.1.pt.po +++ b/wiki/src/news/version_4.1.1.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -158,10 +158,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -169,3 +165,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.1.1.ru.po b/wiki/src/news/version_4.1.1.ru.po index f89656f9d07..c59969ad89c 100644 --- a/wiki/src/news/version_4.1.1.ru.po +++ b/wiki/src/news/version_4.1.1.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -157,10 +157,6 @@ msgstr "" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.1.de.po b/wiki/src/news/version_4.1.de.po index 910130f71cd..a78108a2f30 100644 --- a/wiki/src/news/version_4.1.de.po +++ b/wiki/src/news/version_4.1.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-20 01:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -244,12 +244,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -257,3 +251,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.1.es.po b/wiki/src/news/version_4.1.es.po index 09ce5c502b1..10ff0ef0061 100644 --- a/wiki/src/news/version_4.1.es.po +++ b/wiki/src/news/version_4.1.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -245,12 +245,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -258,3 +252,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.1.fr.po b/wiki/src/news/version_4.1.fr.po index c0148a5e151..3b54af1c2f2 100644 --- a/wiki/src/news/version_4.1.fr.po +++ b/wiki/src/news/version_4.1.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -279,12 +279,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "Tails 4.2 est [[prévu|contribute/calendar]] pour le 7 janvier." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -293,6 +287,12 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1\">faire un don</a> est seulement l'une d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." + #, no-wrap #~ msgid " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" #~ msgstr " [[!img doc/first_steps/welcome_screen/persistence.png link=\"no\" alt=\"\"]]\n" diff --git a/wiki/src/news/version_4.1.it.po b/wiki/src/news/version_4.1.it.po index 3aa221ef9e8..882537fdebf 100644 --- a/wiki/src/news/version_4.1.it.po +++ b/wiki/src/news/version_4.1.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -247,12 +247,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "Tails 4.2 è [[previsto|contribute/calendar]] per il 7 gennaio." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -260,3 +254,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.1.pt.po b/wiki/src/news/version_4.1.pt.po index 658717d13ba..44007555e28 100644 --- a/wiki/src/news/version_4.1.pt.po +++ b/wiki/src/news/version_4.1.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -242,10 +242,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -253,3 +249,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.1.ru.po b/wiki/src/news/version_4.1.ru.po index 9d6fe8f7893..dca42825e43 100644 --- a/wiki/src/news/version_4.1.ru.po +++ b/wiki/src/news/version_4.1.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -241,10 +241,6 @@ msgstr "" msgid "Tails 4.2 is [[scheduled|contribute/calendar]] for January 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.10.de.po b/wiki/src/news/version_4.10.de.po index aa55c9d8738..ba6e819ac84 100644 --- a/wiki/src/news/version_4.10.de.po +++ b/wiki/src/news/version_4.10.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -218,12 +218,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -231,3 +225,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.10.es.po b/wiki/src/news/version_4.10.es.po index 43370d6296b..2b843a5f2b8 100644 --- a/wiki/src/news/version_4.10.es.po +++ b/wiki/src/news/version_4.10.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,12 +223,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -236,3 +230,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.10.fr.po b/wiki/src/news/version_4.10.fr.po index 10ac27c5d59..3f46ce42d26 100644 --- a/wiki/src/news/version_4.10.fr.po +++ b/wiki/src/news/version_4.10.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -241,12 +241,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "Tails 4.11 est [[prévu|contribute/calendar]] pour le 22 septembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -254,8 +248,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">faire un " -"don</a> est seulement l'une d'entre\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.10.it.po b/wiki/src/news/version_4.10.it.po index f20748fd12a..34708d0dd7a 100644 --- a/wiki/src/news/version_4.10.it.po +++ b/wiki/src/news/version_4.10.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -219,12 +219,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -232,3 +226,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.10.pt.po b/wiki/src/news/version_4.10.pt.po index b5489ef1958..830957d9150 100644 --- a/wiki/src/news/version_4.10.pt.po +++ b/wiki/src/news/version_4.10.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -216,10 +216,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -227,3 +223,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.10\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.10.ru.po b/wiki/src/news/version_4.10.ru.po index 69b507a9d18..b24b7ebed18 100644 --- a/wiki/src/news/version_4.10.ru.po +++ b/wiki/src/news/version_4.10.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -215,10 +215,6 @@ msgstr "" msgid "Tails 4.11 is [[scheduled|contribute/calendar]] for September 22." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.11.de.po b/wiki/src/news/version_4.11.de.po index 9577f5160c2..fa726abcf54 100644 --- a/wiki/src/news/version_4.11.de.po +++ b/wiki/src/news/version_4.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,10 +220,6 @@ msgstr "" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.11.es.po b/wiki/src/news/version_4.11.es.po index 4dba5392641..4f43b46ec9b 100644 --- a/wiki/src/news/version_4.11.es.po +++ b/wiki/src/news/version_4.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,10 +223,6 @@ msgstr "" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.11.fr.po b/wiki/src/news/version_4.11.fr.po index 5faa18cf9ea..eb9a5d92b26 100644 --- a/wiki/src/news/version_4.11.fr.po +++ b/wiki/src/news/version_4.11.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-04-03 23:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -226,12 +226,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -239,3 +233,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.11\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.11.it.po b/wiki/src/news/version_4.11.it.po index ab1aa7c68d3..565b256c70c 100644 --- a/wiki/src/news/version_4.11.it.po +++ b/wiki/src/news/version_4.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,10 +223,6 @@ msgstr "" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.11.pt.po b/wiki/src/news/version_4.11.pt.po index 2b09af14e61..c7cefa9245d 100644 --- a/wiki/src/news/version_4.11.pt.po +++ b/wiki/src/news/version_4.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,10 +220,6 @@ msgstr "" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.11.ru.po b/wiki/src/news/version_4.11.ru.po index 4c79bf4c959..3caac74811d 100644 --- a/wiki/src/news/version_4.11.ru.po +++ b/wiki/src/news/version_4.11.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -219,10 +219,6 @@ msgstr "" msgid "Tails 4.12 is [[scheduled|contribute/calendar]] for October 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.12.de.po b/wiki/src/news/version_4.12.de.po index 31155d147f6..42a31c490ee 100644 --- a/wiki/src/news/version_4.12.de.po +++ b/wiki/src/news/version_4.12.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:38+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -215,12 +215,6 @@ msgstr "" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -228,3 +222,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.12.es.po b/wiki/src/news/version_4.12.es.po index b24a7651a25..b3c82a5877b 100644 --- a/wiki/src/news/version_4.12.es.po +++ b/wiki/src/news/version_4.12.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:38+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -218,12 +218,6 @@ msgstr "" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -231,3 +225,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.12.fr.po b/wiki/src/news/version_4.12.fr.po index 647b33dead2..c12ab1d1ebf 100644 --- a/wiki/src/news/version_4.12.fr.po +++ b/wiki/src/news/version_4.12.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -238,12 +238,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "Tails 4.13 est [[prévu|contribute/calendar]] pour le 17 novembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -251,8 +245,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">faire un " -"don</a> est seulement l'une d'entre\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.12.it.po b/wiki/src/news/version_4.12.it.po index 529c8830f78..0976b25cf67 100644 --- a/wiki/src/news/version_4.12.it.po +++ b/wiki/src/news/version_4.12.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -216,12 +216,6 @@ msgstr "" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -229,3 +223,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.12.pt.po b/wiki/src/news/version_4.12.pt.po index 76b1ffe4aa1..1c173071369 100644 --- a/wiki/src/news/version_4.12.pt.po +++ b/wiki/src/news/version_4.12.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -213,10 +213,6 @@ msgstr "" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -224,3 +220,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.12\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.12.ru.po b/wiki/src/news/version_4.12.ru.po index 52752f6d505..dfb8ba82752 100644 --- a/wiki/src/news/version_4.12.ru.po +++ b/wiki/src/news/version_4.12.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:38+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -212,10 +212,6 @@ msgstr "" msgid "Tails 4.13 is [[scheduled|contribute/calendar]] for November 17." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.13.de.po b/wiki/src/news/version_4.13.de.po index 9920f18e48d..f70dd2e010b 100644 --- a/wiki/src/news/version_4.13.de.po +++ b/wiki/src/news/version_4.13.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,7 +110,7 @@ msgstr "" #, no-wrap msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -139,11 +139,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog " -"desc=\"Änderungsprotokoll\"]]." +"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=" +"\"Änderungsprotokoll\"]]." #. type: Plain text #, no-wrap @@ -236,12 +236,6 @@ msgstr "" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -249,3 +243,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.13\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.13.es.po b/wiki/src/news/version_4.13.es.po index de72134b9fa..9b96a4dc90d 100644 --- a/wiki/src/news/version_4.13.es.po +++ b/wiki/src/news/version_4.13.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -117,7 +117,7 @@ msgstr "" #, no-wrap msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -146,11 +146,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -246,12 +246,6 @@ msgstr "" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -259,3 +253,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.13\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.13.fr.po b/wiki/src/news/version_4.13.fr.po index a701ba5a2f9..3be3c575f6b 100644 --- a/wiki/src/news/version_4.13.fr.po +++ b/wiki/src/news/version_4.13.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -135,7 +135,7 @@ msgstr "" #| " browser.\n" msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -175,11 +175,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog " -"desc=\"liste des changements\"]]." +"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=" +"\"liste des changements\"]]." #. type: Plain text #, no-wrap @@ -280,12 +280,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "Tails 4.14 est [[prévu|contribute/calendar]] pour le 15 décembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -296,3 +290,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.13\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.13.it.po b/wiki/src/news/version_4.13.it.po index 0e4a91deefc..8572f198b88 100644 --- a/wiki/src/news/version_4.13.it.po +++ b/wiki/src/news/version_4.13.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,7 +110,7 @@ msgstr "" #, no-wrap msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -139,8 +139,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" "Per ulteriori dettagli, leggi il nostro [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." @@ -237,12 +237,6 @@ msgstr "" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -250,3 +244,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.13\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.13.pt.po b/wiki/src/news/version_4.13.pt.po index eb5621e2e74..ede8e4c1e0e 100644 --- a/wiki/src/news/version_4.13.pt.po +++ b/wiki/src/news/version_4.13.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,7 +110,7 @@ msgstr "" #, no-wrap msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -139,11 +139,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -234,10 +234,6 @@ msgstr "" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -245,3 +241,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.13\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.13.ru.po b/wiki/src/news/version_4.13.ru.po index 161f16ccdbe..c750278f0ec 100644 --- a/wiki/src/news/version_4.13.ru.po +++ b/wiki/src/news/version_4.13.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11.3\n" #. type: Plain text @@ -111,7 +111,7 @@ msgstr "" #, no-wrap msgid "" " Users of the Dotfiles feature of the Persistent Storage can choose\n" -" **Places ▸ Dotfiles** to open the\n" +" **Places â–¸ Dotfiles** to open the\n" " */live/persistence/TailsData_unlocked/dotfiles folder* in the *Files*\n" " browser.\n" msgstr "" @@ -140,8 +140,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -233,10 +233,6 @@ msgstr "" msgid "Tails 4.14 is [[scheduled|contribute/calendar]] for December 15." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.14.de.po b/wiki/src/news/version_4.14.de.po index 68a7781be6d..c69e664719a 100644 --- a/wiki/src/news/version_4.14.de.po +++ b/wiki/src/news/version_4.14.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-20 10:08+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -229,12 +229,6 @@ msgstr "" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -242,3 +236,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.14.es.po b/wiki/src/news/version_4.14.es.po index 577298eb5d2..2d9af5ec65e 100644 --- a/wiki/src/news/version_4.14.es.po +++ b/wiki/src/news/version_4.14.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -250,12 +250,6 @@ msgstr "" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -263,3 +257,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.14.fr.po b/wiki/src/news/version_4.14.fr.po index 8d7c411e1de..f39354d47e9 100644 --- a/wiki/src/news/version_4.14.fr.po +++ b/wiki/src/news/version_4.14.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -261,12 +261,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "Tails 4.15 est [[prévu|contribute/calendar]] pour le 26 janvier." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -274,8 +268,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">faire un " -"don</a> est seulement l'une\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.14.it.po b/wiki/src/news/version_4.14.it.po index 4fe865b0c3c..674ee674f86 100644 --- a/wiki/src/news/version_4.14.it.po +++ b/wiki/src/news/version_4.14.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -230,12 +230,6 @@ msgstr "" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -243,3 +237,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.14.pt.po b/wiki/src/news/version_4.14.pt.po index 8b397dead25..b94be86dcd4 100644 --- a/wiki/src/news/version_4.14.pt.po +++ b/wiki/src/news/version_4.14.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -227,10 +227,6 @@ msgstr "" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -238,3 +234,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.14\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.14.ru.po b/wiki/src/news/version_4.14.ru.po index 05eca275ec8..a36571bdd82 100644 --- a/wiki/src/news/version_4.14.ru.po +++ b/wiki/src/news/version_4.14.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -226,10 +226,6 @@ msgstr "" msgid "Tails 4.15 is [[scheduled|contribute/calendar]] for January 26." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.15.1.de.po b/wiki/src/news/version_4.15.1.de.po index 9ac549fc1e4..5a84a637468 100644 --- a/wiki/src/news/version_4.15.1.de.po +++ b/wiki/src/news/version_4.15.1.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-07-04 12:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -166,12 +166,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -180,5 +174,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." + #~ msgid "None specific to this release." #~ msgstr "Für diese Version sind keine bekannt." diff --git a/wiki/src/news/version_4.15.1.es.po b/wiki/src/news/version_4.15.1.es.po index 86ffc3ffc5c..b408257a024 100644 --- a/wiki/src/news/version_4.15.1.es.po +++ b/wiki/src/news/version_4.15.1.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -169,12 +169,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -183,5 +177,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." + #~ msgid "None specific to this release." #~ msgstr "Nada concreto para esta versión." diff --git a/wiki/src/news/version_4.15.1.fr.po b/wiki/src/news/version_4.15.1.fr.po index e51d46437e7..073e779cebe 100644 --- a/wiki/src/news/version_4.15.1.fr.po +++ b/wiki/src/news/version_4.15.1.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,12 +181,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "Tails 4.16 est [[prévu|contribute/calendar]] pour le 23 février." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -198,5 +192,11 @@ msgstr "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15.1\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." + #~ msgid "None specific to this release." #~ msgstr "Aucun spécifique à cette version." diff --git a/wiki/src/news/version_4.15.1.it.po b/wiki/src/news/version_4.15.1.it.po index cfe8470178a..f702949b09e 100644 --- a/wiki/src/news/version_4.15.1.it.po +++ b/wiki/src/news/version_4.15.1.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -167,12 +167,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -181,5 +175,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." + #~ msgid "None specific to this release." #~ msgstr "Nessuno che riguardi questo specifico rilascio." diff --git a/wiki/src/news/version_4.15.1.pt.po b/wiki/src/news/version_4.15.1.pt.po index 90ba30101a7..be7233375ca 100644 --- a/wiki/src/news/version_4.15.1.pt.po +++ b/wiki/src/news/version_4.15.1.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -164,10 +164,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -175,3 +171,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.15.1.ru.po b/wiki/src/news/version_4.15.1.ru.po index c08ab86f3b2..c98d73f78bb 100644 --- a/wiki/src/news/version_4.15.1.ru.po +++ b/wiki/src/news/version_4.15.1.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -165,10 +165,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.15.de.po b/wiki/src/news/version_4.15.de.po index 377408f1aa4..0578a9380ed 100644 --- a/wiki/src/news/version_4.15.de.po +++ b/wiki/src/news/version_4.15.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-14 08:09+0000\n" "Last-Translator: Reiner Unfug <maigatter@posteo.de>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -208,12 +208,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -222,5 +216,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." + #~ msgid "None specific to this release." #~ msgstr "Für diese Version sind keine bekannt." diff --git a/wiki/src/news/version_4.15.es.po b/wiki/src/news/version_4.15.es.po index 60a67e4dd1e..0c62955eced 100644 --- a/wiki/src/news/version_4.15.es.po +++ b/wiki/src/news/version_4.15.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,12 +211,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -225,5 +219,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." + #~ msgid "None specific to this release." #~ msgstr "Nada concreto para esta versión." diff --git a/wiki/src/news/version_4.15.fr.po b/wiki/src/news/version_4.15.fr.po index bb020aa3647..5d85dfc837a 100644 --- a/wiki/src/news/version_4.15.fr.po +++ b/wiki/src/news/version_4.15.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -233,23 +233,19 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "Tails 4.16 est [[prévu|contribute/calendar]] pour le 23 février." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" "We need your help and there are many ways to [[contribute to\n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" -msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15\"" -">faire un don</a> est seulement l'une d'entre elles). Venez [[discuter avec " -"nous|about/contact#tails-dev]] !\n" +msgstr "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15\">faire un don</a> est seulement l'une d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." #~ msgid "None specific to this release." #~ msgstr "Aucun spécifique à cette version." diff --git a/wiki/src/news/version_4.15.it.po b/wiki/src/news/version_4.15.it.po index c53c1dbd7c7..3a017a191cf 100644 --- a/wiki/src/news/version_4.15.it.po +++ b/wiki/src/news/version_4.15.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -209,12 +209,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -223,5 +217,11 @@ msgid "" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." + #~ msgid "None specific to this release." #~ msgstr "Nessuno che riguardi questo specifico rilascio." diff --git a/wiki/src/news/version_4.15.pt.po b/wiki/src/news/version_4.15.pt.po index 4e135a38a8a..da04b2e14e7 100644 --- a/wiki/src/news/version_4.15.pt.po +++ b/wiki/src/news/version_4.15.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,10 +206,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -217,3 +213,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.15\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.15.ru.po b/wiki/src/news/version_4.15.ru.po index e02258b1d3c..979ab31d0a8 100644 --- a/wiki/src/news/version_4.15.ru.po +++ b/wiki/src/news/version_4.15.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,10 +205,6 @@ msgstr "" msgid "Tails 4.16 is [[scheduled|contribute/calendar]] for February 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.16.de.po b/wiki/src/news/version_4.16.de.po index 505259013b0..5edaf3945a9 100644 --- a/wiki/src/news/version_4.16.de.po +++ b/wiki/src/news/version_4.16.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-02-26 12:43+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -187,12 +187,6 @@ msgstr "" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -200,3 +194,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.16\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.16.es.po b/wiki/src/news/version_4.16.es.po index 68babfa2d6e..25f186507d6 100644 --- a/wiki/src/news/version_4.16.es.po +++ b/wiki/src/news/version_4.16.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -190,12 +190,6 @@ msgstr "" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -203,3 +197,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.16\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.16.fr.po b/wiki/src/news/version_4.16.fr.po index 3e2c0eaf0ba..4a198e74ff8 100644 --- a/wiki/src/news/version_4.16.fr.po +++ b/wiki/src/news/version_4.16.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,12 +206,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "Tails 4.17 est [[prévu|contribute/calendar]] pour le 23 mars." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -219,12 +213,16 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.16\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un " -"don</a> est seulement l'une\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." + #~ msgid "<h1 id=\"features\">New features</h1>\n" #~ msgstr "<h1 id=\"features\">Nouvelles fonctionnalités</h1>\n" diff --git a/wiki/src/news/version_4.16.it.po b/wiki/src/news/version_4.16.it.po index f2525360f37..66adb96a264 100644 --- a/wiki/src/news/version_4.16.it.po +++ b/wiki/src/news/version_4.16.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -188,12 +188,6 @@ msgstr "" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -201,3 +195,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.16\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.16.pt.po b/wiki/src/news/version_4.16.pt.po index 665dd38c579..2e1d0dc2074 100644 --- a/wiki/src/news/version_4.16.pt.po +++ b/wiki/src/news/version_4.16.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -185,10 +185,6 @@ msgstr "" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -196,3 +192,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.16\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.16.ru.po b/wiki/src/news/version_4.16.ru.po index 1ed1adf1921..4270b6ce22b 100644 --- a/wiki/src/news/version_4.16.ru.po +++ b/wiki/src/news/version_4.16.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -184,10 +184,6 @@ msgstr "" msgid "Tails 4.17 is [[scheduled|contribute/calendar]] for March 23." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.17.de.po b/wiki/src/news/version_4.17.de.po index b36969e8f82..ea4a87a7785 100644 --- a/wiki/src/news/version_4.17.de.po +++ b/wiki/src/news/version_4.17.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-14 08:09+0000\n" "Last-Translator: Barnabas Steiner <barnabas.steiner@tutanota.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -218,12 +218,6 @@ msgstr "" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -231,3 +225,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.17.es.po b/wiki/src/news/version_4.17.es.po index 74dc83f5dc8..cb5a42a97c2 100644 --- a/wiki/src/news/version_4.17.es.po +++ b/wiki/src/news/version_4.17.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -221,12 +221,6 @@ msgstr "" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -234,3 +228,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.17.fr.po b/wiki/src/news/version_4.17.fr.po index efbeb67ca95..cddf1c4656a 100644 --- a/wiki/src/news/version_4.17.fr.po +++ b/wiki/src/news/version_4.17.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -246,12 +246,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "Tails 4.18 est [[prévu|contribute/calendar]] pour le 20 avril." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -259,8 +253,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un " -"don</a> est seulement l'une\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.17.it.po b/wiki/src/news/version_4.17.it.po index e065a02e025..8a73e560b7e 100644 --- a/wiki/src/news/version_4.17.it.po +++ b/wiki/src/news/version_4.17.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -219,12 +219,6 @@ msgstr "" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -232,3 +226,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.17.pt.po b/wiki/src/news/version_4.17.pt.po index d5dea1041b6..f294e90be29 100644 --- a/wiki/src/news/version_4.17.pt.po +++ b/wiki/src/news/version_4.17.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -216,10 +216,6 @@ msgstr "" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -227,3 +223,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.17.ru.po b/wiki/src/news/version_4.17.ru.po index edc14bb35ea..bd5f6c25b28 100644 --- a/wiki/src/news/version_4.17.ru.po +++ b/wiki/src/news/version_4.17.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -215,10 +215,6 @@ msgstr "" msgid "Tails 4.18 is [[scheduled|contribute/calendar]] for April 20." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.18.de.po b/wiki/src/news/version_4.18.de.po index 2c11be44636..3491a56cc0d 100644 --- a/wiki/src/news/version_4.18.de.po +++ b/wiki/src/news/version_4.18.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-10-30 11:04+0000\n" "Last-Translator: Weblate Admin <tails-weblate@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -226,12 +226,6 @@ msgstr "" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -239,3 +233,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.18.es.po b/wiki/src/news/version_4.18.es.po index 86768dce2db..c2fc84ed767 100644 --- a/wiki/src/news/version_4.18.es.po +++ b/wiki/src/news/version_4.18.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -229,12 +229,6 @@ msgstr "" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -242,3 +236,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.18.fr.po b/wiki/src/news/version_4.18.fr.po index 0f5f581c82b..8844674d815 100644 --- a/wiki/src/news/version_4.18.fr.po +++ b/wiki/src/news/version_4.18.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -259,12 +259,6 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "Tails 4.19 est [[prévu|contribute/calendar]] pour le 1er juin." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -272,8 +266,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un " -"don</a> est seulement l'une\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.18.it.po b/wiki/src/news/version_4.18.it.po index 460501438c0..4fa0dc62961 100644 --- a/wiki/src/news/version_4.18.it.po +++ b/wiki/src/news/version_4.18.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -227,12 +227,6 @@ msgstr "" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -240,3 +234,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.18.pt.po b/wiki/src/news/version_4.18.pt.po index ccc92d0cef7..a85e3698ba7 100644 --- a/wiki/src/news/version_4.18.pt.po +++ b/wiki/src/news/version_4.18.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -224,10 +224,6 @@ msgstr "" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -235,3 +231,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.17\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.18.ru.po b/wiki/src/news/version_4.18.ru.po index f82dcdfb302..d7a67659c17 100644 --- a/wiki/src/news/version_4.18.ru.po +++ b/wiki/src/news/version_4.18.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-08-03 14:06+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -223,10 +223,6 @@ msgstr "" msgid "Tails 4.19 is [[scheduled|contribute/calendar]] for June 1." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.19.de.po b/wiki/src/news/version_4.19.de.po index 315e6f57e5c..27fc03634af 100644 --- a/wiki/src/news/version_4.19.de.po +++ b/wiki/src/news/version_4.19.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:39+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -236,8 +236,8 @@ msgstr "" msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.19.es.po b/wiki/src/news/version_4.19.es.po index 6c0a3401f70..9434631f056 100644 --- a/wiki/src/news/version_4.19.es.po +++ b/wiki/src/news/version_4.19.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:39+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -239,8 +239,8 @@ msgstr "" msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.19.fr.po b/wiki/src/news/version_4.19.fr.po index 9173d156f13..5f0eaff39e4 100644 --- a/wiki/src/news/version_4.19.fr.po +++ b/wiki/src/news/version_4.19.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -275,8 +275,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "Tails 4.20 est [[prévu|contribute/calendar]] pour le 13 juillet." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.19.it.po b/wiki/src/news/version_4.19.it.po index 577c665e67d..54884b72272 100644 --- a/wiki/src/news/version_4.19.it.po +++ b/wiki/src/news/version_4.19.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -237,8 +237,8 @@ msgstr "" msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.19.pt.po b/wiki/src/news/version_4.19.pt.po index 3fcd55abd55..07555598026 100644 --- a/wiki/src/news/version_4.19.pt.po +++ b/wiki/src/news/version_4.19.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -234,6 +234,6 @@ msgstr "" msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.19.ru.po b/wiki/src/news/version_4.19.ru.po index 729730c91d1..e7e88f8f995 100644 --- a/wiki/src/news/version_4.19.ru.po +++ b/wiki/src/news/version_4.19.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:39+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -232,7 +232,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.20 is [[scheduled|contribute/calendar]] for July 13." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.2.2.de.po b/wiki/src/news/version_4.2.2.de.po index 0c0cc401d99..524d46ba79e 100644 --- a/wiki/src/news/version_4.2.2.de.po +++ b/wiki/src/news/version_4.2.2.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -201,12 +201,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -214,3 +208,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.2.2.es.po b/wiki/src/news/version_4.2.2.es.po index b803fd1473a..2a82c8f63e8 100644 --- a/wiki/src/news/version_4.2.2.es.po +++ b/wiki/src/news/version_4.2.2.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -208,12 +208,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -221,3 +215,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.2.2.fr.po b/wiki/src/news/version_4.2.2.fr.po index 7f3ce57fa1f..33932929dd7 100644 --- a/wiki/src/news/version_4.2.2.fr.po +++ b/wiki/src/news/version_4.2.2.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,12 +222,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "Tails 4.3 est [[prévu|contribute/calendar]] pour le 11 février." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -238,3 +232,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2.2\">faire un don</a> est seulement l'une\n" "d'entre elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.2.2.it.po b/wiki/src/news/version_4.2.2.it.po index 005cfd723df..8130a7dd7c5 100644 --- a/wiki/src/news/version_4.2.2.it.po +++ b/wiki/src/news/version_4.2.2.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,12 +220,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "Tails 4.3 è [[previsto|contribute/calendar]] per l'11 febbraio." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -236,3 +230,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.2.2\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.2.2.pt.po b/wiki/src/news/version_4.2.2.pt.po index 2f4b11b861f..71ca9cee301 100644 --- a/wiki/src/news/version_4.2.2.pt.po +++ b/wiki/src/news/version_4.2.2.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -201,10 +201,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -212,3 +208,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.2.2.ru.po b/wiki/src/news/version_4.2.2.ru.po index bec07757208..457d3a60645 100644 --- a/wiki/src/news/version_4.2.2.ru.po +++ b/wiki/src/news/version_4.2.2.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -198,10 +198,6 @@ msgstr "" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.2.de.po b/wiki/src/news/version_4.2.de.po index 6aa605b37ca..f646a302cf1 100644 --- a/wiki/src/news/version_4.2.de.po +++ b/wiki/src/news/version_4.2.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -262,12 +262,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -275,3 +269,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.2.es.po b/wiki/src/news/version_4.2.es.po index e75ee127afe..9c108606823 100644 --- a/wiki/src/news/version_4.2.es.po +++ b/wiki/src/news/version_4.2.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -280,12 +280,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -293,3 +287,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.2.fr.po b/wiki/src/news/version_4.2.fr.po index ea3555abd80..fdc3680a53c 100644 --- a/wiki/src/news/version_4.2.fr.po +++ b/wiki/src/news/version_4.2.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -302,12 +302,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "Tails 4.3 est [[prévu|contribute/calendar]] pour le 11 février." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -318,3 +312,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.2.it.po b/wiki/src/news/version_4.2.it.po index 2a9c2856c68..0b5fbe43e66 100644 --- a/wiki/src/news/version_4.2.it.po +++ b/wiki/src/news/version_4.2.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -310,12 +310,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "Tails 4.3 è [[previsto|contribute/calendar]] per l'11 febbraio." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -326,3 +320,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.2\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.2.pt.po b/wiki/src/news/version_4.2.pt.po index 533dfb855e0..f4b527651be 100644 --- a/wiki/src/news/version_4.2.pt.po +++ b/wiki/src/news/version_4.2.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -260,10 +260,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -271,3 +267,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.2\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.2.ru.po b/wiki/src/news/version_4.2.ru.po index e56ffa4b84d..5fab770f397 100644 --- a/wiki/src/news/version_4.2.ru.po +++ b/wiki/src/news/version_4.2.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -259,10 +259,6 @@ msgstr "" msgid "Tails 4.3 is [[scheduled|contribute/calendar]] for February 11." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.20.de.po b/wiki/src/news/version_4.20.de.po index 7d062ecf15c..137790be32c 100644 --- a/wiki/src/news/version_4.20.de.po +++ b/wiki/src/news/version_4.20.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-10-30 13:04+0000\n" "Last-Translator: Weblate Admin <tails-weblate@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -351,8 +351,8 @@ msgstr "" msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.20.es.po b/wiki/src/news/version_4.20.es.po index f7101826caa..06632c2d1b3 100644 --- a/wiki/src/news/version_4.20.es.po +++ b/wiki/src/news/version_4.20.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -354,8 +354,8 @@ msgstr "" msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.20.fr.po b/wiki/src/news/version_4.20.fr.po index 61fe397e0b9..0c4c6bbb969 100644 --- a/wiki/src/news/version_4.20.fr.po +++ b/wiki/src/news/version_4.20.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -186,8 +186,7 @@ msgid "" " accessible from a Tor onion service.\n" msgstr "" " Cette mise à jour majeure ajoute une fonctionnalité\n" -" permettant d'[héberger un site web](https://docs.onionshare.org/2.3.2/en/" -"features.html#host-a-website)\n" +" permettant d'[héberger un site web](https://docs.onionshare.org/2.3.2/en/features.html#host-a-website)\n" " accessible depuis un service onion Tor.\n" #. type: Plain text @@ -422,8 +421,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "Tails 4.21 est [[prévu|contribute/calendar]] pour le 10 août." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.20.it.po b/wiki/src/news/version_4.20.it.po index 87ea3179a84..8bdfb07ada7 100644 --- a/wiki/src/news/version_4.20.it.po +++ b/wiki/src/news/version_4.20.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -352,8 +352,8 @@ msgstr "" msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.20.pt.po b/wiki/src/news/version_4.20.pt.po index 12738300eae..9a6f731eb70 100644 --- a/wiki/src/news/version_4.20.pt.po +++ b/wiki/src/news/version_4.20.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -349,6 +349,6 @@ msgstr "" msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.20.ru.po b/wiki/src/news/version_4.20.ru.po index 57739a17fd8..d3bc395c2f2 100644 --- a/wiki/src/news/version_4.20.ru.po +++ b/wiki/src/news/version_4.20.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-08-03 14:06+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -347,7 +347,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.21 is [[scheduled|contribute/calendar]] for August 10." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.21.de.po b/wiki/src/news/version_4.21.de.po index dc76a3d1891..54a57eb981d 100644 --- a/wiki/src/news/version_4.21.de.po +++ b/wiki/src/news/version_4.21.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-20 10:08+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -165,8 +165,8 @@ msgstr "" msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.21.es.po b/wiki/src/news/version_4.21.es.po index 997de56a752..c667a7ade5f 100644 --- a/wiki/src/news/version_4.21.es.po +++ b/wiki/src/news/version_4.21.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -168,8 +168,8 @@ msgstr "" msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.21.fr.po b/wiki/src/news/version_4.21.fr.po index 4c2ac85dd40..27e459be076 100644 --- a/wiki/src/news/version_4.21.fr.po +++ b/wiki/src/news/version_4.21.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,8 +181,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "Tails 4.22 est [[prévu|contribute/calendar]] pour le 7 septembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.21.it.po b/wiki/src/news/version_4.21.it.po index 25179937947..697001e1df5 100644 --- a/wiki/src/news/version_4.21.it.po +++ b/wiki/src/news/version_4.21.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:29+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -166,8 +166,8 @@ msgstr "" msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.21.pt.po b/wiki/src/news/version_4.21.pt.po index 86c8c68f29a..cf14d2d14f5 100644 --- a/wiki/src/news/version_4.21.pt.po +++ b/wiki/src/news/version_4.21.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -163,6 +163,6 @@ msgstr "" msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.21.ru.po b/wiki/src/news/version_4.21.ru.po index ea6c8d9c65e..6f30a1f3a20 100644 --- a/wiki/src/news/version_4.21.ru.po +++ b/wiki/src/news/version_4.21.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-10-30 11:05+0000\n" "Last-Translator: Weblate Admin <tails-weblate@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -161,7 +161,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.22 is [[scheduled|contribute/calendar]] for September 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.22.de.po b/wiki/src/news/version_4.22.de.po index ca5f19fbbc2..027893eaf47 100644 --- a/wiki/src/news/version_4.22.de.po +++ b/wiki/src/news/version_4.22.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -312,7 +312,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.22.es.po b/wiki/src/news/version_4.22.es.po index 43655549091..8f393cea388 100644 --- a/wiki/src/news/version_4.22.es.po +++ b/wiki/src/news/version_4.22.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -315,7 +315,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.22.fr.po b/wiki/src/news/version_4.22.fr.po index dcf47d97311..6646f56133f 100644 --- a/wiki/src/news/version_4.22.fr.po +++ b/wiki/src/news/version_4.22.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -323,8 +323,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.22.it.po b/wiki/src/news/version_4.22.it.po index 437c98d76cd..69bc3dd6861 100644 --- a/wiki/src/news/version_4.22.it.po +++ b/wiki/src/news/version_4.22.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -315,7 +315,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.22.pt.po b/wiki/src/news/version_4.22.pt.po index 08029b2bcba..3210b5c0565 100644 --- a/wiki/src/news/version_4.22.pt.po +++ b/wiki/src/news/version_4.22.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -312,7 +312,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.22.ru.po b/wiki/src/news/version_4.22.ru.po index f7d82f7232a..265094cdfb7 100644 --- a/wiki/src/news/version_4.22.ru.po +++ b/wiki/src/news/version_4.22.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -311,7 +311,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.23 is [[scheduled|contribute/calendar]] for October 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.23.de.po b/wiki/src/news/version_4.23.de.po index 289fa7d52af..c77393f0670 100644 --- a/wiki/src/news/version_4.23.de.po +++ b/wiki/src/news/version_4.23.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -157,8 +157,8 @@ msgstr "" msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.23.es.po b/wiki/src/news/version_4.23.es.po index 2aab1e916ca..f808d51b843 100644 --- a/wiki/src/news/version_4.23.es.po +++ b/wiki/src/news/version_4.23.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -160,8 +160,8 @@ msgstr "" msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.23.fr.po b/wiki/src/news/version_4.23.fr.po index b5370ced597..c7b2bf1be6c 100644 --- a/wiki/src/news/version_4.23.fr.po +++ b/wiki/src/news/version_4.23.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,8 +173,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "Tails 4.24 est [[prévu|contribute/calendar]] pour le 2 novembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.23.it.po b/wiki/src/news/version_4.23.it.po index 4d41dc18f39..3a1f18e6c85 100644 --- a/wiki/src/news/version_4.23.it.po +++ b/wiki/src/news/version_4.23.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -158,8 +158,8 @@ msgstr "" msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.23.pt.po b/wiki/src/news/version_4.23.pt.po index 22a1b3391b6..b23a4a51f75 100644 --- a/wiki/src/news/version_4.23.pt.po +++ b/wiki/src/news/version_4.23.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -155,6 +155,6 @@ msgstr "" msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.23.ru.po b/wiki/src/news/version_4.23.ru.po index 29d8bfd7301..006813b7aed 100644 --- a/wiki/src/news/version_4.23.ru.po +++ b/wiki/src/news/version_4.23.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-10-30 11:05+0000\n" "Last-Translator: Weblate Admin <tails-weblate@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -155,7 +155,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.24 is [[scheduled|contribute/calendar]] for November 2." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.24.de.po b/wiki/src/news/version_4.24.de.po index e6a8d45af0c..d44a3c50a36 100644 --- a/wiki/src/news/version_4.24.de.po +++ b/wiki/src/news/version_4.24.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,7 +206,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.24.es.po b/wiki/src/news/version_4.24.es.po index 9092f19b4d6..2aed1357d79 100644 --- a/wiki/src/news/version_4.24.es.po +++ b/wiki/src/news/version_4.24.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,7 +211,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.24.fr.po b/wiki/src/news/version_4.24.fr.po index 80d49116bf6..867cd9a179c 100644 --- a/wiki/src/news/version_4.24.fr.po +++ b/wiki/src/news/version_4.24.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -241,8 +241,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "Tails 4.25 est [[prévu|contribute/calendar]] pour le 7 décembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.24.it.po b/wiki/src/news/version_4.24.it.po index 2517caf7cb5..2cc8fafb9c0 100644 --- a/wiki/src/news/version_4.24.it.po +++ b/wiki/src/news/version_4.24.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -209,7 +209,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.24.pt.po b/wiki/src/news/version_4.24.pt.po index 388c837119f..7f4bacdbd43 100644 --- a/wiki/src/news/version_4.24.pt.po +++ b/wiki/src/news/version_4.24.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,7 +206,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.24.ru.po b/wiki/src/news/version_4.24.ru.po index 47c3e6f2cf3..5f54d76573d 100644 --- a/wiki/src/news/version_4.24.ru.po +++ b/wiki/src/news/version_4.24.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,7 +205,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.25 is [[scheduled|contribute/calendar]] for December 7." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.25.de.po b/wiki/src/news/version_4.25.de.po index d63db2822e9..9923050c430 100644 --- a/wiki/src/news/version_4.25.de.po +++ b/wiki/src/news/version_4.25.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -270,7 +270,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.25.es.po b/wiki/src/news/version_4.25.es.po index 9ec3a130354..4261d311b63 100644 --- a/wiki/src/news/version_4.25.es.po +++ b/wiki/src/news/version_4.25.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -275,7 +275,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.25.fr.po b/wiki/src/news/version_4.25.fr.po index 72c67f9eeba..cc6169b70c4 100644 --- a/wiki/src/news/version_4.25.fr.po +++ b/wiki/src/news/version_4.25.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -315,8 +315,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "Tails 4.26 est [[prévu|contribute/calendar]] pour le 11 janvier." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.25.it.po b/wiki/src/news/version_4.25.it.po index 548dc276bee..ed4a53c6eca 100644 --- a/wiki/src/news/version_4.25.it.po +++ b/wiki/src/news/version_4.25.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -273,7 +273,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.25.pt.po b/wiki/src/news/version_4.25.pt.po index aca203ec4fb..b0cc8991760 100644 --- a/wiki/src/news/version_4.25.pt.po +++ b/wiki/src/news/version_4.25.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -270,7 +270,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.25.ru.po b/wiki/src/news/version_4.25.ru.po index 2a30303b80b..fd7a2563388 100644 --- a/wiki/src/news/version_4.25.ru.po +++ b/wiki/src/news/version_4.25.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -269,7 +269,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.26 is [[scheduled|contribute/calendar]] for January 11." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.26.de.po b/wiki/src/news/version_4.26.de.po index 19e34990b19..0aa1e6e946d 100644 --- a/wiki/src/news/version_4.26.de.po +++ b/wiki/src/news/version_4.26.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,7 +173,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.26.es.po b/wiki/src/news/version_4.26.es.po index e1f2a0683b7..c59d6d0e34a 100644 --- a/wiki/src/news/version_4.26.es.po +++ b/wiki/src/news/version_4.26.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -178,7 +178,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.26.fr.po b/wiki/src/news/version_4.26.fr.po index bd044d4d178..9545d5de4ef 100644 --- a/wiki/src/news/version_4.26.fr.po +++ b/wiki/src/news/version_4.26.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -194,8 +194,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "Tails 4.27 est [[prévu|contribute/calendar]] pour le 8 février." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.26.it.po b/wiki/src/news/version_4.26.it.po index 3818ab94ad7..7569019b2f4 100644 --- a/wiki/src/news/version_4.26.it.po +++ b/wiki/src/news/version_4.26.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -176,7 +176,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.26.pt.po b/wiki/src/news/version_4.26.pt.po index af014a9cdb2..fe86f0f950d 100644 --- a/wiki/src/news/version_4.26.pt.po +++ b/wiki/src/news/version_4.26.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,7 +173,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.26.ru.po b/wiki/src/news/version_4.26.ru.po index a566761446a..ea2c1014ac5 100644 --- a/wiki/src/news/version_4.26.ru.po +++ b/wiki/src/news/version_4.26.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -172,7 +172,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.27 is [[scheduled|contribute/calendar]] for February 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.27.de.po b/wiki/src/news/version_4.27.de.po index d83761991c9..b546d675bc2 100644 --- a/wiki/src/news/version_4.27.de.po +++ b/wiki/src/news/version_4.27.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -203,7 +203,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.27.es.po b/wiki/src/news/version_4.27.es.po index 337852190e9..b47f69085cc 100644 --- a/wiki/src/news/version_4.27.es.po +++ b/wiki/src/news/version_4.27.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -208,7 +208,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.27.fr.po b/wiki/src/news/version_4.27.fr.po index b48b14a9df3..0dc1a3e2460 100644 --- a/wiki/src/news/version_4.27.fr.po +++ b/wiki/src/news/version_4.27.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -230,8 +230,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "Tails 4.28 est [[prévu|contribute/calendar]] pour le 8 mars." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.27.it.po b/wiki/src/news/version_4.27.it.po index c1ff2e0a4e6..3590f6bb282 100644 --- a/wiki/src/news/version_4.27.it.po +++ b/wiki/src/news/version_4.27.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,7 +206,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.27.pt.po b/wiki/src/news/version_4.27.pt.po index e985126c53d..9b71a72738f 100644 --- a/wiki/src/news/version_4.27.pt.po +++ b/wiki/src/news/version_4.27.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -203,7 +203,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.27.ru.po b/wiki/src/news/version_4.27.ru.po index 178bddf73a7..c19b6345802 100644 --- a/wiki/src/news/version_4.27.ru.po +++ b/wiki/src/news/version_4.27.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -202,7 +202,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.28 is [[scheduled|contribute/calendar]] for March 8." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.28.de.po b/wiki/src/news/version_4.28.de.po index a6534c410f9..98531aa2afe 100644 --- a/wiki/src/news/version_4.28.de.po +++ b/wiki/src/news/version_4.28.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -183,7 +183,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.28.es.po b/wiki/src/news/version_4.28.es.po index 7feb38f41ea..265cedd6e2e 100644 --- a/wiki/src/news/version_4.28.es.po +++ b/wiki/src/news/version_4.28.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-12 00:41+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -190,7 +190,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.28.fr.po b/wiki/src/news/version_4.28.fr.po index 502a3a955a5..cf50f0b0966 100644 --- a/wiki/src/news/version_4.28.fr.po +++ b/wiki/src/news/version_4.28.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,8 +206,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "Tails 4.29 est [[prévu|contribute/calendar]] pour le 5 avril." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.28.it.po b/wiki/src/news/version_4.28.it.po index e6eb8705ce5..c42b1672f0c 100644 --- a/wiki/src/news/version_4.28.it.po +++ b/wiki/src/news/version_4.28.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -188,7 +188,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.28.pt.po b/wiki/src/news/version_4.28.pt.po index d214b29e545..46cdb1a8bb3 100644 --- a/wiki/src/news/version_4.28.pt.po +++ b/wiki/src/news/version_4.28.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -183,7 +183,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.28.ru.po b/wiki/src/news/version_4.28.ru.po index e7a1e57e3c5..9f8dc5a602e 100644 --- a/wiki/src/news/version_4.28.ru.po +++ b/wiki/src/news/version_4.28.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -182,7 +182,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.29 is [[scheduled|contribute/calendar]] for April 5." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.29.de.po b/wiki/src/news/version_4.29.de.po index f85539f22b1..9639cc058a4 100644 --- a/wiki/src/news/version_4.29.de.po +++ b/wiki/src/news/version_4.29.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -182,7 +182,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.29.es.po b/wiki/src/news/version_4.29.es.po index c5792153dea..90e5236abf7 100644 --- a/wiki/src/news/version_4.29.es.po +++ b/wiki/src/news/version_4.29.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:41+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -189,7 +189,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.29.fr.po b/wiki/src/news/version_4.29.fr.po index a3771260fbb..33788a9baba 100644 --- a/wiki/src/news/version_4.29.fr.po +++ b/wiki/src/news/version_4.29.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -207,8 +207,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "Tails 4.30 est [[prévu|contribute/calendar]] pour le 3 mai." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.29.it.po b/wiki/src/news/version_4.29.it.po index caddd1b2693..7f622e5d0bb 100644 --- a/wiki/src/news/version_4.29.it.po +++ b/wiki/src/news/version_4.29.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -187,7 +187,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.29.pt.po b/wiki/src/news/version_4.29.pt.po index 7409eb3fb0b..f9dc52f5c7d 100644 --- a/wiki/src/news/version_4.29.pt.po +++ b/wiki/src/news/version_4.29.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -182,7 +182,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.29.ru.po b/wiki/src/news/version_4.29.ru.po index eea22b139a0..e4fca73dde3 100644 --- a/wiki/src/news/version_4.29.ru.po +++ b/wiki/src/news/version_4.29.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -183,7 +183,3 @@ msgstr "" #. type: Plain text msgid "Tails 4.30 is [[scheduled|contribute/calendar]] for May 3." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_4.3.de.po b/wiki/src/news/version_4.3.de.po index 1e05280cccf..8b84a60fa8c 100644 --- a/wiki/src/news/version_4.3.de.po +++ b/wiki/src/news/version_4.3.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -208,12 +208,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -221,3 +215,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.3\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.3.es.po b/wiki/src/news/version_4.3.es.po index fdebc729a12..c7eb06cb063 100644 --- a/wiki/src/news/version_4.3.es.po +++ b/wiki/src/news/version_4.3.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -212,12 +212,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -225,3 +219,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.3\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.3.fr.po b/wiki/src/news/version_4.3.fr.po index 08f1ded6af0..1a933da1e36 100644 --- a/wiki/src/news/version_4.3.fr.po +++ b/wiki/src/news/version_4.3.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -228,12 +228,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "Tails 4.4 est [[prévu|contribute/calendar]] pour le 10 mars." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -244,3 +238,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a plusieurs façons de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.3\">faire un don </a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.3.it.po b/wiki/src/news/version_4.3.it.po index c5699495090..facd317838b 100644 --- a/wiki/src/news/version_4.3.it.po +++ b/wiki/src/news/version_4.3.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -228,12 +228,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "Tails 4.4 è [[previsto|contribute/calendar]] per il 10 marzo." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -244,3 +238,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.3\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.3.pt.po b/wiki/src/news/version_4.3.pt.po index 6b5a275340b..532c03e51a8 100644 --- a/wiki/src/news/version_4.3.pt.po +++ b/wiki/src/news/version_4.3.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,10 +206,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -217,3 +213,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.3\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.3.ru.po b/wiki/src/news/version_4.3.ru.po index c9c239b8d14..43c1da1330d 100644 --- a/wiki/src/news/version_4.3.ru.po +++ b/wiki/src/news/version_4.3.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,10 +205,6 @@ msgstr "" msgid "Tails 4.4 is [[scheduled|contribute/calendar]] for March 10." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.4.1.de.po b/wiki/src/news/version_4.4.1.de.po index be5a8652bcb..c3a39d727ea 100644 --- a/wiki/src/news/version_4.4.1.de.po +++ b/wiki/src/news/version_4.4.1.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-07-04 12:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -176,12 +176,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -189,3 +183,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.4.1.es.po b/wiki/src/news/version_4.4.1.es.po index df1b3fe21f7..712693a02be 100644 --- a/wiki/src/news/version_4.4.1.es.po +++ b/wiki/src/news/version_4.4.1.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -177,12 +177,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -190,3 +184,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.4.1.fr.po b/wiki/src/news/version_4.4.1.fr.po index f2066317036..3305d0d3302 100644 --- a/wiki/src/news/version_4.4.1.fr.po +++ b/wiki/src/news/version_4.4.1.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -197,12 +197,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "Tails 4.5 est [[prévu|contribute/calendar]] pour le 7 avril." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -213,3 +207,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4.1\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.4.1.it.po b/wiki/src/news/version_4.4.1.it.po index a20917626e4..3e16174afa8 100644 --- a/wiki/src/news/version_4.4.1.it.po +++ b/wiki/src/news/version_4.4.1.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -198,12 +198,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "Tails 4.5 è [[previsto|contribute/calendar]] per il 7 aprile." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -214,3 +208,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.4.1\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.4.1.pt.po b/wiki/src/news/version_4.4.1.pt.po index 03966553cc4..c53c2f3559c 100644 --- a/wiki/src/news/version_4.4.1.pt.po +++ b/wiki/src/news/version_4.4.1.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -174,10 +174,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -185,3 +181,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4.1\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.4.1.ru.po b/wiki/src/news/version_4.4.1.ru.po index 3ebb9a5f0b1..d73e306a55f 100644 --- a/wiki/src/news/version_4.4.1.ru.po +++ b/wiki/src/news/version_4.4.1.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -175,10 +175,6 @@ msgstr "" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.4.de.po b/wiki/src/news/version_4.4.de.po index 21b1b38a006..b0f67f34f7d 100644 --- a/wiki/src/news/version_4.4.de.po +++ b/wiki/src/news/version_4.4.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -197,12 +197,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -210,3 +204,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.4.es.po b/wiki/src/news/version_4.4.es.po index e6bf4939465..56071904751 100644 --- a/wiki/src/news/version_4.4.es.po +++ b/wiki/src/news/version_4.4.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,12 +206,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -219,3 +213,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.4.fr.po b/wiki/src/news/version_4.4.fr.po index 3b7989a9c65..0a155a4ce81 100644 --- a/wiki/src/news/version_4.4.fr.po +++ b/wiki/src/news/version_4.4.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -216,12 +216,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "Tails 4.5 est [[prévu|contribute/calendar]] pour le 7 avril." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -233,5 +227,11 @@ msgstr "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." + #~ msgid "None specific to this release." #~ msgstr "Aucun spécifique à cette version." diff --git a/wiki/src/news/version_4.4.it.po b/wiki/src/news/version_4.4.it.po index 273145ccb48..58caa84da9d 100644 --- a/wiki/src/news/version_4.4.it.po +++ b/wiki/src/news/version_4.4.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -217,12 +217,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "Tails 4.5 è [[previsto|contribute/calendar]] per il 7 aprile." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -233,3 +227,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.4\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.4.pt.po b/wiki/src/news/version_4.4.pt.po index 5541909d43b..a8be5efd507 100644 --- a/wiki/src/news/version_4.4.pt.po +++ b/wiki/src/news/version_4.4.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -195,10 +195,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -206,3 +202,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.4\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.4.ru.po b/wiki/src/news/version_4.4.ru.po index 5626a72dbb6..dd4ca6dc112 100644 --- a/wiki/src/news/version_4.4.ru.po +++ b/wiki/src/news/version_4.4.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-21 11:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -194,10 +194,6 @@ msgstr "" msgid "Tails 4.5 is [[scheduled|contribute/calendar]] for April 7." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.5.de.po b/wiki/src/news/version_4.5.de.po index bb2ed7995c5..ba8f622feb3 100644 --- a/wiki/src/news/version_4.5.de.po +++ b/wiki/src/news/version_4.5.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -198,12 +198,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -211,3 +205,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.5\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.5.es.po b/wiki/src/news/version_4.5.es.po index 23e1127fc82..4a1189c65c5 100644 --- a/wiki/src/news/version_4.5.es.po +++ b/wiki/src/news/version_4.5.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -199,12 +199,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -212,3 +206,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.5\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.5.fr.po b/wiki/src/news/version_4.5.fr.po index 5f0be57f1f2..2c5a9c8e8b1 100644 --- a/wiki/src/news/version_4.5.fr.po +++ b/wiki/src/news/version_4.5.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -216,12 +216,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "Tails 4.6 est [[prévu|contribute/calendar]] pour le 5 mai." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -232,3 +226,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.5\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.5.it.po b/wiki/src/news/version_4.5.it.po index 131139f8335..1b70f0fd3e9 100644 --- a/wiki/src/news/version_4.5.it.po +++ b/wiki/src/news/version_4.5.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,12 +222,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "Tails 4.6 è [[previsto|contribute/calendar]] per il 5 maggio." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -238,3 +232,9 @@ msgstr "" "Abbiamo bisogno del tuo aiuto e ci sono molti modi per [[contribuire a\n" "Tails|contribute]] (le <a href=\"https://tails.net/donate/?r=4.5\">donazioni</a> sono soltanto uno di\n" "questi). Vieni a [[parlare con noi|about/contact#tails-dev]]!\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.5.pt.po b/wiki/src/news/version_4.5.pt.po index 33414503d9a..6581b9984f3 100644 --- a/wiki/src/news/version_4.5.pt.po +++ b/wiki/src/news/version_4.5.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -196,10 +196,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -207,3 +203,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.5\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.5.ru.po b/wiki/src/news/version_4.5.ru.po index 98638481859..f13c126a7bf 100644 --- a/wiki/src/news/version_4.5.ru.po +++ b/wiki/src/news/version_4.5.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -197,10 +197,6 @@ msgstr "" msgid "Tails 4.6 is [[scheduled|contribute/calendar]] for May 5." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.6.de.po b/wiki/src/news/version_4.6.de.po index 3d1ebfbffe6..10ad5f4afec 100644 --- a/wiki/src/news/version_4.6.de.po +++ b/wiki/src/news/version_4.6.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-20 03:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -91,7 +91,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr "" #. type: Plain text @@ -188,12 +188,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -201,3 +195,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.6\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.6.es.po b/wiki/src/news/version_4.6.es.po index a32a3a31bd6..c2142f4de96 100644 --- a/wiki/src/news/version_4.6.es.po +++ b/wiki/src/news/version_4.6.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -91,7 +91,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr "" #. type: Plain text @@ -189,12 +189,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -202,3 +196,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.6\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.6.fr.po b/wiki/src/news/version_4.6.fr.po index 322e9f4143a..3900fb05455 100644 --- a/wiki/src/news/version_4.6.fr.po +++ b/wiki/src/news/version_4.6.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -107,7 +107,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" #. type: Plain text @@ -210,12 +210,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "Tails 4.7 est [[prévu|contribute/calendar]] pour le 2 juin." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -226,3 +220,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.6\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.6.it.po b/wiki/src/news/version_4.6.it.po index c97bfd38fa8..0ecbd36b183 100644 --- a/wiki/src/news/version_4.6.it.po +++ b/wiki/src/news/version_4.6.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -91,7 +91,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr "" #. type: Plain text @@ -189,12 +189,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -202,3 +196,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.6\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.6.pt.po b/wiki/src/news/version_4.6.pt.po index b549618b952..0c84a97b00b 100644 --- a/wiki/src/news/version_4.6.pt.po +++ b/wiki/src/news/version_4.6.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -91,7 +91,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr "" #. type: Plain text @@ -186,10 +186,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -197,3 +193,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.6\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.6.ru.po b/wiki/src/news/version_4.6.ru.po index d87dc2af148..c4cde14ca8a 100644 --- a/wiki/src/news/version_4.6.ru.po +++ b/wiki/src/news/version_4.6.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11.3\n" #. type: Plain text @@ -92,7 +92,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu ▸ Japanese (Mozc) ▸ Katakana\"]]\n" +msgid " [[!img japanese.png link=\"no\" alt=\"Keyboard menu â–¸ Japanese (Mozc) â–¸ Katakana\"]]\n" msgstr "" #. type: Plain text @@ -187,10 +187,6 @@ msgstr "" msgid "Tails 4.7 is [[scheduled|contribute/calendar]] for June 2." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.7.de.po b/wiki/src/news/version_4.7.de.po index 4d9d7161af8..7991b91cbc5 100644 --- a/wiki/src/news/version_4.7.de.po +++ b/wiki/src/news/version_4.7.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-06-20 21:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -190,12 +190,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -203,3 +197,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.7.es.po b/wiki/src/news/version_4.7.es.po index 0358cd4d098..df4de56f81a 100644 --- a/wiki/src/news/version_4.7.es.po +++ b/wiki/src/news/version_4.7.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -191,12 +191,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -204,3 +198,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.7.fr.po b/wiki/src/news/version_4.7.fr.po index def749f323d..bdb5b94eca7 100644 --- a/wiki/src/news/version_4.7.fr.po +++ b/wiki/src/news/version_4.7.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,12 +211,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "Tails 4.8 est [[prévu|contribute/calendar]] pour le 30 juin." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -224,8 +218,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">faire un " -"don</a> est seulement l'une d'entre\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.7.it.po b/wiki/src/news/version_4.7.it.po index e63c8b92f6c..c80cc77e593 100644 --- a/wiki/src/news/version_4.7.it.po +++ b/wiki/src/news/version_4.7.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -191,12 +191,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -204,3 +198,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.7.pt.po b/wiki/src/news/version_4.7.pt.po index 196ca83520a..87d124f1363 100644 --- a/wiki/src/news/version_4.7.pt.po +++ b/wiki/src/news/version_4.7.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -188,10 +188,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -199,3 +195,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.7\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.7.ru.po b/wiki/src/news/version_4.7.ru.po index e483b593242..a74f4b40810 100644 --- a/wiki/src/news/version_4.7.ru.po +++ b/wiki/src/news/version_4.7.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -187,10 +187,6 @@ msgstr "" msgid "Tails 4.8 is [[scheduled|contribute/calendar]] for June 30." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.8.de.po b/wiki/src/news/version_4.8.de.po index fc0808e7c72..cddd0bf8c39 100644 --- a/wiki/src/news/version_4.8.de.po +++ b/wiki/src/news/version_4.8.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2020-08-14 11:12+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,11 +173,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog " -"desc=\"Änderungsprotokoll\"]]." +"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=" +"\"Änderungsprotokoll\"]]." #. type: Plain text #, no-wrap @@ -215,7 +215,7 @@ msgstr "" #, no-wrap msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -224,8 +224,8 @@ msgstr "" #, no-wrap msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" @@ -350,12 +350,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -363,3 +357,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.8\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.8.es.po b/wiki/src/news/version_4.8.es.po index ae23afecfb7..dc9becc82c5 100644 --- a/wiki/src/news/version_4.8.es.po +++ b/wiki/src/news/version_4.8.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -182,11 +182,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -224,7 +224,7 @@ msgstr "" #, no-wrap msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -233,8 +233,8 @@ msgstr "" #, no-wrap msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" @@ -360,12 +360,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -373,3 +367,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.8\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.8.fr.po b/wiki/src/news/version_4.8.fr.po index b36bc858c52..c3fa297dc1d 100644 --- a/wiki/src/news/version_4.8.fr.po +++ b/wiki/src/news/version_4.8.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -212,11 +212,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog " -"desc=\"liste des changements\"]]." +"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=" +"\"liste des changements\"]]." #. type: Plain text #, no-wrap @@ -261,7 +261,7 @@ msgstr "<span class=\"code\">_@%+=:,./-</span>" #| " type single quotes <span class=\"code\">'</span> around it.\n" msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -278,8 +278,8 @@ msgstr "" #| " ([[!tails_ticket 17792]])\n" msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" " Par exemple, si votre mot de passe d'administration est :\n" @@ -327,8 +327,8 @@ msgid "" "Tails fails to start with the <span class=\"code\">toram</span> boot option. " "([[!tails_ticket 17800]])" msgstr "" -"Tails ne parvient pas à démarrer avec l'option de démarrage <span " -"class=\"code\">toram</span>. ([[!tails_ticket 17800]])" +"Tails ne parvient pas à démarrer avec l'option de démarrage <span class=" +"\"code\">toram</span>. ([[!tails_ticket 17800]])" #. type: Plain text #, no-wrap @@ -433,12 +433,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "Tails 4.9 est [[prévu|contribute/calendar]] pour le 28 juillet." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -449,3 +443,9 @@ msgstr "" "Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.8\">faire un don</a> est seulement l'une d'entre\n" "elles). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.8.it.po b/wiki/src/news/version_4.8.it.po index 6d9adc4ae39..4a3ccab11b5 100644 --- a/wiki/src/news/version_4.8.it.po +++ b/wiki/src/news/version_4.8.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -180,8 +180,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" "Per ulteriori dettagli, leggi il nostro [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." @@ -222,7 +222,7 @@ msgstr "" #, no-wrap msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -231,8 +231,8 @@ msgstr "" #, no-wrap msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" @@ -358,12 +358,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -371,3 +365,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.8\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.8.pt.po b/wiki/src/news/version_4.8.pt.po index 8d1788f856e..8241c32568d 100644 --- a/wiki/src/news/version_4.8.pt.po +++ b/wiki/src/news/version_4.8.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -180,11 +180,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -222,7 +222,7 @@ msgstr "" #, no-wrap msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -231,8 +231,8 @@ msgstr "" #, no-wrap msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" @@ -355,10 +355,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -366,3 +362,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.8\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.8.ru.po b/wiki/src/news/version_4.8.ru.po index 7eece33bab4..9de83f79d23 100644 --- a/wiki/src/news/version_4.8.ru.po +++ b/wiki/src/news/version_4.8.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2021-07-22 04:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 3.11.3\n" #. type: Plain text @@ -178,8 +178,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -218,7 +218,7 @@ msgstr "" #, no-wrap msgid "" " If you use spaces or other accentuated characters, like <span\n" -" class=\"code\">àéïøů</span>, your will not be able to type your\n" +" class=\"code\">à éïøů</span>, your will not be able to type your\n" " administration password again in your Tails session, unless you\n" " type single quotes <span class=\"code\">'</span> around it.\n" msgstr "" @@ -227,8 +227,8 @@ msgstr "" #, no-wrap msgid "" " For example, if you set the administration password:\n" -" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" -" type <span class=\"code\">'née entrepôt über señor'</span>.\n" +" <span class=\"code\">née entrepôt über señor</span>, you would have to\n" +" type <span class=\"code\">'née entrepôt über señor'</span>.\n" " ([[!tails_ticket 17792]])\n" msgstr "" @@ -351,10 +351,6 @@ msgstr "" msgid "Tails 4.9 is [[scheduled|contribute/calendar]] for July 28." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_4.9.de.po b/wiki/src/news/version_4.9.de.po index 3fa0ba71101..c69aeec31e4 100644 --- a/wiki/src/news/version_4.9.de.po +++ b/wiki/src/news/version_4.9.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -203,12 +203,6 @@ msgstr "Was kommt als Nächstes?" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " -"sehen, was wir als Nächstes vorhaben." - #. type: Plain text #, no-wrap msgid "" @@ -216,3 +210,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.9\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Werfen Sie einen Blick auf die [[!tails_roadmap desc=\"Roadmap\"]], um zu " +#~ "sehen, was wir als Nächstes vorhaben." diff --git a/wiki/src/news/version_4.9.es.po b/wiki/src/news/version_4.9.es.po index 1d3c750e29c..c3fcd38c877 100644 --- a/wiki/src/news/version_4.9.es.po +++ b/wiki/src/news/version_4.9.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,12 +206,6 @@ msgstr "¿Qué novedades hay?" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " -"dirigimos." - #. type: Plain text #, no-wrap msgid "" @@ -219,3 +213,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.9\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Echa un vistazo a nuestro [[!tails_roadmap]] para ver hacia dónde nos " +#~ "dirigimos." diff --git a/wiki/src/news/version_4.9.fr.po b/wiki/src/news/version_4.9.fr.po index 7db034fd5cf..b1a57dfa035 100644 --- a/wiki/src/news/version_4.9.fr.po +++ b/wiki/src/news/version_4.9.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -233,12 +233,6 @@ msgstr "Et ensuite ?" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "Tails 4.10 est [[prévu|contribute/calendar]] pour le 25 août." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." - #. type: Plain text #, no-wrap msgid "" @@ -246,8 +240,12 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.9\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" -"Nous avons besoin de votre aide et il y a de nombreuses manières de [[" -"contribuer à \n" -"Tails|contribute]] ( <a href=\"https://tails.net/donate/?r=4.9\">faire un " -"don</a> est seulement l'une\n" +"Nous avons besoin de votre aide et il y a de nombreuses manières de [[contribuer à \n" +"Tails|contribute]] ( <a href=\"https://tails.net/donate/?r=4.9\">faire un don</a> est seulement l'une\n" "d'entre elles ). Venez [[discuter avec nous|about/contact#tails-dev]] !\n" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_4.9.it.po b/wiki/src/news/version_4.9.it.po index e067f3e5053..ae9b3ec1b6d 100644 --- a/wiki/src/news/version_4.9.it.po +++ b/wiki/src/news/version_4.9.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -204,12 +204,6 @@ msgstr "Cosa arriverà nelle prossime versioni?" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " -"inglese) per sapere a cosa stiamo lavorando." - #. type: Plain text #, no-wrap msgid "" @@ -217,3 +211,9 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.9\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Dai un'occhiata alla nostra [[tabella di marcia|contribute/roadmap]] (in " +#~ "inglese) per sapere a cosa stiamo lavorando." diff --git a/wiki/src/news/version_4.9.pt.po b/wiki/src/news/version_4.9.pt.po index bf4fd195f99..86742106e25 100644 --- a/wiki/src/news/version_4.9.pt.po +++ b/wiki/src/news/version_4.9.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -201,10 +201,6 @@ msgstr "O que vem por aÃ?" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." - #. type: Plain text #, no-wrap msgid "" @@ -212,3 +208,7 @@ msgid "" "Tails|contribute]] (<a href=\"https://tails.net/donate/?r=4.9\">donating</a> is only one of\n" "them). Come [[talk to us|about/contact#tails-dev]]!\n" msgstr "" + +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "Confira o nosso [[!tails_roadmap]] e veja nossos objetivos futuros." diff --git a/wiki/src/news/version_4.9.ru.po b/wiki/src/news/version_4.9.ru.po index 4c3dfaeacf4..4f05a298d2a 100644 --- a/wiki/src/news/version_4.9.ru.po +++ b/wiki/src/news/version_4.9.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2021-07-19 20:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -200,10 +200,6 @@ msgstr "" msgid "Tails 4.10 is [[scheduled|contribute/calendar]] for August 25." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" - #. type: Plain text #, no-wrap msgid "" diff --git a/wiki/src/news/version_5.0.de.po b/wiki/src/news/version_5.0.de.po index acbb67db224..cccf4c785b2 100644 --- a/wiki/src/news/version_5.0.de.po +++ b/wiki/src/news/version_5.0.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,8 +40,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" @@ -197,11 +197,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog " -"desc=\"Änderungsprotokoll\"]]." +"Lesen Sie für mehr Details unser [[!tails_gitweb debian/changelog desc=" +"\"Änderungsprotokoll\"]]." #. type: Plain text #, no-wrap @@ -333,7 +333,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.0.es.po b/wiki/src/news/version_5.0.es.po index 3b7a47a8a02..22fb5db8e8a 100644 --- a/wiki/src/news/version_5.0.es.po +++ b/wiki/src/news/version_5.0.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,8 +40,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" @@ -197,11 +197,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para más detalles, lee nuestro [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -337,7 +337,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.0.fr.po b/wiki/src/news/version_5.0.fr.po index 29ef8d7d5e8..7727e071e01 100644 --- a/wiki/src/news/version_5.0.fr.po +++ b/wiki/src/news/version_5.0.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -45,8 +45,8 @@ msgstr "[[!tag announce]]\n" #| "Tails based on Debian 11 (Bullseye). It brings new versions of a lot of " #| "the software included in Tails and new OpenPGP tools." msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" "Nous sommes particulièrement fières et fiers de vous présenter Tails 5.0, la " @@ -137,8 +137,8 @@ msgid "" "Press the <b>Super</b> ([[!img lib/start.png alt=\"\" class=\"symbolic\" " "link=\"no\"]]) key on your keyboard." msgstr "" -"Appuyer sur la touche <b>Super</b> ([[!img lib/start.png alt=\"\" " -"class=\"symbolic\" link=\"no\"]]) de votre clavier." +"Appuyer sur la touche <b>Super</b> ([[!img lib/start.png alt=\"\" class=" +"\"symbolic\" link=\"no\"]]) de votre clavier." #. type: Plain text #, no-wrap @@ -238,11 +238,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog " -"desc=\"liste des changements\"]]." +"Pour plus de détails, lisez notre [[!tails_gitweb debian/changelog desc=" +"\"liste des changements\"]]." #. type: Plain text #, no-wrap @@ -391,8 +391,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "Tails 5.1 est [[prévu|contribute/calendar]] pour le 31 mai." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.0.it.po b/wiki/src/news/version_5.0.it.po index 6232eec5367..a583d13fba3 100644 --- a/wiki/src/news/version_5.0.it.po +++ b/wiki/src/news/version_5.0.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,8 +40,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" @@ -113,8 +113,8 @@ msgid "" "Press the <b>Super</b> ([[!img lib/start.png alt=\"\" class=\"symbolic\" " "link=\"no\"]]) key on your keyboard." msgstr "" -"Premi il tasto <b>Super</b> ([[!img lib/start.png alt=\"\" " -"class=\"symbolic\" link=\"no\"]]) della tua tastiera." +"Premi il tasto <b>Super</b> ([[!img lib/start.png alt=\"\" class=\"symbolic" +"\" link=\"no\"]]) della tua tastiera." #. type: Plain text #, no-wrap @@ -199,8 +199,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" "Per ulteriori dettagli, leggi il nostro [[!tails_gitweb debian/changelog " "desc=\"changelog\"]]." @@ -337,7 +337,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.0.pt.po b/wiki/src/news/version_5.0.pt.po index f5010aeb568..98c507235fa 100644 --- a/wiki/src/news/version_5.0.pt.po +++ b/wiki/src/news/version_5.0.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,8 +40,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" @@ -197,11 +197,11 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" -"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"Para mais detalhes, leia nosso [[!tails_gitweb debian/changelog desc=" +"\"changelog\"]]." #. type: Plain text #, no-wrap @@ -333,7 +333,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.0.ru.po b/wiki/src/news/version_5.0.ru.po index 763a401d0d4..2e678599286 100644 --- a/wiki/src/news/version_5.0.ru.po +++ b/wiki/src/news/version_5.0.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -15,8 +15,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.9.1\n" #. type: Plain text @@ -41,8 +41,8 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"We are especially proud to present you Tails 5.0, the first version of " -"Tails based on Debian 11 (Bullseye). It brings new versions of a lot of the " +"We are especially proud to present you Tails 5.0, the first version of Tails " +"based on Debian 11 (Bullseye). It brings new versions of a lot of the " "software included in Tails and new OpenPGP tools." msgstr "" @@ -198,8 +198,8 @@ msgstr "" #. type: Plain text msgid "" -"For more details, read our [[!tails_gitweb debian/changelog " -"desc=\"changelog\"]]." +"For more details, read our [[!tails_gitweb debian/changelog desc=\"changelog" +"\"]]." msgstr "" #. type: Plain text @@ -332,7 +332,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.1 is [[scheduled|contribute/calendar]] for May 31." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.1.de.po b/wiki/src/news/version_5.1.1.de.po index a14241027f6..f5d87839d89 100644 --- a/wiki/src/news/version_5.1.1.de.po +++ b/wiki/src/news/version_5.1.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -175,7 +175,3 @@ msgid "" "Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but " "it will likely be released later than that." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.1.es.po b/wiki/src/news/version_5.1.1.es.po index 06766a9c55e..fe588eb475c 100644 --- a/wiki/src/news/version_5.1.1.es.po +++ b/wiki/src/news/version_5.1.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -182,7 +182,3 @@ msgid "" "Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but " "it will likely be released later than that." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.1.fr.po b/wiki/src/news/version_5.1.1.fr.po index e3bea1fea45..5ad1717d2af 100644 --- a/wiki/src/news/version_5.1.1.fr.po +++ b/wiki/src/news/version_5.1.1.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -195,8 +195,8 @@ msgstr "" "Tails 5.2 est [[provisoirement prévu|contribute/calendar]] pour le 5 " "juillet, mais il sera probablement publié plus tard." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.1.1.it.po b/wiki/src/news/version_5.1.1.it.po index 0276ebee9ab..9f95fc985e3 100644 --- a/wiki/src/news/version_5.1.1.it.po +++ b/wiki/src/news/version_5.1.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -180,7 +180,3 @@ msgid "" "Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but " "it will likely be released later than that." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.1.pt.po b/wiki/src/news/version_5.1.1.pt.po index 03ed60f2d8c..a903f57de1c 100644 --- a/wiki/src/news/version_5.1.1.pt.po +++ b/wiki/src/news/version_5.1.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -175,7 +175,3 @@ msgid "" "Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but " "it will likely be released later than that." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.1.ru.po b/wiki/src/news/version_5.1.1.ru.po index a873d3680b8..8405d353350 100644 --- a/wiki/src/news/version_5.1.1.ru.po +++ b/wiki/src/news/version_5.1.1.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -174,7 +174,3 @@ msgid "" "Tails 5.2 is [[tentatively scheduled|contribute/calendar]] for July 5, but " "it will likely be released later than that." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.de.po b/wiki/src/news/version_5.1.de.po index b6a3131b690..8a8ed87a32e 100644 --- a/wiki/src/news/version_5.1.de.po +++ b/wiki/src/news/version_5.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -358,7 +358,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.es.po b/wiki/src/news/version_5.1.es.po index 7125832e3b3..7810fc30bfb 100644 --- a/wiki/src/news/version_5.1.es.po +++ b/wiki/src/news/version_5.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -365,7 +365,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.fr.po b/wiki/src/news/version_5.1.fr.po index 449ee5eb496..37504db1ddc 100644 --- a/wiki/src/news/version_5.1.fr.po +++ b/wiki/src/news/version_5.1.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -425,8 +425,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "Tails 5.2 est [[prévu|contribute/calendar]] pour le 28 juin." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.1.it.po b/wiki/src/news/version_5.1.it.po index 64d4f78bafc..2b2f0dd0619 100644 --- a/wiki/src/news/version_5.1.it.po +++ b/wiki/src/news/version_5.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -363,7 +363,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.pt.po b/wiki/src/news/version_5.1.pt.po index 24797a61529..2f39dd0d429 100644 --- a/wiki/src/news/version_5.1.pt.po +++ b/wiki/src/news/version_5.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -358,7 +358,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.1.ru.po b/wiki/src/news/version_5.1.ru.po index 042c2b226b3..d58a854f026 100644 --- a/wiki/src/news/version_5.1.ru.po +++ b/wiki/src/news/version_5.1.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -357,7 +357,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.2 is [[scheduled|contribute/calendar]] for June 28." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.10.de.po b/wiki/src/news/version_5.10.de.po index a04021c35a5..f60fbef8bae 100644 --- a/wiki/src/news/version_5.10.de.po +++ b/wiki/src/news/version_5.10.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -236,7 +236,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.10.es.po b/wiki/src/news/version_5.10.es.po index b809ee51229..222047e62a0 100644 --- a/wiki/src/news/version_5.10.es.po +++ b/wiki/src/news/version_5.10.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-16 10:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -243,7 +243,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.10.fr.po b/wiki/src/news/version_5.10.fr.po index 6110942bad0..c16144168ef 100644 --- a/wiki/src/news/version_5.10.fr.po +++ b/wiki/src/news/version_5.10.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -270,8 +270,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "Tails 5.11 est [[prévu|contribute/calendar]] pour le 14 mars." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.10.it.po b/wiki/src/news/version_5.10.it.po index b7046079ffd..10e410ffeb8 100644 --- a/wiki/src/news/version_5.10.it.po +++ b/wiki/src/news/version_5.10.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -241,7 +241,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.10.pt.po b/wiki/src/news/version_5.10.pt.po index 21ce0f5c9c1..4dc6d7f8030 100644 --- a/wiki/src/news/version_5.10.pt.po +++ b/wiki/src/news/version_5.10.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -236,7 +236,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.10.ru.po b/wiki/src/news/version_5.10.ru.po index fb887e4419a..77aa9004759 100644 --- a/wiki/src/news/version_5.10.ru.po +++ b/wiki/src/news/version_5.10.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:44+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -235,7 +235,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.11 is [[scheduled|contribute/calendar]] for March 14." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.11.de.po b/wiki/src/news/version_5.11.de.po index 794b3136b30..285bb01bfb4 100644 --- a/wiki/src/news/version_5.11.de.po +++ b/wiki/src/news/version_5.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -215,7 +215,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.11.es.po b/wiki/src/news/version_5.11.es.po index 7ca5c49f54d..a36fbaf4702 100644 --- a/wiki/src/news/version_5.11.es.po +++ b/wiki/src/news/version_5.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -218,7 +218,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.11.fr.po b/wiki/src/news/version_5.11.fr.po index 3e5a6106b3e..f0a09d34424 100644 --- a/wiki/src/news/version_5.11.fr.po +++ b/wiki/src/news/version_5.11.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-05-23 19:01+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -236,8 +236,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.11.it.po b/wiki/src/news/version_5.11.it.po index 8db19e7557c..4a3d1a59aab 100644 --- a/wiki/src/news/version_5.11.it.po +++ b/wiki/src/news/version_5.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -218,7 +218,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.11.pt.po b/wiki/src/news/version_5.11.pt.po index d900f10eea3..a71775045fe 100644 --- a/wiki/src/news/version_5.11.pt.po +++ b/wiki/src/news/version_5.11.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -215,7 +215,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.11.ru.po b/wiki/src/news/version_5.11.ru.po index 16e612f91c0..abaf48c303e 100644 --- a/wiki/src/news/version_5.11.ru.po +++ b/wiki/src/news/version_5.11.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:55+0000\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -214,7 +214,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.12 is [[scheduled|contribute/calendar]] for April 18." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.2.de.po b/wiki/src/news/version_5.2.de.po index 7977698a9c3..37cc4df8b91 100644 --- a/wiki/src/news/version_5.2.de.po +++ b/wiki/src/news/version_5.2.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -174,7 +174,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.2.es.po b/wiki/src/news/version_5.2.es.po index 3d3fa450247..69b8b2b79c8 100644 --- a/wiki/src/news/version_5.2.es.po +++ b/wiki/src/news/version_5.2.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,7 +181,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.2.fr.po b/wiki/src/news/version_5.2.fr.po index 9588bbdbd1f..06b0f923f9f 100644 --- a/wiki/src/news/version_5.2.fr.po +++ b/wiki/src/news/version_5.2.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -193,8 +193,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "Tails 5.3 est [[prévu|contribute/calendar]] pour le 9 août." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.2.it.po b/wiki/src/news/version_5.2.it.po index bf8288cc7ec..dbba33e61c0 100644 --- a/wiki/src/news/version_5.2.it.po +++ b/wiki/src/news/version_5.2.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -179,7 +179,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.2.pt.po b/wiki/src/news/version_5.2.pt.po index bfdd291f64b..dbb89c8c5df 100644 --- a/wiki/src/news/version_5.2.pt.po +++ b/wiki/src/news/version_5.2.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -174,7 +174,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.2.ru.po b/wiki/src/news/version_5.2.ru.po index 1039ca4f5d6..aacd73f1e5c 100644 --- a/wiki/src/news/version_5.2.ru.po +++ b/wiki/src/news/version_5.2.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -173,7 +173,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.3 is [[scheduled|contribute/calendar]] for August 9." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.1.de.po b/wiki/src/news/version_5.3.1.de.po index b627d622813..731d15b8b2d 100644 --- a/wiki/src/news/version_5.3.1.de.po +++ b/wiki/src/news/version_5.3.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -193,7 +193,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.1.es.po b/wiki/src/news/version_5.3.1.es.po index b1220086a27..58496119743 100644 --- a/wiki/src/news/version_5.3.1.es.po +++ b/wiki/src/news/version_5.3.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -200,7 +200,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.1.fr.po b/wiki/src/news/version_5.3.1.fr.po index 1ba63a9815f..11e99fefbf4 100644 --- a/wiki/src/news/version_5.3.1.fr.po +++ b/wiki/src/news/version_5.3.1.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -222,8 +222,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "Tails 5.4 est [[prévu|contribute/calendar]] pour le 23 août." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.3.1.it.po b/wiki/src/news/version_5.3.1.it.po index 8efe9b76b2e..cc834fcc344 100644 --- a/wiki/src/news/version_5.3.1.it.po +++ b/wiki/src/news/version_5.3.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -198,7 +198,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.1.pt.po b/wiki/src/news/version_5.3.1.pt.po index 6f09bb032e6..9a9dd67db9f 100644 --- a/wiki/src/news/version_5.3.1.pt.po +++ b/wiki/src/news/version_5.3.1.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -193,7 +193,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.1.ru.po b/wiki/src/news/version_5.3.1.ru.po index 90fcada5cc1..8785a7683a2 100644 --- a/wiki/src/news/version_5.3.1.ru.po +++ b/wiki/src/news/version_5.3.1.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -192,7 +192,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.de.po b/wiki/src/news/version_5.3.de.po index 8200c956fb8..04a8fd197eb 100644 --- a/wiki/src/news/version_5.3.de.po +++ b/wiki/src/news/version_5.3.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -162,7 +162,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.es.po b/wiki/src/news/version_5.3.es.po index c4948cba211..3b97a5fa735 100644 --- a/wiki/src/news/version_5.3.es.po +++ b/wiki/src/news/version_5.3.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -169,7 +169,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.fr.po b/wiki/src/news/version_5.3.fr.po index 6cef947b147..f528d02c731 100644 --- a/wiki/src/news/version_5.3.fr.po +++ b/wiki/src/news/version_5.3.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -177,8 +177,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "Tails 5.4 est [[prévu|contribute/calendar]] pour le 23 août." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.3.it.po b/wiki/src/news/version_5.3.it.po index d09ccba9e88..e7c4f8665d5 100644 --- a/wiki/src/news/version_5.3.it.po +++ b/wiki/src/news/version_5.3.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -167,7 +167,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.pt.po b/wiki/src/news/version_5.3.pt.po index b8562dbb246..b552117a270 100644 --- a/wiki/src/news/version_5.3.pt.po +++ b/wiki/src/news/version_5.3.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -162,7 +162,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.3.ru.po b/wiki/src/news/version_5.3.ru.po index 62f0646a2c0..c6a0a311052 100644 --- a/wiki/src/news/version_5.3.ru.po +++ b/wiki/src/news/version_5.3.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -163,7 +163,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.4 is [[scheduled|contribute/calendar]] for August 23." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.4.de.po b/wiki/src/news/version_5.4.de.po index a08566e9b78..93553fdfb9d 100644 --- a/wiki/src/news/version_5.4.de.po +++ b/wiki/src/news/version_5.4.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,7 +181,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.4.es.po b/wiki/src/news/version_5.4.es.po index 995d2add15b..093886fcc33 100644 --- a/wiki/src/news/version_5.4.es.po +++ b/wiki/src/news/version_5.4.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -188,7 +188,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.4.fr.po b/wiki/src/news/version_5.4.fr.po index 881a10f4465..4b80d113c77 100644 --- a/wiki/src/news/version_5.4.fr.po +++ b/wiki/src/news/version_5.4.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,8 +206,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "Tails 5.5 est [[prévu|contribute/calendar]] pour le 20 septembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.4.it.po b/wiki/src/news/version_5.4.it.po index 1e170555874..9897b1c8133 100644 --- a/wiki/src/news/version_5.4.it.po +++ b/wiki/src/news/version_5.4.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -186,7 +186,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.4.pt.po b/wiki/src/news/version_5.4.pt.po index 7fff06d54a6..24005b25e68 100644 --- a/wiki/src/news/version_5.4.pt.po +++ b/wiki/src/news/version_5.4.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,7 +181,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.4.ru.po b/wiki/src/news/version_5.4.ru.po index ac0f129e96d..62c619fef2b 100644 --- a/wiki/src/news/version_5.4.ru.po +++ b/wiki/src/news/version_5.4.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -180,7 +180,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.5 is [[scheduled|contribute/calendar]] for September 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.5.de.po b/wiki/src/news/version_5.5.de.po index ad941d06d2a..68b7514bcf8 100644 --- a/wiki/src/news/version_5.5.de.po +++ b/wiki/src/news/version_5.5.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,7 +205,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.5.es.po b/wiki/src/news/version_5.5.es.po index 3bfc379ed27..a256575d03a 100644 --- a/wiki/src/news/version_5.5.es.po +++ b/wiki/src/news/version_5.5.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:42+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -212,7 +212,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.5.fr.po b/wiki/src/news/version_5.5.fr.po index 8436e9fbd14..a6925611b9d 100644 --- a/wiki/src/news/version_5.5.fr.po +++ b/wiki/src/news/version_5.5.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -241,8 +241,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "Tails 5.6 est [[prévu|contribute/calendar]] pour le 25 octobre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.5.it.po b/wiki/src/news/version_5.5.it.po index 2a452b071ec..34300b31103 100644 --- a/wiki/src/news/version_5.5.it.po +++ b/wiki/src/news/version_5.5.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -210,7 +210,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.5.pt.po b/wiki/src/news/version_5.5.pt.po index 7a17eb25e48..51bb5622cbd 100644 --- a/wiki/src/news/version_5.5.pt.po +++ b/wiki/src/news/version_5.5.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,7 +205,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.5.ru.po b/wiki/src/news/version_5.5.ru.po index 2aee1496947..62ec606197e 100644 --- a/wiki/src/news/version_5.5.ru.po +++ b/wiki/src/news/version_5.5.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -206,7 +206,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.6 is [[scheduled|contribute/calendar]] for October 25." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.6.de.po b/wiki/src/news/version_5.6.de.po index 6006f4809be..17b1fa7342d 100644 --- a/wiki/src/news/version_5.6.de.po +++ b/wiki/src/news/version_5.6.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: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -176,7 +176,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.7 is scheduled for November 22." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.6.es.po b/wiki/src/news/version_5.6.es.po index 406fda62c12..e32e41e74f1 100644 --- a/wiki/src/news/version_5.6.es.po +++ b/wiki/src/news/version_5.6.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: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:43+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -153,8 +153,7 @@ msgid "" "<div class=\"caution\"><p>The Persistent Storage on the USB stick will be lost if\n" "you install instead of upgrading.</p></div>\n" msgstr "" -"<div class=\"caution\"><p>El Almacenamiento Persistente en la memoria USB se " -"perderá si\n" +"<div class=\"caution\"><p>El Almacenamiento Persistente en la memoria USB se perderá si\n" "instalas en vez de actualizar.</p></div>\n" #. type: Title ## @@ -184,7 +183,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.7 is scheduled for November 22." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.6.fr.po b/wiki/src/news/version_5.6.fr.po index ba77fac0f98..9e3c7112ad0 100644 --- a/wiki/src/news/version_5.6.fr.po +++ b/wiki/src/news/version_5.6.fr.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: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2022-12-28 19:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -105,8 +105,7 @@ msgstr "<h1 id=\"get\">Obtenir Tails 5.6</h1>\n" #. type: Title ## #, no-wrap msgid "To upgrade your Tails USB stick and keep your persistent storage" -msgstr "" -"Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" +msgstr "Pour mettre à jour votre clé USB Tails et conserver votre stockage persistant" #. type: Plain text msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.6." @@ -120,10 +119,8 @@ msgid "" " You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" " automatic upgrades by doing a manual upgrade to the latest version.\n" msgstr "" -" Vous pouvez [[réduire la taille du téléchargement|doc/upgrade#reduce]] des " -"futures\n" -" mises à jours automatiques en effectuant une mise à jour manuelle vers la " -"dernière version.\n" +" Vous pouvez [[réduire la taille du téléchargement|doc/upgrade#reduce]] des futures\n" +" mises à jours automatiques en effectuant une mise à jour manuelle vers la dernière version.\n" #. type: Bullet: '- ' msgid "" @@ -169,8 +166,7 @@ msgid "" "<div class=\"caution\"><p>The Persistent Storage on the USB stick will be lost if\n" "you install instead of upgrading.</p></div>\n" msgstr "" -"<div class=\"caution\"><p>Le stockage persistant de la clé USB sera perdu " -"si\n" +"<div class=\"caution\"><p>Le stockage persistant de la clé USB sera perdu si\n" "vous faites une installation au lieu d'une mise à jour.</p></div>\n" #. type: Title ## @@ -203,8 +199,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.7 is scheduled for November 22." msgstr "Tails 5.7 est prévu pour le 22 novembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.6.it.po b/wiki/src/news/version_5.6.it.po index 6bf13311b58..c2f3f69e924 100644 --- a/wiki/src/news/version_5.6.it.po +++ b/wiki/src/news/version_5.6.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: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -96,9 +96,7 @@ msgstr "" #. type: Title ## #, no-wrap msgid "To upgrade your Tails USB stick and keep your persistent storage" -msgstr "" -"Per aggiornare la propria chiavetta USB Tails e conservare il proprio volume " -"persistente" +msgstr "Per aggiornare la propria chiavetta USB Tails e conservare il proprio volume persistente" #. type: Plain text msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.6." @@ -117,8 +115,8 @@ msgid "" "automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]." msgstr "" "Se non puoi eseguire un aggiornamento automatico o se Tails non si avvia " -"dopo un aggiornamento automatico, ti preghiamo di provare a eseguire un [[" -"aggiornamento manuale|doc/upgrade/#manual]]." +"dopo un aggiornamento automatico, ti preghiamo di provare a eseguire un " +"[[aggiornamento manuale|doc/upgrade/#manual]]." #. type: Title ## #, no-wrap @@ -183,7 +181,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.7 is scheduled for November 22." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.6.pt.po b/wiki/src/news/version_5.6.pt.po index 08096fbd252..7f1b3a11ff6 100644 --- a/wiki/src/news/version_5.6.pt.po +++ b/wiki/src/news/version_5.6.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: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -176,7 +176,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.7 is scheduled for November 22." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.6.ru.po b/wiki/src/news/version_5.6.ru.po index 7402fb6417b..85602826831 100644 --- a/wiki/src/news/version_5.6.ru.po +++ b/wiki/src/news/version_5.6.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2022-10-25 08:39+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -175,7 +175,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.7 is scheduled for November 22." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.7.de.po b/wiki/src/news/version_5.7.de.po index 98a166ddffc..941ee2c6de0 100644 --- a/wiki/src/news/version_5.7.de.po +++ b/wiki/src/news/version_5.7.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -252,7 +252,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.7.es.po b/wiki/src/news/version_5.7.es.po index 66134923324..5d8a665cf11 100644 --- a/wiki/src/news/version_5.7.es.po +++ b/wiki/src/news/version_5.7.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-12 00:43+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -259,7 +259,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.7.fr.po b/wiki/src/news/version_5.7.fr.po index 5a029548aa0..04d1fb02818 100644 --- a/wiki/src/news/version_5.7.fr.po +++ b/wiki/src/news/version_5.7.fr.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -292,8 +292,8 @@ msgstr "<h1 id=\"next\">Et ensuite ?</h1>\n" msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "Tails 5.8 est [[prévu|contribute/calendar]] pour le 20 décembre." -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -"Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir ce " -"que nous avons en tête." +#~ msgid "" +#~ "Have a look at our [[!tails_roadmap]] to see where we are heading to." +#~ msgstr "" +#~ "Jetez un Å“il à notre [[feuille de route|contribute/roadmap]] pour savoir " +#~ "ce que nous avons en tête." diff --git a/wiki/src/news/version_5.7.it.po b/wiki/src/news/version_5.7.it.po index 3b0aa2d74ec..36775e16af6 100644 --- a/wiki/src/news/version_5.7.it.po +++ b/wiki/src/news/version_5.7.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -257,7 +257,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.7.pt.po b/wiki/src/news/version_5.7.pt.po index 7f3e90243d1..414ea7adcf0 100644 --- a/wiki/src/news/version_5.7.pt.po +++ b/wiki/src/news/version_5.7.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: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -254,7 +254,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" diff --git a/wiki/src/news/version_5.7.ru.po b/wiki/src/news/version_5.7.ru.po index 9da8b44a3db..32201d6eb54 100644 --- a/wiki/src/news/version_5.7.ru.po +++ b/wiki/src/news/version_5.7.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-07-06 09:16+0000\n" +"POT-Creation-Date: 2023-08-24 19:56+0000\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -251,7 +251,3 @@ msgstr "" #. type: Plain text msgid "Tails 5.8 is [[scheduled|contribute/calendar]] for December 20." msgstr "" - -#. type: Plain text -msgid "Have a look at our [[!tails_roadmap]] to see where we are heading to." -msgstr "" -- GitLab From 1e250fd3774bb9ff973487c29092f2b969a0acdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20Knau=C3=9F?= <hefee@debian.org> Date: Mon, 28 Aug 2023 16:05:43 +0200 Subject: [PATCH 087/119] Enable all available printers. As we want that users can simply use any supported printer and not ask for each of them. --- config/chroot_local-packageslists/tails-common.list | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/chroot_local-packageslists/tails-common.list b/config/chroot_local-packageslists/tails-common.list index 54feac3ae59..c32db77c011 100644 --- a/config/chroot_local-packageslists/tails-common.list +++ b/config/chroot_local-packageslists/tails-common.list @@ -336,11 +336,7 @@ foomatic-db foomatic-db-engine hplip ipp-usb -printer-driver-escpr -printer-driver-hpcups -printer-driver-gutenprint -printer-driver-postscript-hp -printer-driver-brlaser +printer-driver-all-enforce ### Enable MAT2's Nautilus extension python3-nautilus -- GitLab From 9d25846ec5cdbcdcaa664e47709a88d0dd51861b Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Mon, 28 Aug 2023 17:27:58 +0200 Subject: [PATCH 088/119] tps: drop parsing of luksDump and use JSON instead The `luksDump --dump-json-metadata` option requires installing a newer version of cryptsetup than what's avaialable in Debian bullseye so we need to upload a custom build of cryptsetup. --- .../lib/python3/dist-packages/tps/device.py | 84 +++++-------------- .../lib/python3/dist-packages/tps/executil.py | 2 +- 2 files changed, 24 insertions(+), 62 deletions(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py index 10ec66630cd..3a3e42a69b9 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py @@ -1,3 +1,4 @@ +import json import os import subprocess import tempfile @@ -22,10 +23,6 @@ logger = tps.logging.get_logger(__name__) TAILS_MOUNTPOINT = "/lib/live/mount/medium" PARTITION_GUID = "8DA63339-0007-60C0-C436-083AC8230908" # Linux reserved TPS_PARTITION_LABEL = "TailsData" -VERSION_REGEX = re.compile(r'^Version:\s*(\d+)$', re.MULTILINE) -KEYSLOT_REGEX = re.compile(r'^ (\d+): (.+)$') -PBKDF_REGEX = re.compile(r'^\s*PBKDF:\s*(\S+)$') -MEMORY_COST_REGEX = re.compile(r'^\s*Memory:\s*(\d+)$') # Leave at least 200 MiB of memory to the system to avoid triggering the # OOM killer. @@ -178,60 +175,26 @@ class TPSPartition(object): def is_upgraded(self) -> bool: logger.debug("Calling is_upgraded()") - cmd = ["cryptsetup", "luksDump", self.device_path] - try: - luks_dump = executil.check_output(cmd) - luks_dump = re.sub( - r'((?:UUID|Salt|Digest):\s*)[\sa-f0-9-]*\n', - r'\1[REDACTED]\n', - luks_dump, - re.MULTILINE - ) - except subprocess.CalledProcessError: - logger.exception("Command 'cryptsetup luksDump' failed") - return False - logger.debug(f"### Beginning of LUKS dump ###\n" - f"{luks_dump}\n" - f"### End of LUKS dump ###") - - version = str() - if m := VERSION_REGEX.search(luks_dump): - version = m.group(1) - logger.debug(f"version = {version}") - - # LUKS version 1 does not print the PBKDF because it only - # supports PBKDF2. - if version == "1": + cmd = ["cryptsetup", "luksDump", "--dump-json-metadata", self.device_path] + p = executil.run(cmd, stdout=subprocess.PIPE) + if p.returncode != 0: + m = "Command 'cryptsetup luksDump' failed" + if p.stderr.startswith("Dump operation is not supported for this device type"): + m += ": dump operation was not supported for the device which implies " \ + "it uses LUKS version 1" + else: + m += f": {p.stderr.strip()}" + logger.debug(m) return False - try: - keyslots_section = luks_dump.split("Keyslots:\n")[1].split("Tokens:\n")[0] - except KeyError: - return False - keyslots = dict() - slot = None - for line in keyslots_section.splitlines(): - if m := KEYSLOT_REGEX.match(line): - slot = int(m.group(1)) - keyslots[slot] = dict() - keyslots[slot]["type"] = m.group(2) - elif m := PBKDF_REGEX.match(line): - keyslots[slot]["pbkdf"] = m.group(1) - elif m := MEMORY_COST_REGEX.match(line): - keyslots[slot]["memory_cost_kib"] = int(m.group(1)) - logger.debug(f"keyslots = {keyslots}") - - errors = list() - if not version: - errors.append("LUKS version") - if len(keyslots) == 0: - errors.append("keyslots") - if errors: - logger.error(f"Could not get {' and '.join(errors)} from LUKS dump\n" - f"### Beginning of LUKS dump ###\n" - f"{luks_dump}\n" - f"### End of LUKS dump ###") + luks_json = json.loads(str(p.stdout)) + except json.decoder.JSONDecodeError: + logger.exception("Could not parse luksDump output as JSON") return False + keyslots = luks_json['keyslots'] + for keyslot in keyslots: + luks_json['keyslots'][keyslot]['kdf']['salt'] = 'redacted' + logger.debug(f"LUKS keyslots JSON dump: {keyslots}") # The parameters we want for the LUKS header are: # - LUKS version 2 @@ -252,22 +215,21 @@ class TPSPartition(object): def keyslot_is_upgraded(keyslot): try: return keyslot["type"] == "luks2" and \ - keyslot["pbkdf"] == "argon2id" and \ - keyslot["memory_cost_kib"] >= required_memory_cost_kib + keyslot["kdf"]["type"] == "argon2id" and \ + keyslot["kdf"]["memory"] >= required_memory_cost_kib except KeyError: return False - updated_keyslots = [slot for slot in keyslots if keyslot_is_upgraded(keyslots[slot])] - logger.debug(f"updated_keyslots = {updated_keyslots}") + upgraded_keyslots = [slot for slot in keyslots if keyslot_is_upgraded(keyslots[slot])] + logger.debug(f"upgraded_keyslots = {upgraded_keyslots}") # We only require a single key to be upgraded since we have # seen users ending up with multiple keys, some which refuse # to upgrade (probably due to the storage being corrupt) so # is_upgraded() would always return false leading to the LUKS # upgrade procedure for each boot (tails/tails#19728). - upgraded = version == "2" and len(updated_keyslots) > 0 + upgraded = len(upgraded_keyslots) > 0 logger.debug(f"is_upgraded() = {upgraded}") - return upgraded @classmethod diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py index 38c3d610bb4..684bb1a4bf4 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py @@ -36,7 +36,7 @@ def _run(cmd: List, *args, **kwargs) -> subprocess.CompletedProcess: print(e.stderr, file=sys.stderr) raise else: - print(p.stderr, file=sys.stderr) + #print(p.stderr, file=sys.stderr) return p finally: logger.debug(f"Done executing command", stacklevel=5) -- GitLab From 60dd3177a5ae2d950c4d6032ee304b0614c78520 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Mon, 28 Aug 2023 17:32:18 +0200 Subject: [PATCH 089/119] Enable the 19728-tps-upgrade-check-vs-corrupt-keys APT overlay (refs: tails/tails#19728). We need a newer version of cryptsetup for the `luksDump --dump-json-metadata` option. --- config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys diff --git a/config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys b/config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys new file mode 100644 index 00000000000..e69de29bb2d -- GitLab From e65ff2b23b6bb2e8f8c1603192fabd68745a125d Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Wed, 30 Aug 2023 12:15:14 +0200 Subject: [PATCH 090/119] tps: revert commented out code that was committed by mistake --- .../usr/lib/python3/dist-packages/tps/executil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py index 684bb1a4bf4..38c3d610bb4 100644 --- a/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py +++ b/config/chroot_local-includes/usr/lib/python3/dist-packages/tps/executil.py @@ -36,7 +36,7 @@ def _run(cmd: List, *args, **kwargs) -> subprocess.CompletedProcess: print(e.stderr, file=sys.stderr) raise else: - #print(p.stderr, file=sys.stderr) + print(p.stderr, file=sys.stderr) return p finally: logger.debug(f"Done executing command", stacklevel=5) -- GitLab From bf9e919108e86502bf8453ad95c07768c426e30e Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Wed, 30 Aug 2023 13:16:24 +0200 Subject: [PATCH 091/119] Make sure Tails APT signing key is trusted --- wiki/src/contribute/release_process/test/setup.mdwn | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wiki/src/contribute/release_process/test/setup.mdwn b/wiki/src/contribute/release_process/test/setup.mdwn index dd6bd79570d..73460b1a8e2 100644 --- a/wiki/src/contribute/release_process/test/setup.mdwn +++ b/wiki/src/contribute/release_process/test/setup.mdwn @@ -51,6 +51,9 @@ To install the dependencies on our test suite: )" if dpkg --compare-versions "${virt_viewer_candidate_version}" ge 10.0; then # https://gitlab.tails.boum.org/tails/tails/-/issues/19064 + sudo install --owner root --group root --mode 644 \ + config/chroot_sources/tails.chroot.gpg \ + /etc/apt/trusted.gpg.d/tails.asc echo 'deb http://deb.tails.boum.org/ isotester-bookworm main' \ | sudo tee /etc/apt/sources.list.d/isotester-bookworm.list fi -- GitLab From 2ef644cffbe9a7854bd9dc9fb4344802120e533e Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Wed, 30 Aug 2023 13:19:29 -0600 Subject: [PATCH 092/119] Update income chart to 2021-2022 --- wiki/src/donate.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wiki/src/donate.html b/wiki/src/donate.html index 72d151136b3..9aed17eb9c9 100644 --- a/wiki/src/donate.html +++ b/wiki/src/donate.html @@ -540,19 +540,19 @@ budget under $350 000.</p> <div class="chart-content"> <svg width="75%" height="75%" viewBox="0 0 64 64"> <!-- stroke-dashoffset = 100 - sum(lengths of preceding segments) + offset of 1st segment --> - <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#53b351" stroke-width="32" stroke-dasharray="73 27" stroke-dashoffset="25" aria-labelledby=""></circle> - <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#7a478b" stroke-width="32" stroke-dasharray="19 81" stroke-dashoffset="52" aria-labelledby=""></circle> - <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#9c6bad" stroke-width="32" stroke-dasharray="4 96" stroke-dashoffset="33" aria-labelledby=""></circle> - <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#af97c7" stroke-width="32" stroke-dasharray="4 96" stroke-dashoffset="29" aria-labelledby=""></circle> + <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#53b351" stroke-width="32" stroke-dasharray="69 31" stroke-dashoffset="25" aria-labelledby=""></circle> + <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#7a478b" stroke-width="32" stroke-dasharray="20 80" stroke-dashoffset="56" aria-labelledby=""></circle> + <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#9c6bad" stroke-width="32" stroke-dasharray="6 94" stroke-dashoffset="36" aria-labelledby=""></circle> + <circle cx="32" cy="32" r="15.91549430918954" fill="transparent" stroke="#af97c7" stroke-width="32" stroke-dasharray="5 95" stroke-dashoffset="30" aria-labelledby=""></circle> </svg> </div> <figcaption class="chart-key"> <ul class="chart-key-list"> - <li class="green"><div class="key-label">Passionate people like you</div><div class="key-percent">(73%)</div></li> - <li class="purple-1"><div class="key-label">Foundations & NGOs</div><div class="key-percent">(16%)</div><br/>like Mozilla or RIPE NCC</li> - <li class="purple-2"><div class="key-label">Entities related to the US government</div><div class="key-percent">(8%)</div><br/>like the US Department of State</li> - <li class="purple-3"><div class="key-label">Private companies</div><div class="key-percent">(4%)</div><br/>like ProtonMail or ThinkPenguin</li> + <li class="green"><div class="key-label">Passionate people like you</div><div class="key-percent">(69%)</div></li> + <li class="purple-1"><div class="key-label">Entities related to the US government</div><div class="key-percent">(20%)</div><br/>like the US Department of State and Internews</li> + <li class="purple-2"><div class="key-label">Foundations & NGOs</div><div class="key-percent">(6%)</div><br/>like Tor and RIPE NCC</li> + <li class="purple-3"><div class="key-label">Private companies</div><div class="key-percent">(5%)</div><br/>like ProtonMail and ThinkPenguin</li> </ul> </figcaption> </figure> -- GitLab From 199276c2a1b7eaada679fa757919fbcc55836e05 Mon Sep 17 00:00:00 2001 From: IkiWiki <ikiwiki.info> Date: Wed, 30 Aug 2023 19:30:41 +0000 Subject: [PATCH 093/119] updated PO files --- wiki/src/donate.de.po | 20 +++++++-------- wiki/src/donate.es.po | 37 +++++++++++++--------------- wiki/src/donate.fr.po | 57 +++++++++++++++++++++++++++---------------- wiki/src/donate.it.po | 20 +++++++-------- wiki/src/donate.pt.po | 54 ++++++++++++++++++++++++++-------------- wiki/src/donate.ru.po | 32 ++++++++++++------------ 6 files changed, 125 insertions(+), 95 deletions(-) diff --git a/wiki/src/donate.de.po b/wiki/src/donate.de.po index 38e7cf2dd81..0e5c1f14461 100644 --- a/wiki/src/donate.de.po +++ b/wiki/src/donate.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -962,31 +962,31 @@ msgid "Passionate people like you" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" +msgid "(69%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" +msgid "Entities related to the US government" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" +msgid "(20%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like Mozilla or RIPE NCC" +msgid "like the US Department of State and Internews" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" +msgid "Foundations & NGOs" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" +msgid "(6%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" +msgid "like Tor and RIPE NCC" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -994,11 +994,11 @@ msgid "Private companies" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" +msgid "(5%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "" #. type: Content of: <div><div><h3> diff --git a/wiki/src/donate.es.po b/wiki/src/donate.es.po index 9657bbf88e5..0c043a4fbc1 100644 --- a/wiki/src/donate.es.po +++ b/wiki/src/donate.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/src-" @@ -890,45 +890,45 @@ msgid "Passionate people like you" msgstr "Gente apasionada como tú" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" +msgid "(69%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" -msgstr "Fundaciones y ONGs" +msgid "Entities related to the US government" +msgstr "Entidades relacionadas con el gobierno de Estados Unidos" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" +msgid "(20%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -#, fuzzy -#| msgid "like Mozilla or Handshake" -msgid "like Mozilla or RIPE NCC" -msgstr "como Mozilla o Handshake" +msgid "like the US Department of State and Internews" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" -msgstr "Entidades relacionadas con el gobierno de Estados Unidos" +msgid "Foundations & NGOs" +msgstr "Fundaciones y ONGs" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" +msgid "(6%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" -msgstr "" +#, fuzzy +#| msgid "like Mozilla or Handshake" +msgid "like Tor and RIPE NCC" +msgstr "como Mozilla o Handshake" #. type: Content of: <div><div><figure><figcaption><ul><li><div> msgid "Private companies" msgstr "CompañÃas privadas" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" -msgstr "" +msgid "(5%)" +msgstr "(5%)" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "" #. type: Content of: <div><div><h3> @@ -1297,9 +1297,6 @@ msgstr "" #~ msgid "Meetings" #~ msgstr "Reuniones" -#~ msgid "(5%)" -#~ msgstr "(5%)" - #~ msgid "" #~ "Tails also receives grants, awards, corporate donations, and substantial " #~ "donations from individuals." diff --git a/wiki/src/donate.fr.po b/wiki/src/donate.fr.po index 2a2284698fa..c631186627d 100644 --- a/wiki/src/donate.fr.po +++ b/wiki/src/donate.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2023-01-04 21:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -866,43 +866,49 @@ msgid "Passionate people like you" msgstr "Personnes passionnées comme vous" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" -msgstr "(73%)" +msgid "(69%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" -msgstr "Fondations et ONG" +msgid "Entities related to the US government" +msgstr "Entités liées au gouvernement des États-Unis" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" -msgstr "(16%)" +msgid "(20%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like Mozilla or RIPE NCC" -msgstr "comme Mozilla ou RIPE NCC" +#, fuzzy +#| msgid "like the US Department of State" +msgid "like the US Department of State and Internews" +msgstr "comme le Département d'État des États-Unis" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" -msgstr "Entités liées au gouvernement des États-Unis" +msgid "Foundations & NGOs" +msgstr "Fondations et ONG" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" -msgstr "(8%)" +msgid "(6%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" -msgstr "comme le Département d'État des États-Unis" +#, fuzzy +#| msgid "like Mozilla or RIPE NCC" +msgid "like Tor and RIPE NCC" +msgstr "comme Mozilla ou RIPE NCC" #. type: Content of: <div><div><figure><figcaption><ul><li><div> msgid "Private companies" msgstr "Entreprises privées" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" -msgstr "(4%)" +msgid "(5%)" +msgstr "(5%)" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +#, fuzzy +#| msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "comme ProtonMail ou ThinkPenguin" #. type: Content of: <div><div><h3> @@ -922,6 +928,18 @@ msgid "Come talk to us and [[become a sponsor|sponsors/become]] yourself!" msgstr "" "Venez discuter avec nous et vous-même [[devenez sponsor|sponsors/become]] !" +#~ msgid "(73%)" +#~ msgstr "(73%)" + +#~ msgid "(16%)" +#~ msgstr "(16%)" + +#~ msgid "(8%)" +#~ msgstr "(8%)" + +#~ msgid "(4%)" +#~ msgstr "(4%)" + #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " @@ -1249,9 +1267,6 @@ msgstr "" #~ msgid "Meetings" #~ msgstr "Réunions" -#~ msgid "(5%)" -#~ msgstr "(5%)" - #~ msgid "" #~ "Tails also receives grants, awards, corporate donations, and substantial " #~ "donations from individuals." diff --git a/wiki/src/donate.it.po b/wiki/src/donate.it.po index 06430393b6b..51834a878f5 100644 --- a/wiki/src/donate.it.po +++ b/wiki/src/donate.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -848,31 +848,31 @@ msgid "Passionate people like you" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" +msgid "(69%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" +msgid "Entities related to the US government" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" +msgid "(20%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like Mozilla or RIPE NCC" +msgid "like the US Department of State and Internews" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" +msgid "Foundations & NGOs" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" +msgid "(6%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" +msgid "like Tor and RIPE NCC" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> @@ -880,11 +880,11 @@ msgid "Private companies" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" +msgid "(5%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "" #. type: Content of: <div><div><h3> diff --git a/wiki/src/donate.pt.po b/wiki/src/donate.pt.po index 936f2dc2b60..0282ec41a96 100644 --- a/wiki/src/donate.pt.po +++ b/wiki/src/donate.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: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: \n" @@ -854,43 +854,49 @@ msgid "Passionate people like you" msgstr "Pessoas apaixonadas como você" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" -msgstr "(73%)" +msgid "(69%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" -msgstr "Fundações e ONGs" +msgid "Entities related to the US government" +msgstr "Entidades relacionadas ao governo dos Estados Unidos" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" -msgstr "(16%)" +msgid "(20%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like Mozilla or RIPE NCC" -msgstr "como Mozilla e RIPE NCC" +#, fuzzy +#| msgid "like the US Department of State" +msgid "like the US Department of State and Internews" +msgstr "como o Departamento de Estado dos EUA" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" -msgstr "Entidades relacionadas ao governo dos Estados Unidos" +msgid "Foundations & NGOs" +msgstr "Fundações e ONGs" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" -msgstr "(8%)" +msgid "(6%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" -msgstr "como o Departamento de Estado dos EUA" +#, fuzzy +#| msgid "like Mozilla or RIPE NCC" +msgid "like Tor and RIPE NCC" +msgstr "como Mozilla e RIPE NCC" #. type: Content of: <div><div><figure><figcaption><ul><li><div> msgid "Private companies" msgstr "Empresas privadas" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" -msgstr "(4%)" +msgid "(5%)" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +#, fuzzy +#| msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "como ProtonMail e ThinkPenguin" #. type: Content of: <div><div><h3> @@ -909,6 +915,18 @@ msgstr "" msgid "Come talk to us and [[become a sponsor|sponsors/become]] yourself!" msgstr "Fale conosco e [[patrocine|sponsors/become]] também!" +#~ msgid "(73%)" +#~ msgstr "(73%)" + +#~ msgid "(16%)" +#~ msgstr "(16%)" + +#~ msgid "(8%)" +#~ msgstr "(8%)" + +#~ msgid "(4%)" +#~ msgstr "(4%)" + #, fuzzy #~| msgid "" #~| "<label class=\"btn btn-amount btn-lg btn-primary col-md-3 col-xs-6 5 " diff --git a/wiki/src/donate.ru.po b/wiki/src/donate.ru.po index a34961d7d79..6a6eae24872 100644 --- a/wiki/src/donate.ru.po +++ b/wiki/src/donate.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-24 19:20+0000\n" +"POT-Creation-Date: 2023-08-30 19:30+0000\n" "PO-Revision-Date: 2021-07-19 07:29+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -893,45 +893,45 @@ msgid "Passionate people like you" msgstr "Ðеравнодушные пользователи вроде ваÑ" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(73%)" +msgid "(69%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Foundations & NGOs" -msgstr "Фонды и ÐКО" +msgid "Entities related to the US government" +msgstr "УчреждениÑ, ÑвÑзанные Ñ Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ»ÑŒÑтвом СШÐ" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(16%)" +msgid "(20%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -#, fuzzy -#| msgid "like Mozilla or Handshake" -msgid "like Mozilla or RIPE NCC" -msgstr "вроде Mozilla или Handshake" +msgid "like the US Department of State and Internews" +msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "Entities related to the US government" -msgstr "УчреждениÑ, ÑвÑзанные Ñ Ð¿Ñ€Ð°Ð²Ð¸Ñ‚ÐµÐ»ÑŒÑтвом СШÐ" +msgid "Foundations & NGOs" +msgstr "Фонды и ÐКО" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(8%)" +msgid "(6%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like the US Department of State" -msgstr "" +#, fuzzy +#| msgid "like Mozilla or Handshake" +msgid "like Tor and RIPE NCC" +msgstr "вроде Mozilla или Handshake" #. type: Content of: <div><div><figure><figcaption><ul><li><div> msgid "Private companies" msgstr "ЧаÑтные компании" #. type: Content of: <div><div><figure><figcaption><ul><li><div> -msgid "(4%)" +msgid "(5%)" msgstr "" #. type: Content of: <div><div><figure><figcaption><ul><li> -msgid "like ProtonMail or ThinkPenguin" +msgid "like ProtonMail and ThinkPenguin" msgstr "" #. type: Content of: <div><div><h3> -- GitLab From 0bda28aa52fcf0b74a03786a69d35fb47ebd5683 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Thu, 31 Aug 2023 12:29:44 +0000 Subject: [PATCH 094/119] Add missing step This ensures APT downloads the Contents files, needed by dzil authordebs, after apt-file has been installed. --- wiki/src/contribute/release_process/perl5lib.mdwn | 1 + wiki/src/contribute/release_process/tails-iuk.mdwn | 1 + 2 files changed, 2 insertions(+) diff --git a/wiki/src/contribute/release_process/perl5lib.mdwn b/wiki/src/contribute/release_process/perl5lib.mdwn index dadfb35ffc6..ea50b7fcbbd 100644 --- a/wiki/src/contribute/release_process/perl5lib.mdwn +++ b/wiki/src/contribute/release_process/perl5lib.mdwn @@ -15,6 +15,7 @@ Install build and test dependencies libdist-zilla-plugin-test-notabs-perl \ libdist-zilla-plugin-test-perl-critic-perl \ libdist-zilla-app-command-authordebs-perl && \ + sudo apt update && \ cd "$(git rev-parse --show-toplevel)/config/chroot_local-includes/usr/src/perl5lib" && \ dzil authordebs --install diff --git a/wiki/src/contribute/release_process/tails-iuk.mdwn b/wiki/src/contribute/release_process/tails-iuk.mdwn index d455d427beb..0de318d9303 100644 --- a/wiki/src/contribute/release_process/tails-iuk.mdwn +++ b/wiki/src/contribute/release_process/tails-iuk.mdwn @@ -22,6 +22,7 @@ Install dependencies needed to generate IUKs, UDFs, and to run the test suite libdist-zilla-plugin-test-perl-critic-perl \ libdist-zilla-app-command-authordebs-perl \ libtest-lwp-useragent-perl && \ + sudo apt update && \ cd "$(git rev-parse --show-toplevel)/config/chroot_local-includes/usr/src/iuk" && \ dzil authordebs --install && \ sudo apt install \ -- GitLab From be6222b225a58b9bacb4ac9f9901ba02a87bf16e Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Thu, 31 Aug 2023 12:51:59 +0000 Subject: [PATCH 095/119] Add job description refs tails/summit#110 --- wiki/src/jobs.mdwn | 6 +- wiki/src/jobs/Linux_generalist.mdwn | 174 +++++++++++++++++----------- wiki/src/jobs/apply.mdwn | 25 ++-- 3 files changed, 120 insertions(+), 85 deletions(-) diff --git a/wiki/src/jobs.mdwn b/wiki/src/jobs.mdwn index c266cb0133c..e71bc02232e 100644 --- a/wiki/src/jobs.mdwn +++ b/wiki/src/jobs.mdwn @@ -12,16 +12,12 @@ About Tails Full-time and part-time positions ================================= -We don't have any open full-time or part-time position at the moment. - -<!-- +<!-- We don't have any open full-time or part-time position at the moment. --> <ul class="open-jobs"> [[!inline pages="page(jobs/*) and tagged(job/staff) and tagged(job/open)" sort="age" template="job" feeds="no"]] </ul> ---> - Consultancy jobs ================ diff --git a/wiki/src/jobs/Linux_generalist.mdwn b/wiki/src/jobs/Linux_generalist.mdwn index d4d7327b521..768bbd1600e 100644 --- a/wiki/src/jobs/Linux_generalist.mdwn +++ b/wiki/src/jobs/Linux_generalist.mdwn @@ -2,114 +2,150 @@ [[!meta stylesheet="jobs" rel="stylesheet" title=""]] [[!tag job/staff]] -[[!meta robots="noindex"]] +[[!tag job/open]] -**This job opening is closed. Applications received after April 2, - 2020, will not be considered.** - -[[!toc levels=2]] +[[!toc levels=1]] Summary ======= -Tails, a portable operating system that protects your privacy and -avoids censorship, is looking for a Linux generalist to strengthen -our Foundations Team. The Foundations Team is responsible for maintaining -the core Tails system. +The Foundations Team at Tails is hiring a Linux generalist. Tails is a portable +operating system that protects against surveillance and censorship. +The Foundations Team is responsible for maintaining, releasing, and improving +Tails. We work remotely, and do not have a traditional office space. About Tails =========== -[[!inline pages="jobs/about_tails" raw="yes" sort="age"]] +Tails makes digital security tools accessible to everyone, whenever they need +it: activists, journalists, freedom fighters, and ultimately, you, whenever you +need extra privacy in this digital world. -Details -======= +The Tails project was started in 2009 and has now more than 30 000 daily users. -### Role description +Read more about our [[mission and values|contribute/mission]]. -You are a Linux generalist who likes analyzing and solving technical problems -in many different areas of a GNU/Linux system. +<div id="benefits"> -You will join our Foundations Team, whose [[_many_ -responsibilities|contribute/working_together/roles/foundations_team/]] -are divided among its members. We do not expect any single member to -take all these responsibilities themselves — it's a team effort! + <div class="benefit"> -Our main activity is what we call "plumbing": gluing things together -without necessarily understanding in depth every individual part. + <h3>Non-profit</h3> -You can dedicate at least 16 hours a week to Tails, although 20 hours -a week or more award bonus points. + <p>We put our users first, not profits.</p> -You will primarily use asynchronous communication channels to work -remotely with other Foundations Team members and Tails people, who live -across different time zones and have various degrees of involvement. -We will meet in person a few times every year and will try to coordinate -and remotely work together at the same time. + </div> -You will be part of the Tails community, that includes paid workers and -volunteer contributors. Together we are in charge of maintaining not -only an operating system, but also this community. Together, we will -discuss, design, and implement changes about various social and -organizational aspects of the Tails project. + <div class="benefit"> -### Requirements + <h3>Equal opportunity, equal pay</h3> -We encourage you to apply if you: + <p>We are committed to creating an inclusive and equitable + environment for all. We have a transparent compensation scheme where + everybody enjoys comparable pay and benefits.</p> -* Have significant experience with GNU/Linux, and system - administration basics. + </div> - Ideally this would be on Debian or one of its derivatives. - If your experience is about other Linux environments, - that's fine: be ready to learn lots of Debian-specific stuff! + <div class="benefit"> -* Are interested in _how_ a group of humans communicate, express & hear - needs & feelings, handle crisis & conflicts, organize work, and - make decisions. + <h3>Small team</h3> -* Have a bit more than beginner level at: + <p>We are a small team that values transparency, autonomy, and horizontal + decision-making.</p> - - one programming language among Python, Ruby, and Perl - - POSIX-like shell scripting, such as Bash + </div> -* Have good skills in English, both written and verbal. +</div> -* Have guts feelings or ethical reasons to be interested in online - privacy. +About this position +=================== -* Like to learn new stuff: Tails is big and you probably don't know - everything yet — nobody does! +Role description +---------------- -### Working conditions +You are a Linux generalist who likes analyzing and solving technical problems in +many different areas of a GNU/Linux system. You can dedicate at least 20 hours +a week to Tails, although 30 hours a week would be ideal. -Given how Tails work is organized, you will: +You will join our Foundations Team, whose [[many +responsibilities|contribute/working_together/roles/foundations_team]] are +divided among its members. We do not expect any single member to take all these +responsibilities themselves — it's a team effort! + +Our main activity is what we call "plumbing": gluing things together without +necessarily understanding in depth every individual part. + +You will be responsible for releasing Tails once every 2 months. +Managing Tails’s release is a 2-day shift during which you will work a bit more +than usual, and at unusual times. We plan this shift in advance, and rotate this +responsiblity within the team. -* Work primarily remotely and asynchronously with other people, who may - live in a different time zone. +You will be a Core Worker. Core Workers are in charge of maintaining not only an +operating system but also the good health of the project as a whole. Together, +we continuously discuss and improve organizational and strategic aspects of +the project. + +Requirements +------------ + +We encourage you to apply if: + +- You have significant experience with GNU/Linux, and system + administration basics. + - Ideally this would be on Debian or one of its derivatives. If your + experience is about other Linux environments, that's fine: be ready to learn + lots of Debian-specific stuff! +- You are somewhat familiar, or at least excited about, modern Linux desktop and + GNOME technologies,such as D-Bus, GTK, Flatpak, systemd, etc. +- You have intermediate familiarity with: + - one programming language among Python and Ruby + - POSIX-like shell scripting, such as Bash + - as a bonus: JavaScript or Object-oriented Perl with Moo +- You like to learn new stuff: Tails is big and you probably don't know + everything yet — nobody does! +- You have good verbal and written communication skills in English. +- You are self-organized, systematic, able to set priorities and + manage timelines. +- You are interested in *how* groups of people communicate, express & hear needs + & feelings, handle crisis & conflicts, organize work, and make decisions. +- You are enthusiastic about our [[mission and values|contribute/mission]], + motivated by social impact. +- You have some experience working fully remote, primarily with + asynchronous communication. +- You can work comfortably at least 3 hours during the peak of Tails activities: + between 10:00 and 17:00 Europe/Berlin. + +Working conditions +------------------ + +Given how Tails work is organized, you will: - We use GitLab, email, Jabber/XMPP, and voice calls. - We also meet in person a few times a year. +- Primarily work remotely and asynchronously with other people, who may live in + a different time zone. +- Use GitLab, email, Jabber/XMPP, and video calls. +- Also meet in-person a few times a year. +- Participate in self-organizing a team whose members have varying degrees of + involvement and complementary skill sets. + - For example: attend remote and face to face team meetings, triage bugs + together, collectively build a roadmap. -* Be responsible to organize your work and time with the project's - priorities in mind. +If you identify as being part of a group that is under-represented in Free and +Open Source Software communities, we particularly encourage you to apply. +Tails is not as diverse as we would like it to be. For example, paid workers at +Tails are currently all cis-males, predominantly white. We are committed to +creating a more inclusive and respectful work environment, which would be +welcoming to more diverse people. -* Participate in self-organizing a team whose members have varying - degrees of involvement and complementary skill sets. +Compensation and benefits +------------------------- - For example: attend remote and face to face team meetings, triage - bugs together, collectively build a roadmap. +Pay scale is 40–90 k€ per year for 20-30 hours a week, including medical coverage. -If you are part of a group that is under-represented in Free and Open -Source Software communities, we particularly encourage you to apply. -We acknowledge that our project and team are not as diverse as we would -like them to be. We understand that we're part of the problem. -We want to be part of the solution. +[[!inline pages="jobs/compensation" raw="yes" sort="age"]] How to apply ============ -Send an email to <tails-foundations@boum.org>. +Send an email to <tails-jobs@riseup.net>. <style> .apply-portfolio { display: none; } diff --git a/wiki/src/jobs/apply.mdwn b/wiki/src/jobs/apply.mdwn index a76d120c79f..6025f9b7715 100644 --- a/wiki/src/jobs/apply.mdwn +++ b/wiki/src/jobs/apply.mdwn @@ -9,17 +9,20 @@ optional: </li> <li class="apply-cover-letter"> <p>Cover letter</p> - <p>We are particularly curious why online privacy is important to you.</p> - </li> - <li class="apply-contributions"> - <p>Links to other contributions to free software, GitHub, or GitLab accounts</p> - </li> - <li class="apply-portfolio"> - <p>Links to your personal website, portfolio, or sample work</p> - </li> - <li class="apply-org-culture"> - <p>Your stories about participating in groups that value transparency, autonomy, and horizontal decision-making.</p> - </li> + <ul> + <li> + <p>Explain us why you would like to work at Tails. We are particularly curious why online privacy is important to you.</p> + </li> + <li class="apply-contributions"> + <p>Links to other contributions to free software, GitHub, or GitLab accounts</p> + </li> + <li class="apply-portfolio"> + <p>Links to your personal website, portfolio, or sample work</p> + </li> + <li class="apply-org-culture"> + <p>Your stories about participating in groups that value transparency, autonomy, and horizontal decision-making. What is/has been your role in such groups?</p> + </li> + </ul> <li class="references"> <p>References</p> </li> -- GitLab From 4e072fd781e55a5e411113d2dd137d2cddac8214 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Fri, 1 Sep 2023 12:25:59 +0200 Subject: [PATCH 096/119] Tets suite: capture needed-package-updates's output by on failure The output (i.e. what the problem is) will be included in the exception's message so it actually ends up in the test suite logs. The previously used fatal_system() doesn't capture the output at all, and cucumber only catches stdout while stderr is passed through so it's written to the terminal and thus doesn't end up in the test suite logs at all. Follow-up on tails/tails#14728, tails/tails!1155. --- features/step_definitions/needed_package_updates.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/needed_package_updates.rb b/features/step_definitions/needed_package_updates.rb index 1178d365d0a..f68fc6153bb 100644 --- a/features/step_definitions/needed_package_updates.rb +++ b/features/step_definitions/needed_package_updates.rb @@ -5,5 +5,5 @@ end Then /^all packages listed in the build manifest are up-to-date$/ do command = "#{GIT_DIR}/bin/needed-package-updates" config = "#{GIT_DIR}/config/ci/needed-package-updates.yml" - fatal_system "#{command} --config '#{config}' --file '#{TAILS_BUILD_MANIFEST}'" + cmd_helper([command, "--config=#{config}", "--file=#{TAILS_BUILD_MANIFEST}"]) end -- GitLab From 7e41c826ab00a1def341589f537aef255ae59731 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Sun, 3 Sep 2023 23:59:23 +0200 Subject: [PATCH 097/119] Upgrade Tor Browser to 12.5.3-build1 --- config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt | 2 +- config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt index 170ecd84551..f171b2136ad 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt @@ -1 +1 @@ -http://torbrowser-archive.tails.boum.org/12.5.2/ +https://tb-build-05.torproject.org/~ma1/builds/release/unsigned/12.5.3-build1/ diff --git a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt index 67ba8e78d44..5b195e4b84a 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-sha256sums.txt @@ -1 +1 @@ -326dbf89a9e89fe46d389aa6b990a5fb670f9622a226f20e67e4f2cc9f25e5eb tor-browser-linux64-12.5.2_ALL.tar.xz +405ef5517657c0b8ebd57ba029e156647f515dbe3178a59949c76cfb1b4d7a42 tor-browser-linux64-12.5.3_ALL.tar.xz -- GitLab From d09b7f0109b3fe60713e86bbad6ec9bfb56fdc89 Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 4 Sep 2023 00:02:07 +0200 Subject: [PATCH 098/119] Fetch Tor Browser from our own archive --- config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt index f171b2136ad..6d90a81daa3 100644 --- a/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt +++ b/config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt @@ -1 +1 @@ -https://tb-build-05.torproject.org/~ma1/builds/release/unsigned/12.5.3-build1/ +http://torbrowser-archive.tails.boum.org/12.5.3-build1/ -- GitLab From 560731e0b8126a096d7b0ae2fa064c03dc3d2fff Mon Sep 17 00:00:00 2001 From: boyska <boyska@riseup.net> Date: Mon, 4 Sep 2023 00:31:05 +0200 Subject: [PATCH 099/119] command waits for torbrowser-archive --- wiki/src/contribute/release_process/tor-browser.mdwn | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/wiki/src/contribute/release_process/tor-browser.mdwn b/wiki/src/contribute/release_process/tor-browser.mdwn index ed187f7066e..dcabfba9fba 100644 --- a/wiki/src/contribute/release_process/tor-browser.mdwn +++ b/wiki/src/contribute/release_process/tor-browser.mdwn @@ -348,7 +348,16 @@ Wait for the synchronization Before you can build Tails using Tor Browser from our own archive, you need to wait for the tarballs to appear on <https://torbrowser-archive.tails.boum.org/?C=M&O=D>. This can take up to -10 minutes. +10 minutes: + + ( + url="$(cat config/chroot_local-includes/usr/share/tails/tbb-dist-url.txt)" + while [ -z "$(elinks -dump -no-references -no-numbering "$url" | grep 'tor-browser-linux64.*MiB')" ] + do + sleep 5 + done + ) + Push the updated branch ----------------------- -- GitLab From 0ab43d15f179c49a1824792998503e4a3a24d31e Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 07:21:03 +0000 Subject: [PATCH 100/119] Empty the list of APT overlays: they were merged --- config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys diff --git a/config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys b/config/APT_overlays.d/19728-tps-upgrade-check-vs-corrupt-keys deleted file mode 100644 index e69de29bb2d..00000000000 -- GitLab From eaf89312d37ac22b19b259cdd9700a78879f198a Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 07:36:17 +0000 Subject: [PATCH 101/119] Update PO files. --- po/af.po | 32 ++++++++++++++++---------------- po/ay.po | 32 ++++++++++++++++---------------- po/az.po | 32 ++++++++++++++++---------------- po/be.po | 32 ++++++++++++++++---------------- po/bg.po | 33 +++++++++++++++++---------------- po/bn.po | 33 +++++++++++++++++---------------- po/bs.po | 33 +++++++++++++++++---------------- po/ca.po | 44 +++++++++++++++++++++++--------------------- po/cs.po | 34 ++++++++++++++++++---------------- po/da.po | 34 ++++++++++++++++++---------------- po/de.po | 34 ++++++++++++++++++---------------- po/el.po | 52 ++++++++++++++++++++++++++++++++++------------------ po/en_US.po | 32 ++++++++++++++++---------------- po/et.po | 34 ++++++++++++++++++---------------- po/eu.po | 33 +++++++++++++++++---------------- po/fa.po | 44 +++++++++++++++++++++++--------------------- po/fi.po | 34 ++++++++++++++++++---------------- po/fr.po | 34 ++++++++++++++++++---------------- po/fy.po | 32 ++++++++++++++++---------------- po/ga.po | 34 ++++++++++++++++++---------------- po/gd.po | 32 ++++++++++++++++---------------- po/gl.po | 34 ++++++++++++++++++---------------- po/gu.po | 32 ++++++++++++++++---------------- po/he.po | 34 ++++++++++++++++++---------------- po/hi.po | 32 ++++++++++++++++---------------- po/hr.po | 34 ++++++++++++++++++---------------- po/hu.po | 34 ++++++++++++++++++---------------- po/hy.po | 33 +++++++++++++++++---------------- po/id.po | 34 ++++++++++++++++++---------------- po/is.po | 52 +++++++++++++++++++++++++++------------------------- po/it.po | 34 ++++++++++++++++++---------------- po/ja.po | 34 ++++++++++++++++++---------------- po/ka.po | 34 ++++++++++++++++++---------------- po/kab.po | 32 ++++++++++++++++---------------- po/ki.po | 32 ++++++++++++++++---------------- po/kk.po | 33 +++++++++++++++++---------------- po/km.po | 32 ++++++++++++++++---------------- po/kn.po | 32 ++++++++++++++++---------------- po/ko.po | 34 ++++++++++++++++++---------------- po/lt.po | 34 ++++++++++++++++++---------------- po/lv.po | 33 +++++++++++++++++---------------- po/mk.po | 33 +++++++++++++++++---------------- po/mr.po | 33 +++++++++++++++++---------------- po/ms_MY.po | 34 ++++++++++++++++++---------------- po/my.po | 33 +++++++++++++++++---------------- po/nb.po | 34 ++++++++++++++++++---------------- po/ne.po | 32 ++++++++++++++++---------------- po/nl.po | 34 ++++++++++++++++++---------------- po/nn.po | 33 +++++++++++++++++---------------- po/oc.po | 32 ++++++++++++++++---------------- po/or.po | 32 ++++++++++++++++---------------- po/pa.po | 32 ++++++++++++++++---------------- po/pl.po | 34 ++++++++++++++++++---------------- po/pt_BR.po | 34 ++++++++++++++++++---------------- po/pt_PT.po | 34 ++++++++++++++++++---------------- po/ru.po | 34 ++++++++++++++++++---------------- po/si.po | 32 ++++++++++++++++---------------- po/sk.po | 34 ++++++++++++++++++---------------- po/sl.po | 32 ++++++++++++++++---------------- po/sq.po | 34 ++++++++++++++++++---------------- po/sr.po | 33 +++++++++++++++++---------------- po/sv.po | 33 +++++++++++++++++---------------- po/sw.po | 34 ++++++++++++++++++---------------- po/ta.po | 32 ++++++++++++++++---------------- po/tails.pot | 32 ++++++++++++++++---------------- po/te.po | 32 ++++++++++++++++---------------- po/th.po | 34 ++++++++++++++++++---------------- po/tr.po | 34 ++++++++++++++++++---------------- po/uk.po | 34 ++++++++++++++++++---------------- po/ur.po | 32 ++++++++++++++++---------------- po/uz.po | 32 ++++++++++++++++---------------- po/vi.po | 34 ++++++++++++++++++---------------- po/zh_CN.po | 34 ++++++++++++++++++---------------- po/zh_TW.po | 34 ++++++++++++++++++---------------- 74 files changed, 1306 insertions(+), 1205 deletions(-) diff --git a/po/af.po b/po/af.po index 1cfb6927889..70d85148c6e 100644 --- a/po/af.po +++ b/po/af.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Afrikaans <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -707,18 +707,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -980,7 +980,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1597,7 +1597,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1606,33 +1606,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1748,11 +1748,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/ay.po b/po/ay.po index cd0e8a3089f..837cf5a81cb 100644 --- a/po/ay.po +++ b/po/ay.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Aymara <https://hosted.weblate.org/projects/tor/tails-gui/ay/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -696,18 +696,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -969,7 +969,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1576,7 +1576,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1585,33 +1585,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1726,11 +1726,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/az.po b/po/az.po index a346b14c3ec..e7ef52a4226 100644 --- a/po/az.po +++ b/po/az.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Azerbaijani <https://hosted.weblate.org/projects/tor/tails-" @@ -391,7 +391,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "bu versiya üçün bizim saytımızdan avtomatik tÉ™kmilləşmÉ™ yoxdur" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -736,19 +736,19 @@ msgstr "Davamlı hÉ™cm silinir..." msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Davamlı hÉ™cm silinir..." #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -1017,7 +1017,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1640,7 +1640,7 @@ msgstr "Tor Statusu" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1649,37 +1649,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Davamlı hÉ™cmin icazÉ™lÉ™rinin düzÉ™ldilmÉ™si." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Fayl sisteminin yoxlanışı..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Davamlı hÉ™cm yaradılır..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Davamlı hÉ™cm silinir..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1799,12 +1799,12 @@ msgstr "" msgid "Change Passphrase" msgstr "KömÉ™kçi ifadÉ™:" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "ÅžifrÉ™ ifadÉ™si uyÄŸun deyil" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "KömÉ™kçi ifadÉ™:" diff --git a/po/be.po b/po/be.po index beeb389ee81..ccc4165f8da 100644 --- a/po/be.po +++ b/po/be.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-25 11:39+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Belarusian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -395,7 +395,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -721,18 +721,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -995,7 +995,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1612,7 +1612,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1621,33 +1621,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1764,11 +1764,11 @@ msgstr "" msgid "Change Passphrase" msgstr "Пароль:" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Пароль:" diff --git a/po/bg.po b/po/bg.po index 0ccbadc722f..cfd021e235f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Bulgarian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -402,7 +402,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "за тази верÑÐ¸Ñ Ð½Ñма автоматично обновление на нашата Ñтраница" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -748,19 +748,19 @@ msgstr "Криптирано _проÑтранÑтво" msgid "Error unlocking Persistent Storage: {}" msgstr "Криптирано проÑтранÑтво:{}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Криптирано проÑтранÑтво:{}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Криптирано проÑтранÑтво: {}" @@ -1033,7 +1033,8 @@ msgstr "ИнÑталациÑта е неуÑпешна!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails ИнÑталатор" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1670,7 +1671,7 @@ msgstr "СъÑтоÑние на Тор" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1679,37 +1680,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Коригиране на привилегии на поÑтоÑÐ½Ð½Ð¸Ñ Ð´Ñл." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Проверка на файловата ÑиÑтема ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Криптирано проÑтранÑтво: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Криптирано _проÑтранÑтво" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1831,12 +1832,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Покажи паролата" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Тайните фрази не Ñъвпадат" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Покажи паролата" diff --git a/po/bn.po b/po/bn.po index 35ebacd163c..737763b03b5 100644 --- a/po/bn.po +++ b/po/bn.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Bengali <https://hosted.weblate.org/projects/tor/tails-gui/bn/" @@ -415,7 +415,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "à¦à¦‡ সংসà§à¦•রণের জনà§à¦¯ আমাদের ওয়েবসাইট থেকে সà§à¦¬à¦¯à¦¼à¦‚কà§à¦°à¦¿à¦¯à¦¼ আপগà§à¦°à§‡à¦¡ উপলবà§à¦§ নেই" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -760,19 +760,19 @@ msgstr "অবিরাম সà§à¦Ÿà§‹à¦°à§‡à¦œ তৈরি করà§à¦¨" msgid "Error unlocking Persistent Storage: {}" msgstr "à¦à¦¨à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ করা _Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "à¦à¦¨à¦•à§à¦°à¦¿à¦ªà§à¦Ÿ করা _Persistent Storage" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "অবিরাম সà§à¦Ÿà§‹à¦°à§‡à¦œ তৈরি করà§à¦¨" @@ -1043,7 +1043,8 @@ msgstr "Tails ইনসà§à¦Ÿà¦²à§‡à¦¶à¦¨ বà§à¦¯à¦°à§à¦¥ হয়েছে! #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails ইনসà§à¦Ÿà¦²à¦¾à¦°" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1681,7 +1682,7 @@ msgstr "টর অবসà§à¦¥à¦¾" msgid "Open Onion Circuits" msgstr "Onion বরà§à¦¤à¦¨à§€ খোলà§à¦¨" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1690,37 +1691,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "সà§à¦¥à¦¿à¦° à¦à¦²à¦¿à¦‰à¦®à§‡à¦° অনà§à¦®à¦¤à¦¿à¦¸à¦®à§‚হ সঠিককরণ।" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "ফাইল সিসà§à¦Ÿà§‡à¦® যাচাই করা হচà§à¦›à§‡ ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "অবিরাম সà§à¦Ÿà§‹à¦°à§‡à¦œ তৈরি করà§à¦¨" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "অবিরাম সà§à¦Ÿà§‹à¦°à§‡à¦œ তৈরি করà§à¦¨" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1843,12 +1844,12 @@ msgstr "" msgid "Change Passphrase" msgstr "পাসফà§à¦°à§‡à¦œ দেখান" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "পাসফà§à¦°à§‡à¦œà¦—à§à¦²à¦¿ মেলে না" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "পাসফà§à¦°à§‡à¦œ দেখান" diff --git a/po/bs.po b/po/bs.po index 314f507bb2b..82d34eb3b88 100644 --- a/po/bs.po +++ b/po/bs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Bosnian <https://hosted.weblate.org/projects/tor/tails-gui/bs/" @@ -416,7 +416,8 @@ msgstr "" "na naÅ¡oj web stranici nije dostupna automatska nadogradnja za ovu verziju" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "vaÅ¡ ureÄ‘aj nije kreiran pomoću USB slike ili Tails instalacije" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -762,18 +763,18 @@ msgstr "_Kreirajte trajnu pohranu" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -1038,7 +1039,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1656,7 +1657,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1665,36 +1666,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "_Kreirajte trajnu pohranu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Provjeravanje sistema datoteka..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "_Kreirajte trajnu pohranu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1810,11 +1811,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/ca.po b/po/ca.po index d2ecef601a3..ce0818c5ab3 100644 --- a/po/ca.po +++ b/po/ca.po @@ -26,8 +26,8 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" -"PO-Revision-Date: 2023-08-12 15:50+0000\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" +"PO-Revision-Date: 2023-08-20 10:49+0000\n" "Last-Translator: victor dargallo <victordargallo@disroot.org>\n" "Language-Team: Catalan <https://hosted.weblate.org/projects/tor/tails-gui/ca/" ">\n" @@ -456,9 +456,10 @@ msgstr "" "versió" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" -"el vostre dispositiu no s'ha creat amb una imatge USB ni amb l'instal·lador " +"el vostre dispositiu no s'ha creat amb una imatge USB ni amb l'Instal·lador " "de Tails" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -822,26 +823,26 @@ msgstr "Voleu iniciar Tails sense desbloquejar l'Emmagatzematge persistent?" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:162 msgid "Start Without Persistent Storage" -msgstr "Comenceu sense Emmagatzematge Persistent" +msgstr "Comença sense l'Emmagatzematge Persistent" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:101 msgid "Error unlocking Persistent Storage: {}" msgstr "S'ha produït un error en desbloquejar l'Emmagatzematge Persistent: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "S'ha produït un error en actualitzar l'Emmagatzematge Persistent: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "No s'han pogut activar algunes funcions de l'Emmagatzematge Persistent: " "{features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "S'ha produït un error en activar l'Emmagatzematge Persistent: {}" @@ -853,7 +854,7 @@ msgstr "S'està desbloquejant…" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:135 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:505 msgid "Unlock Encryption" -msgstr "Desbloquejar l'Encriptatge" +msgstr "Desbloca l'Encriptatge" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py:113 #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:41 @@ -1128,7 +1129,8 @@ msgstr "L'instal·lació de Tails ha fallat!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instal·lador de Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1835,7 +1837,7 @@ msgstr "Estat de Tor" msgid "Open Onion Circuits" msgstr "Obre els circuits onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1848,11 +1850,11 @@ msgstr "" "\n" "Torneu-ho a provar després de tancar algunes aplicacions o de reiniciar." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "S'està creant una partició per a l'Emmagatzematge Persistent..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1860,23 +1862,23 @@ msgstr "" "S'està inicialitzant l'encriptatge LUKS... És possible que l'ordinador deixi " "de respondre durant uns segons." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "S'està desbloquejant l'encriptatge..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "S'està formatant el sistema de fitxers..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "S'està activant l'Emmagatzematge Persistent..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "S'està acabant de configurar l'emmagatzematge persistent..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2002,11 +2004,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Canvia la contrasenya" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "La contrasenya és incorrecta" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "No s'ha pogut canviar la contrasenya" @@ -2840,7 +2842,7 @@ msgstr "" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:759 msgid "Shutdown" -msgstr "Tancar" +msgstr "Tanca" #: ../config/chroot_local-includes/usr/share/tails/greeter/main.ui.in:770 msgid "_Start Tails" diff --git a/po/cs.po b/po/cs.po index 156af6c2371..55bb4b14ce2 100644 --- a/po/cs.po +++ b/po/cs.po @@ -28,7 +28,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-04-03 15:44+0000\n" "Last-Translator: slrslr <adm@prnet.info>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/tor/tails-gui/cs/" @@ -450,7 +450,8 @@ msgstr "" "aktualizace" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "vaÅ¡e zaÅ™Ãzenà nebylo vytvoÅ™enà pomocà obrazu USB disku ani instalátoru Tails" @@ -817,19 +818,19 @@ msgstr "PokraÄovat bez trvalého úložiÅ¡tÄ›" msgid "Error unlocking Persistent Storage: {}" msgstr "Chyba odemykánà šifrovaného úložiÅ¡tÄ›: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Chyba odemykánà šifrovaného úložiÅ¡tÄ›: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Nastavenà trvalého úložiÅ¡tÄ› selhalo" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Chyba aktivace trvalého úložiÅ¡tÄ›: {}" @@ -1112,7 +1113,8 @@ msgstr "Instalace Tails selhala!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instalátor Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1804,7 +1806,7 @@ msgstr "Stav sÃtÄ› Tor" msgid "Open Onion Circuits" msgstr "OtevÅ™Ãt Onion Å™etÄ›zce" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1813,37 +1815,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ProbÃhá oprava oprávnÄ›nà trvalého svazku." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "OvÄ›rovánà systému souborů..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Chyba aktivace trvalého úložiÅ¡tÄ›: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "PokraÄovat bez trvalého úložiÅ¡tÄ›" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1964,12 +1966,12 @@ msgstr "" msgid "Change Passphrase" msgstr "ZmÄ›nit heslo" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Hesla se neshodujÃ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ZmÄ›nit heslo" diff --git a/po/da.po b/po/da.po index 0d5580add9b..8d70ad67c7a 100644 --- a/po/da.po +++ b/po/da.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Danish <https://hosted.weblate.org/projects/tor/tails-gui/da/" @@ -434,7 +434,8 @@ msgstr "" "version" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "din enhed blev ikke oprettet med et USB-aftryk eller Tails-" "installationsprogram" @@ -798,19 +799,19 @@ msgstr "Opret vedvarende lager" msgid "Error unlocking Persistent Storage: {}" msgstr "Krypteret _vedvarende lager" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Krypteret _vedvarende lager" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Kunne ikke konfigurere dit vedvarende lager" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Opret vedvarende lager" @@ -1086,7 +1087,8 @@ msgstr "Tails-installation mislykkedes!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-installationsprogram" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1774,7 +1776,7 @@ msgstr "Tor Status" msgid "Open Onion Circuits" msgstr "Ã…bn onionkredsløb" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1783,37 +1785,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Retter tilladelserne pÃ¥ det vedvarende diskomrÃ¥de." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verificerer filsystem..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Opret vedvarende lager" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Opret vedvarende lager" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1936,12 +1938,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Vis adgangskode" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Adgangskoderne er ikke ens" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Vis adgangskode" diff --git a/po/de.po b/po/de.po index 48b67d8a6f8..48b9d4b2631 100644 --- a/po/de.po +++ b/po/de.po @@ -42,7 +42,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-27 10:04+0000\n" "Last-Translator: Pepe Nietnagel <asozial+weblate23@mailbox.org>\n" "Language-Team: German <https://hosted.weblate.org/projects/tor/tails-gui/de/" @@ -472,7 +472,8 @@ msgstr "" "Webseite zur Verfügung" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "Dein Gerät wurde nicht mit einem USB-Image- oder Tails-Installer erstellt" @@ -855,19 +856,19 @@ msgstr "Weiter ohne beständigen Datenspeicher" msgid "Error unlocking Persistent Storage: {}" msgstr "Fehler beim Entsperren des beständigen Datenspeichers: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Fehler beim Entsperren des beständigen Datenspeichers: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Konfiguration des beständigen Datenspeichers ist fehlgeschlagen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Fehler beim Aktivieren des beständigen Datenspeichers: {}" @@ -1155,7 +1156,8 @@ msgstr "Tails-Installation fehlgeschlagen!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-Installationsprogramm" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1867,7 +1869,7 @@ msgstr "Tor-Status" msgid "Open Onion Circuits" msgstr "Offene Onion-Kanäle" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1881,11 +1883,11 @@ msgstr "" "Versuchen Sie es erneut, nachdem Sie einige Anwendungen geschlossen oder " "einen Neustart durchgeführt haben." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Erzeuge Partition für den beständigen Speicherbereich..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1893,23 +1895,23 @@ msgstr "" "Initialisiere LUKS-Verschlüsselung... Der Computer könnte für einige " "Sekunden nicht reagieren." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Verschlüsselung wird entsperrt..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Dateisystem wird formatiert…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Beständiger Datenspeicher wird aktiviert..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Einrichtung des beständigen Datenspeichers wird abgeschlossen..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2028,12 +2030,12 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Passphrase ändern" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Passphrasen stimmen nicht überein" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Passphrase konnte nicht geändert werden" diff --git a/po/el.po b/po/el.po index 6db7af2b4dd..3e2aa4803f9 100644 --- a/po/el.po +++ b/po/el.po @@ -33,9 +33,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" -"PO-Revision-Date: 2023-08-11 19:48+0000\n" -"Last-Translator: george kitsoukakis <norhorn@gmail.com>\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" +"PO-Revision-Date: 2023-08-15 09:46+0000\n" +"Last-Translator: George Fragos <fragos.george@hotmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/tor/tails-gui/el/" ">\n" "Language: el\n" @@ -252,6 +252,14 @@ msgid "" "<a href=\"file:///usr/share/doc/tails/website/donate.en.html#expenses\">How " "we spend our money.</a>" msgstr "" +"Το Tails Îχει ανάγκη δωÏεών ώστε όλοι και όλες να είναι ελεÏθεÏοι και " +"ασφαλείς όταν συνδÎονται.\n" +"\n" +"Η παÏαμικÏή συνεισφοÏά μας βοηθά στον αγώνα εναντίον της επιτήÏησης και της " +"λογοκÏισίας.\n" +"\n" +"<a href=\"file:///usr/share/doc/tails/website/donate.en.html#expenses\">Î ÏŽÏ‚ " +"ξοδεÏουμε τα χÏήματά μας.</a>" #: config/chroot_local-includes/usr/local/bin/electrum:101 msgid "" @@ -262,6 +270,12 @@ msgid "" "<a href=\"file:///usr/share/doc/tails/website/donate.en.html#expenses\">How " "we spend our money.</a>" msgstr "" +"Το Tails Ï€ÏοστατεÏει το ποÏτοφόλι σας.\n" +"\n" +"Βοηθήσετε μας να διατηÏοÏμε ασφαλή τα bitcoins σας!\n" +"\n" +"<a href=\"file:///usr/share/doc/tails/website/donate.en.html#expenses\">Î ÏŽÏ‚ " +"ξοδεÏουμε τα χÏήματά μας.</a>" #: config/chroot_local-includes/usr/local/bin/electrum:112 msgid "Donate Now" @@ -450,7 +464,8 @@ msgstr "" "αυτήν την Îκδοση" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "η συσκευή σας δε δημιουÏγήθηκε χÏησιμοποιώντας μια USB image ή το Ï€ÏόγÏαμμα " "εγκατάστασης Tails" @@ -828,19 +843,19 @@ msgstr "ΣυνÎχεια χωÏίς το μόνιμο αποθηκευτικό msgid "Error unlocking Persistent Storage: {}" msgstr "Σφάλμα κατά το ξεκλείδωμα του μόνιμου Î±Ï€Î¿Î¸Î·ÎºÎµÏ…Ï„Î¹ÎºÎ¿Ï Ï‡ÏŽÏου: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Σφάλμα κατά το ξεκλείδωμα του μόνιμου Î±Ï€Î¿Î¸Î·ÎºÎµÏ…Ï„Î¹ÎºÎ¿Ï Ï‡ÏŽÏου: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Αποτυχία παÏαμετÏοποίησης του Μόνιμου Î±Ï€Î¿Î¸Î·ÎºÎµÏ…Ï„Î¹ÎºÎ¿Ï Ï‡ÏŽÏου σας" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Σφάλμα ενεÏγοποίησης μόνιμου Î±Ï€Î¿Î¸Î·ÎºÎµÏ…Ï„Î¹ÎºÎ¿Ï Ï‡ÏŽÏου: {}" @@ -1132,7 +1147,8 @@ msgstr "Η εγκατάσταση του Tails απÎτυχε!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Î ÏόγÏαμμα εγκατάστασης Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1842,7 +1858,7 @@ msgstr "Κατάσταση του Tor" msgid "Open Onion Circuits" msgstr "Άνοιγμα κυκλωμάτων του Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1851,37 +1867,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ΔιόÏθωση δικαιωμάτων του μόνιμου τομÎα." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Έλεγχος συστήματος αÏχείων..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Σφάλμα ενεÏγοποίησης μόνιμου Î±Ï€Î¿Î¸Î·ÎºÎµÏ…Ï„Î¹ÎºÎ¿Ï Ï‡ÏŽÏου: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "ΣυνÎχεια χωÏίς το μόνιμο αποθηκευτικό χώÏο" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1999,12 +2015,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Αλλαγή φÏάσης Ï€Ïόσβασης" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Οι φÏάσεις Ï€Ïόσβασης δε συμφωνοÏν" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Αλλαγή φÏάσης Ï€Ïόσβασης" diff --git a/po/en_US.po b/po/en_US.po index 847c7291a62..e0a1e0a6524 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2022-02-09 18:56+0000\n" "Last-Translator: mapmeld <nickd@codeforamerica.org>\n" "Language-Team: English (United States) (http://www.transifex.com/otf/" @@ -381,7 +381,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -696,18 +696,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -969,7 +969,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1576,7 +1576,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1585,33 +1585,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1728,11 +1728,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/et.po b/po/et.po index b4507fb3388..337185ca361 100644 --- a/po/et.po +++ b/po/et.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Estonian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -411,7 +411,8 @@ msgstr "" "Selle versiooni jaoks ei ole automaatset uuendust meie veebisaidilt saadaval" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "sinu seadet ei loodud kasutades USB-d või Tails'i paigaldajat" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -768,19 +769,19 @@ msgstr "Loo püsiv salvestusruum" msgid "Error unlocking Persistent Storage: {}" msgstr "Loo püsiv salvestusruum" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Loo püsiv salvestusruum" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Loo püsiv salvestusruum" @@ -1054,7 +1055,8 @@ msgstr "Tails installatsioon nurjus!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails'i installer" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1687,7 +1689,7 @@ msgstr "Tori staatus" msgid "Open Onion Circuits" msgstr "Avatud Onion-ringteed" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1696,37 +1698,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Püsiva andmeköite õiguste parandamine." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Kontrollin failisüsteemi..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Loo püsiv salvestusruum" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Loo püsiv salvestusruum" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1848,12 +1850,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Näita parool" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Paroolid ei kattu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Näita parool" diff --git a/po/eu.po b/po/eu.po index 6c8e21ead41..bb7402275af 100644 --- a/po/eu.po +++ b/po/eu.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Basque <https://hosted.weblate.org/projects/tor/tails-gui/eu/" @@ -389,7 +389,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -718,19 +718,19 @@ msgstr "Euskarri iraunkorra ezabatzen..." msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Euskarri iraunkorra ezabatzen..." #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -997,7 +997,8 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails instalatzailea" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1625,7 +1626,7 @@ msgstr "Tor egoera" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1634,37 +1635,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Bolumen iraunkorreko baimenak zuzentzen." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Fitxategi sistema egiaztatzen..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Euskarri iraunkorra sortzen..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Euskarri iraunkorra ezabatzen..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1784,12 +1785,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Erakutsi Sar-esaldia" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Pasahitzek ez dute bat egiten" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Erakutsi Sar-esaldia" diff --git a/po/fa.po b/po/fa.po index cedf4946200..32fc1034c1f 100644 --- a/po/fa.po +++ b/po/fa.po @@ -38,9 +38,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" -"PO-Revision-Date: 2023-08-02 17:06+0000\n" -"Last-Translator: Xap <imme228@gmail.com>\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" +"PO-Revision-Date: 2023-08-26 14:51+0000\n" +"Last-Translator: Danial Behzadi <dani.behzi@ubuntu.com>\n" "Language-Team: Persian <https://hosted.weblate.org/projects/tor/tails-gui/fa/" ">\n" "Language: fa\n" @@ -48,7 +48,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 5.0-dev\n" +"X-Generator: Weblate 5.0.1-dev\n" #. Translators: Don't translate {details}, it's a placeholder and will #. be replaced. @@ -151,7 +151,7 @@ msgstr "این به طور خودکار نصب {packages} را متوق٠خوا #: config/chroot_local-includes/usr/local/lib/additional-software/asp-handle-package-changes:144 #: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:168 msgid "Remove" -msgstr "ØØ°Ù" +msgstr "برداشتن" #: config/chroot_local-includes/usr/local/lib/additional-software/asp-handle-package-changes:145 #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py:40 @@ -264,7 +264,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/electrum:112 msgid "Donate Now" -msgstr "" +msgstr "هم‌اکنون ØÙ…ایت کنید" #: config/chroot_local-includes/usr/local/bin/electrum:113 msgid "Later" @@ -445,7 +445,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "به روز رسانی خودکار برای این نسخه در وب سایت ما موجود نیست" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "دستگاه شما با Ø§Ø³ØªÙØ§Ø¯Ù‡ از ایمیج USB Ùˆ یا نصب‌کننده Tails ایجاد نشده است" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -818,19 +819,19 @@ msgstr "ایجاد ذخیره سازی مداوم" msgid "Error unlocking Persistent Storage: {}" msgstr "ذخیره دائمی رمزگذاری شده: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "ذخیره دائمی رمزگذاری شده: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "عدم موÙقیت در پیکربندی ذخیره‌ساز دائم" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "ایجاد ذخیره سازی مداوم: {}" @@ -1106,7 +1107,8 @@ msgstr "نصب تیلز ناموÙÙ‚ بود!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "نصب کننده تیلز" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1801,7 +1803,7 @@ msgstr "وضعیت Tor" msgid "Open Onion Circuits" msgstr "یک مدار پیازی باز Ú©Ù†" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1810,37 +1812,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Ø§ØµÙ„Ø§Ø Ø¯Ø³ØªØ±Ø³ÛŒ های درایو ذخیره سازی مداوم" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "تایید ÙØ§ÛŒÙ„ سیستم..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "ایجاد ذخیره سازی مداوم: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "ایجاد ذخیره سازی مداوم" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1963,12 +1965,12 @@ msgstr "" msgid "Change Passphrase" msgstr "نمایش کلمه عبور" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "رمز ها با هم یکسان نیستند" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "نمایش کلمه عبور" diff --git a/po/fi.po b/po/fi.po index ab78613af85..88afa4d802e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-23 08:07+0000\n" "Last-Translator: Oskari Lavinto <olavinto@protonmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/tor/tails-gui/fi/" @@ -446,7 +446,8 @@ msgstr "" "tälle versiolle ei ole saatavissa automaattista päivitystä webbisivultamme" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "laitettasi ei luotu USB-kuvalla tai Tails-asennusohjelmalla" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -815,20 +816,20 @@ msgstr "Käynnistä ilman pysyvää tallennustilaa" msgid "Error unlocking Persistent Storage: {}" msgstr "Virhe avatessa pysyvää tallennustilaa: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Virhe päivitettäessä pysyvää tallennustilaa: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Pysyvän tallennustilan joidenkin ominaisuuksien määritys epäonnistui: " "{features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Virhe aktivoidessa pysyvää tallennustilaa: {}" @@ -1110,7 +1111,8 @@ msgstr "Tails'in asennnus epäonnistui!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-asennusohjelma" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1804,7 +1806,7 @@ msgstr "Tor-tila" msgid "Open Onion Circuits" msgstr "Avaa Onion-ketjut" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1818,11 +1820,11 @@ msgstr "" "Yritä uudelleen suljettuasi joitakin sovelluksia tai uudelleenkäynnistyksen " "jälkeen." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Luodaan osiota pysyvälle tallennustilalle..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1830,23 +1832,23 @@ msgstr "" "Alustetaan LUKS-salausta... Tietokone voi lakata vastaamasta muutamiksi " "sekunneiksi." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Avataan salausta..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Alustetaan tiedostojärjestelmää..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Aktivoidaan pysyvää tallennustilaa..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Viimeistellään pysyvän tallennustilan määritystä..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1973,11 +1975,11 @@ msgstr "{app} (PID:t: {pids})" msgid "Change Passphrase" msgstr "Vaihda salauslauseke" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Nykyinen salauslauseke on virheellinen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Salauslausekkeen vaihto epäonnistui" diff --git a/po/fr.po b/po/fr.po index d0b3a214f9e..d9e957b1cb7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-26 23:02+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: French <https://hosted.weblate.org/projects/tor/tails-gui/fr/" @@ -485,7 +485,8 @@ msgstr "" "cette version" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "votre périphérique n’a pas été créé en utilisant une image USB ou le " "programme d’installation de Tails" @@ -863,20 +864,20 @@ msgstr "Démarrer sans stockage persistant" msgid "Error unlocking Persistent Storage: {}" msgstr "Erreur de déverrouillage du stockage persistant : {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Erreur de mise à niveau du stockage persistant : {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Échec de l'activation de certaines fonctionnalités du stockage persistant : " "{features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Erreur d'activation du stockage persistant : {}" @@ -1168,7 +1169,8 @@ msgstr "L’installation de Tails a échoué." #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Programme d’installation de Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1880,7 +1882,7 @@ msgstr "État de Tor" msgid "Open Onion Circuits" msgstr "Ouvrir Circuits oignon" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1893,11 +1895,11 @@ msgstr "" "\n" "Réessayez après avoir fermé certaines applications ou redémarré." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Création d'une partition pour le stockage persistant..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1905,23 +1907,23 @@ msgstr "" "Initialisation du cryptage LUKS... Il se peut que l'ordinateur ne réponde " "plus pendant quelques secondes." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Déverrouiller le chiffrement..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Formatage du système de fichiers..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Activation du stockage persistant..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Fin de la configuration du stockage persistant..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2048,11 +2050,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Modifier la phrase de passe" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "La phrase de passe actuelle est incorrecte" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "La modification de la phrase de passe a échoué" diff --git a/po/fy.po b/po/fy.po index 0aaea7d4f0d..238e9eace80 100644 --- a/po/fy.po +++ b/po/fy.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Frisian <https://hosted.weblate.org/projects/tor/tails-gui/fy/" @@ -383,7 +383,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -709,18 +709,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -982,7 +982,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1599,7 +1599,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1608,33 +1608,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1750,11 +1750,11 @@ msgstr "" msgid "Change Passphrase" msgstr "Wachtwurd:" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Wachtwurd:" diff --git a/po/ga.po b/po/ga.po index b825d70aa58..b51a4593090 100644 --- a/po/ga.po +++ b/po/ga.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Irish <https://hosted.weblate.org/projects/tor/tails-gui/ga/" @@ -437,7 +437,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "nÃl aon nuashonrú uathoibrÃoch ar an leagan seo ar fáil ónár suÃomh" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "nÃor cruthaÃodh do ghléas le suiteálaà Tails ná ó Ãomhá USB" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -783,19 +784,19 @@ msgstr "Cruthaigh Stóras Seasmhach" msgid "Error unlocking Persistent Storage: {}" msgstr "Stóras _Seasmhach Criptithe" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Stóras _Seasmhach Criptithe" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Cruthaigh Stóras Seasmhach" @@ -1065,7 +1066,8 @@ msgstr "Theip ar shuiteáil Tails!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Suiteálaà Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1708,7 +1710,7 @@ msgstr "Stádas Tor" msgid "Open Onion Circuits" msgstr "Ciorcaid Onion Oscailte" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1717,37 +1719,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Ceadanna an imleabhair sheasmhaigh á gceartú." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "An córas comhad á dheimhniú..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Cruthaigh Stóras Seasmhach" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Cruthaigh Stóras Seasmhach" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1870,12 +1872,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Taispeáin an Frása Faire" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Nà ionann na frásaà faire" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Taispeáin an Frása Faire" diff --git a/po/gd.po b/po/gd.po index f40ddf3c37c..71de77a3a87 100644 --- a/po/gd.po +++ b/po/gd.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Gaelic <https://hosted.weblate.org/projects/tor/tails-gui/gd/" @@ -393,7 +393,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -718,18 +718,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -991,7 +991,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1608,7 +1608,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1617,33 +1617,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1758,11 +1758,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/gl.po b/po/gl.po index 835e99b0dd9..f5a70adf827 100644 --- a/po/gl.po +++ b/po/gl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Galician <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -423,7 +423,8 @@ msgstr "" "non está dispoñÃbel unha anovación automática no noso sitio para esta versión" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "o seu dispositivo non se creou utilizando unha imaxe USB ou un instalador do " "Tails" @@ -787,19 +788,19 @@ msgstr "Crear almacén persistente" msgid "Error unlocking Persistent Storage: {}" msgstr "Almacén cifrado _persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Almacén cifrado _persistente" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Crear almacén persistente" @@ -1079,7 +1080,8 @@ msgstr "Fallou a instalación do Tails!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instalador do Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1743,7 +1745,7 @@ msgstr "Estado do Tor" msgid "Open Onion Circuits" msgstr "Abrir circuÃtos onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1752,37 +1754,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "A corrixir os permisos do volume persistente." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verificando sistema de ficheiros..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Crear almacén persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Crear almacén persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1905,12 +1907,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Amosar a frase de contrasinal" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "As frases de acceso non coinciden" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Amosar a frase de contrasinal" diff --git a/po/gu.po b/po/gu.po index 5e92032ea1a..d17f1a3fbf3 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-26 19:00+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Gujarati <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -711,19 +711,19 @@ msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" msgid "Error unlocking Persistent Storage: {}" msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" @@ -990,7 +990,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1608,7 +1608,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1617,36 +1617,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "àªàª¨àª•à«àª°àª¿àªªà«àªŸ થયેલ સતત સંગà«àª°àª¹" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1768,11 +1768,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/he.po b/po/he.po index 2f899161679..4f280aec6ad 100644 --- a/po/he.po +++ b/po/he.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Hebrew <https://hosted.weblate.org/projects/tor/tails-gui/he/" @@ -432,7 +432,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "×ין שדרוג ×וטומטי זמין מה×תר ×©×œ× ×• עבור גרסה זו" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "ההתקן שלך ×œ× × ×•×¦×¨ ×¢×´×™ שימוש ×‘×ª×ž×•× ×ª USB ×ו במתקין Tails" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -792,19 +793,19 @@ msgstr "צור ×חסון מתמיד" msgid "Error unlocking Persistent Storage: {}" msgstr "×חסון _מתמיד מוצפן" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "×חסון _מתמיד מוצפן" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "× ×›×©×œ בתיצור ×”×חסון המתמיד שלך" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "צור ×חסון מתמיד" @@ -1076,7 +1077,8 @@ msgstr "×”×ª×§× ×ª Tails × ×›×©×œ×”!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "מתקין Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1750,7 +1752,7 @@ msgstr "מעמד Tor" msgid "Open Onion Circuits" msgstr "פתח מעגל בצל" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1759,37 +1761,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "מתקן הרש×ות של הכרך המתמיד." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "×ž×•×•×“× ×ž×¢×¨×›×ª קבצי×…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "צור ×חסון מתמיד" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "צור ×חסון מתמיד" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1912,12 +1914,12 @@ msgstr "" msgid "Change Passphrase" msgstr "הר××” ביטוי סיסמה" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "ביטויי הסיסמה ××™× × ×ª×•×מי×" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "הר××” ביטוי סיסמה" diff --git a/po/hi.po b/po/hi.po index a44d8543634..fb6d13b5b17 100644 --- a/po/hi.po +++ b/po/hi.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Hindi <https://hosted.weblate.org/projects/tor/tails-gui/hi/" @@ -389,7 +389,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -717,19 +717,19 @@ msgstr "_लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚: {}" @@ -993,7 +993,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1617,7 +1617,7 @@ msgstr "टोर का अवसà¥à¤¥à¤¾à¥¤ " msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1626,36 +1626,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "_लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "_लगातार सà¥à¤Ÿà¥‹à¤°à¥‡à¤œ बनाà¤à¤‚" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1776,11 +1776,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/hr.po b/po/hr.po index c6858ba16ff..d4addaaba28 100644 --- a/po/hr.po +++ b/po/hr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Croatian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -428,7 +428,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "nema dostupne automatske nadogradnje s naÅ¡e stranice za ovu verziju" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "tvoj ureÄ‘aj nije stvoren pomoću USB slike ili Tails instalacije" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -791,19 +792,19 @@ msgstr "Stvori trajno spremiÅ¡te" msgid "Error unlocking Persistent Storage: {}" msgstr "Å ifrirano _trajno spremiÅ¡te" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Å ifrirano _trajno spremiÅ¡te" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Neuspjelo konfiguriranje trajnog spremiÅ¡ta" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Stvori trajno spremiÅ¡te" @@ -1077,7 +1078,8 @@ msgstr "Tails instalacija nije uspjela!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails instalacija" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1739,7 +1741,7 @@ msgstr "Stanje Tora" msgid "Open Onion Circuits" msgstr "Otvori Onion sklopove" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1748,37 +1750,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Ispravljanje dozvola trajnog pogona." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "PotvrÄ‘ivanje datoteÄnog sustava …" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Stvori trajno spremiÅ¡te" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Stvori trajno spremiÅ¡te" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1901,12 +1903,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Pokaži lozinku" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Lozinke se ne podudaraju" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Pokaži lozinku" diff --git a/po/hu.po b/po/hu.po index a007eaf6af9..a4623cdf245 100644 --- a/po/hu.po +++ b/po/hu.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -429,7 +429,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "nincs elérhetÅ‘ automatikus frissÃtés a weboldalunkon ehhez a verzióhoz" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "az eszköze nem egy USB kép vagy Tails telepÃtÅ‘ által jött létre" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -793,19 +794,19 @@ msgstr "Tartós tároló létrehozása" msgid "Error unlocking Persistent Storage: {}" msgstr "TitkosÃtott _Tartós tár" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "TitkosÃtott _Tartós tár" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Tartós Tár beállÃtása sikertelen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Tartós tároló létrehozása" @@ -1080,7 +1081,8 @@ msgstr "A Tails telepÃtése sikertelen!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails telepÃtÅ‘" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1771,7 +1773,7 @@ msgstr "Tor állapot" msgid "Open Onion Circuits" msgstr "Nyitott Onion Ãramkörök" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1780,37 +1782,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Hozzáférési jogosultságok javÃtása a tartós köteten." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Fájlrendszer ellenÅ‘rzése…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Tartós tároló létrehozása" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Tartós tároló létrehozása" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1933,12 +1935,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Jelmondat megjelenÃtése" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "A jelszavak nem egyeznek" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Jelmondat megjelenÃtése" diff --git a/po/hy.po b/po/hy.po index 31ca31fc429..518a1a69ee9 100644 --- a/po/hy.po +++ b/po/hy.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-02-28 14:39+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Armenian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -401,7 +401,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -735,19 +735,19 @@ msgstr "ÕÕ¿Õ¥Õ²Õ®Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" msgid "Error unlocking Persistent Storage: {}" msgstr "Ô³Õ¡Õ²Õ¿Õ¶Õ¡Õ£Ö€Õ¾Õ¡Õ® _Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Ô³Õ¡Õ²Õ¿Õ¶Õ¡Õ£Ö€Õ¾Õ¡Õ® _Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Õ‰Õ½Õ¿Õ¡ÖÕ¾Õ¥Ö Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ¸Ö€Õ¥Õ¬ ÕÕ¥Ö€ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶Õ¨" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "ÕÕ¿Õ¥Õ²Õ®Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" @@ -1013,7 +1013,8 @@ msgstr "Tails-Õ« Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ¸Ö‚Õ´Õ¨ Õ±Õ¡ÕÕ¸Õ²Õ¾Õ¥ÕœÖ:" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-Õ« Õ¿Õ¥Õ²Õ¡Õ¤Ö€Õ«Õ¹" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1632,7 +1633,7 @@ msgstr "Tor-Õ« Õ¯Õ¡Ö€Õ£Õ¡Õ¾Õ«Õ³Õ¡Õ¯Õ¨" msgid "Open Onion Circuits" msgstr "Ô²Õ¡ÖÕ¥Õ¬ Onion Õ·Õ²Õ©Õ¡Õ¶Õ¥Ö€" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1641,37 +1642,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ÕÕ¿Õ¥Õ²Õ®Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Õ€Õ¡Õ´Õ¡Õ¯Õ¡Ö€Õ£Õ« Õ¡Ö€Õ¤Õ«Õ¡ÖÕ¸Ö‚Õ´" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "ÕÕ¿Õ¥Õ²Õ®Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "ÕÕ¿Õ¥Õ²Õ®Õ¥Õ¬ Õ°Õ¡Õ½Õ¿Õ¡Õ¿Õ¡Õ¯Õ¡Õ´ ÕºÕ¡Õ°Õ¥Õ½Õ¿Õ¡Ö€Õ¡Õ¶" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1794,12 +1795,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ£Õ¡Õ²Õ¿Õ¶Õ¡Õ¤Õ¡Ö€Õ±Õ¾Õ¡Õ®Ö„Õ¨" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Ô³Õ¡Õ²Õ¿Õ¶Õ¡Õ¤Õ¡Ö€Õ±Õ¾Õ¡Õ®Ö„Õ¶Õ¥Ö€Õ¨ Õ¹Õ¥Õ¶ Õ°Õ¡Õ´Õ¨Õ¶Õ¯Õ¶Õ¸Ö‚Õ´" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Õ‘Õ¸Ö‚ÕµÖ Õ¿Õ¡Õ¬ Õ£Õ¡Õ²Õ¿Õ¶Õ¡Õ¤Õ¡Ö€Õ±Õ¾Õ¡Õ®Ö„Õ¨" diff --git a/po/id.po b/po/id.po index 1a692a9a871..247785b4479 100644 --- a/po/id.po +++ b/po/id.po @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Indonesian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -434,7 +434,8 @@ msgstr "" "tidak ada pemutakhiran otomatis yang tersedia di situs kami untuk versi ini" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "perangkat Anda tidak dibuat menggunakan image USB atau Tails Installer" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -797,19 +798,19 @@ msgstr "Membuat Penyimpanan Persisten" msgid "Error unlocking Persistent Storage: {}" msgstr "_Penyimpanan Menetap Terenkripsi" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "_Penyimpanan Menetap Terenkripsi" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Gagal untuk mengatur Penyimpanan Persistent Anda" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Membuat Penyimpanan Persisten" @@ -1087,7 +1088,8 @@ msgstr "Instalasi Tails gagal!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Installer untuk Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1790,7 +1792,7 @@ msgstr "Status Tor" msgid "Open Onion Circuits" msgstr "Buka Sirkuit Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1799,37 +1801,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Koreksi izin/permisi dari volume persistent" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Memeriksa filesystem..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Membuat Penyimpanan Persisten" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Membuat Penyimpanan Persisten" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1952,12 +1954,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Tampilkan Kata Kunci" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Kalimat tidak cocok" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Tampilkan Kata Kunci" diff --git a/po/is.po b/po/is.po index 149bb396686..0e19392a02c 100644 --- a/po/is.po +++ b/po/is.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" -"PO-Revision-Date: 2023-07-21 16:06+0000\n" -"Last-Translator: Anonymous <noreply@weblate.org>\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" +"PO-Revision-Date: 2023-08-21 13:51+0000\n" +"Last-Translator: Sveinn à Felli <sv1@fellsnet.is>\n" "Language-Team: Icelandic <https://hosted.weblate.org/projects/tor/tails-gui/" "is/>\n" "Language: is\n" @@ -238,11 +238,11 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/electrum:112 msgid "Donate Now" -msgstr "" +msgstr "Styrkja núna" #: config/chroot_local-includes/usr/local/bin/electrum:113 msgid "Later" -msgstr "" +msgstr "SÃðar" #: config/chroot_local-includes/usr/local/bin/electrum:123 msgid "Opening Electrum with our donation address..." @@ -250,7 +250,7 @@ msgstr "" #: config/chroot_local-includes/usr/local/bin/electrum:124 msgid "Thank you for making the Internet a safer place!" -msgstr "" +msgstr "Takk fyrir að gera internetið að öruggari stað!" #: config/chroot_local-includes/usr/local/bin/electrum:157 msgid "Persistence is disabled for Electrum" @@ -419,7 +419,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "engin sjálfvirk uppfærsla fyrir þessa útgáfu er tiltæk á vefnum okkar" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "tækið þitt var ekki búið til með USB-diskmynd eða Tails-uppsetningarforritinu" @@ -527,7 +528,7 @@ msgid "Upgrade later" msgstr "Uppfæra sÃðar" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:518 -#, fuzzy, perl-brace-format +#, perl-brace-format msgid "" "<b>You should do a manual upgrade to the latest version of {name}.</b>\n" "\n" @@ -542,7 +543,8 @@ msgstr "" "\n" "Til að sjá nánari upplýsingar um nýju útgáfuna, farðu á {details_url}\n" "\n" -"Ekki er hægt að uppfæra tækið sjálfvirkt à þessa nýju útgáfu.\n" +"Ekki er hægt að uppfæra tækið sjálfvirkt à þessa nýju útgáfu: " +"{explanation}.\n" "\n" "Til að sjá hvernig framkvæma eigi handvirka uppfærslu, farðu þá á " "{manual_upgrade_url}" @@ -769,9 +771,8 @@ msgid "Off (default)" msgstr "Slökkt (sjálfgefið)" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:159 -#, fuzzy msgid "Persistent Storage Still Locked" -msgstr "Varanleg gagnageymsla" +msgstr "Varanleg gagnageymsla ennþá læst" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py:160 #, fuzzy @@ -790,19 +791,19 @@ msgstr "Útbúa varanlega gagnageymslu" msgid "Error unlocking Persistent Storage: {}" msgstr "Villa við að aflæsa varanlegri gagnageymslu: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Villa við að aflæsa varanlegri gagnageymslu: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Tókst ekki að stilla varanlega gagnageymslu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Villa við að virkja varanlega gagnageymslu: {}" @@ -1085,7 +1086,8 @@ msgstr "Uppsetning Tails mistókst!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-uppsetningarforrit" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1786,7 +1788,7 @@ msgstr "Staða Tor" msgid "Open Onion Circuits" msgstr "Opnar Onion-rásir" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1795,37 +1797,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Leiðrétti heimildir á varanlegu gagnageymslunni." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Yfirfer skráarkerfi..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Villa við að virkja varanlega gagnageymslu: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Útbúa varanlega gagnageymslu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1946,12 +1948,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Breyta lykilsetningu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Lykilsetningarnar stemma ekki" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Breyta lykilsetningu" diff --git a/po/it.po b/po/it.po index c5178fe469c..93b97115c09 100644 --- a/po/it.po +++ b/po/it.po @@ -39,7 +39,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-26 19:00+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/tor/tails-gui/it/" @@ -459,7 +459,8 @@ msgstr "" "versione." #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "il tuo dispositivo non è stato creato usando un'immagine USB o installatore " "di Tails" @@ -838,19 +839,19 @@ msgstr "Crea archiviazione persistente" msgid "Error unlocking Persistent Storage: {}" msgstr "_Volume persistente cifrato" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "_Volume persistente cifrato" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Impossibile configurare l'archiviazione persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Crea archiviazione persistente" @@ -1131,7 +1132,8 @@ msgstr "Installazione di Tails fallita!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Installer di Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1831,7 +1833,7 @@ msgstr "Stato di Tor" msgid "Open Onion Circuits" msgstr "Apri Circuiti Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1840,37 +1842,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Correzione dei permessi del volume persistente." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verifica del filesystem in corso..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Crea archiviazione persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Crea archiviazione persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1993,12 +1995,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Mostra passphrase" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "La frase segreta non corrisponde" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Mostra passphrase" diff --git a/po/ja.po b/po/ja.po index 30d544fc329..a582987672e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-08-09 07:05+0000\n" "Last-Translator: Isizaki mei <christine.dinapoli@tmail.link>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -452,7 +452,8 @@ msgstr "" "ã‚“" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "デãƒã‚¤ã‚¹ãŒ USB イメージã¾ãŸã¯ Tails インストーラーを使用ã—ã¦ä½œæˆã•れã¦ã„ãªã„" "よã†ã§ã™" @@ -823,18 +824,18 @@ msgstr "永続ストレージãªã—ã§å§‹ã‚ã‚‹" msgid "Error unlocking Persistent Storage: {}" msgstr "æš—å·åŒ–ã•ã‚ŒãŸæ°¸ç¶šçš„ストレージ: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "永続ストレージã®ã‚¢ãƒƒãƒ—グレードエラー: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "永続ストレージã®ä¸€éƒ¨ã®æ©Ÿèƒ½ã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–化ã«å¤±æ•—ã—ã¾ã—ãŸã€‚: {features}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "永続ストレージã®ã‚¢ã‚¯ãƒ†ã‚£ãƒ–化エラー:{}" @@ -1112,7 +1113,8 @@ msgstr "Tails ã®ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã«å¤±æ•—ã—ã¾ã—ãŸ!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails インストーラー" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1813,7 +1815,7 @@ msgstr "Tor ã®çŠ¶æ…‹" msgid "Open Onion Circuits" msgstr "Onion 回線を開ãã¾ã™" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1826,34 +1828,34 @@ msgstr "" "\n" "ã„ãã¤ã‹ã®ã‚¢ãƒ—リケーションを終了ã™ã‚‹ã‹ã€å†èµ·å‹•ã—ã¦ã‹ã‚‰å†è©¦è¡Œã—ã¦ãã ã•ã„。" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "永続ストレージ用パーティションã®ä½œæˆ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" "LUKSæš—å·åŒ–ã®åˆæœŸåŒ–... ã‚³ãƒ³ãƒ”ãƒ¥ãƒ¼ã‚¿ãƒ¼ãŒæ•°ç§’é–“å応ã—ãªããªã‚‹ã“ã¨ãŒã‚りã¾ã™ã€‚" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "æš—å·åŒ–ã®è§£é™¤..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "ファイルシステムã®ãƒ•ォーマット..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "永続ストレージを有効ã«ã™ã‚‹..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "永続ストレージã®ã‚»ãƒƒãƒˆã‚¢ãƒƒãƒ—を終了ã™ã‚‹..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1978,11 +1980,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "パスフレーズを変更ã™ã‚‹" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "ç¾åœ¨ã®ãƒ‘ã‚¹ãƒ•ãƒ¬ãƒ¼ã‚ºãŒæ£ã—ãã‚りã¾ã›ã‚“" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "パスフレーズã®å¤‰æ›´ã«å¤±æ•—ã—ã¾ã—ãŸ" diff --git a/po/ka.po b/po/ka.po index e202a8ea9b1..69e8e45f93f 100644 --- a/po/ka.po +++ b/po/ka.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Georgian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -419,7 +419,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "áƒáƒ› ვერსიისთვის ჩვენი სáƒáƒ˜áƒ¢áƒ˜áƒ“áƒáƒœ თვითგáƒáƒœáƒáƒ®áƒšáƒ”ბრáƒáƒ áƒáƒ ხელმისáƒáƒ¬áƒ•დáƒáƒ›áƒ˜" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "მáƒáƒ¬áƒ§áƒáƒ‘ილáƒáƒ‘რáƒáƒ áƒáƒ შექმნილი USB-áƒáƒ¡áƒšáƒ˜áƒ— áƒáƒœ Tails-ის დáƒáƒ¡áƒáƒ§áƒ”ნებელი პრáƒáƒ’რáƒáƒ›áƒ˜áƒ—." @@ -795,19 +796,19 @@ msgstr "მუდმივი სáƒáƒªáƒáƒ•ის შექმნáƒ" msgid "Error unlocking Persistent Storage: {}" msgstr "დáƒáƒ¨áƒ˜áƒ¤áƒ ული _მუდმივი მეხსიერებáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "დáƒáƒ¨áƒ˜áƒ¤áƒ ული _მუდმივი მეხსიერებáƒ" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "მუდმივი მეხსიერების გáƒáƒ›áƒáƒ თვრვერმáƒáƒ®áƒ”რხდáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "მუდმივი სáƒáƒªáƒáƒ•ის შექმნáƒ" @@ -1085,7 +1086,8 @@ msgstr "Tails-ის დáƒáƒ§áƒ”ნებრვერმáƒáƒ®áƒ”რხდრ#: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-ის დáƒáƒ§áƒ”ნების მეგზური" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1786,7 +1788,7 @@ msgstr "Tor-ის მდგáƒáƒ›áƒáƒ ეáƒáƒ‘áƒ" msgid "Open Onion Circuits" msgstr "Onion-წრედების გáƒáƒ®áƒ¡áƒœáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1795,37 +1797,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "მუდმივი სáƒáƒªáƒáƒ•ის ნებáƒáƒ თვების გáƒáƒ›áƒáƒ თვáƒ." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "ფáƒáƒ˜áƒšáƒ£áƒ ი სისტემის გáƒáƒ“áƒáƒ›áƒáƒ¬áƒ›áƒ”ბáƒ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "მუდმივი სáƒáƒªáƒáƒ•ის შექმნáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "მუდმივი სáƒáƒªáƒáƒ•ის შექმნáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1948,12 +1950,12 @@ msgstr "" msgid "Change Passphrase" msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ ჩვენებáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "პáƒáƒ áƒáƒšáƒ”ბი áƒáƒ ემთხვევáƒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ ჩვენებáƒ" diff --git a/po/kab.po b/po/kab.po index 35732f4201b..db0bfa9fd51 100644 --- a/po/kab.po +++ b/po/kab.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-25 11:39+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Kabyle <https://hosted.weblate.org/projects/tor/tails-gui/kab/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -707,18 +707,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -980,7 +980,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1597,7 +1597,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1606,33 +1606,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1747,11 +1747,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/ki.po b/po/ki.po index 38090599004..a614c56bab2 100644 --- a/po/ki.po +++ b/po/ki.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Gikuyu <https://hosted.weblate.org/projects/tor/tails-gui/ki/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -707,18 +707,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -980,7 +980,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1597,7 +1597,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1606,33 +1606,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1747,11 +1747,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/kk.po b/po/kk.po index 2e2558df838..d1a8b2f0de9 100644 --- a/po/kk.po +++ b/po/kk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Kazakh <https://hosted.weblate.org/projects/tor/tails-gui/kk/" @@ -422,7 +422,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "бұл нұÑқа үшін біздің веб-Ñайтта автоматты жаңарту қолжетімді емеÑ" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "құрылғыңыз USB кеÑкіні немеÑе Tails Installer көмегімен жаÑалмаған" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -786,19 +787,19 @@ msgstr "Тұрақты Ñақтауды жаÑаңыз" msgid "Error unlocking Persistent Storage: {}" msgstr "Тұрақты Ñақтауды жаÑаңыз: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Тұрақты Ñақтауды жаÑаңыз: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Тұрақты Ñақтауды жаÑаңыз: {}" @@ -1067,7 +1068,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1698,7 +1699,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "Onion тізбектерін ашу" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1707,37 +1708,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Тұрақты Ñақтауды жаÑаңыз" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Жүйені жаңарту" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Тұрақты Ñақтауды жаÑаңыз: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Тұрақты Ñақтауды жаÑаңыз" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1858,11 +1859,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/km.po b/po/km.po index 7f297553b72..f90fae5fdc4 100644 --- a/po/km.po +++ b/po/km.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Khmer (Central) <https://hosted.weblate.org/projects/tor/" @@ -385,7 +385,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "មិន​មាន​ការ​ធ្វើ​បច្ចុប្បន្នភាព​ស្វáŸáž™â€‹áž”្រវážáŸ’ážáž·â€‹áž–ី​ážáŸ†áž”ន់បណ្ដាញ​របស់​យើ​សម្រាប់​កំណែ​នáŸáŸ‡" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -716,19 +716,19 @@ msgstr "ការ​បង្កើážâ€‹áž€áž˜áŸ’ážšáž·ážâ€‹ážŸáŸ†áž¡áŸáž„​ msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "ការ​បង្កើážâ€‹áž€áž˜áŸ’ážšáž·ážâ€‹ážŸáŸ†áž¡áŸáž„​ážáŸážšâ€‹áž‡áž¶áž“់​គ្នា %sMB" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -993,7 +993,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1605,7 +1605,7 @@ msgstr "ស្ážáž¶áž“áž—áž¶áž– Tor" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1614,37 +1614,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ការ​កែážáž˜áŸ’រូវ​សិទ្ធិ​នៃ​កម្រិážâ€‹ážŸáŸ†áž¡áŸáž„​ážáŸážšáŸ”" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "កំពុង​ផ្ទៀងផ្ទាážáŸ‹â€‹áž”្រពáŸáž“្ធ​ឯកសារ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "ការ​បង្កើážâ€‹áž€áž˜áŸ’ážšáž·ážâ€‹ážŸáŸ†áž¡áŸáž„​ážáŸážšâ€‹áž‡áž¶áž“់​គ្នា %sMB" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "ការ​បង្កើážâ€‹áž€áž˜áŸ’ážšáž·ážâ€‹ážŸáŸ†áž¡áŸáž„​ážáŸážšâ€‹áž‡áž¶áž“់​គ្នា %sMB" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1764,12 +1764,12 @@ msgstr "" msgid "Change Passphrase" msgstr "ឃ្លា​សម្ងាážáŸ‹áŸ–" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "ឃ្លា​សម្ងាážáŸ‹â€‹áž˜áž·áž“​ផ្គូផ្គង" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ឃ្លា​សម្ងាážáŸ‹áŸ–" diff --git a/po/kn.po b/po/kn.po index f5591742c2e..45b609529b6 100644 --- a/po/kn.po +++ b/po/kn.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Kannada <https://hosted.weblate.org/projects/tor/tails-gui/kn/" @@ -384,7 +384,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -709,18 +709,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -982,7 +982,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1599,7 +1599,7 @@ msgstr "ಟಾರà³â€Œà²¨ ಸà³à²¥à²¿à²¤à²¿" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1608,33 +1608,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1751,11 +1751,11 @@ msgstr "" msgid "Change Passphrase" msgstr "ಕೊಂಡಿಪದ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ಕೊಂಡಿಪದ" diff --git a/po/ko.po b/po/ko.po index a4ef6c8e59b..ea6071a80e4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Korean <https://hosted.weblate.org/projects/tor/tails-gui/ko/" @@ -418,7 +418,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "웹사ì´íŠ¸ì— ì´ ë²„ì „ì— ëŒ€í•œ ìžë™ ì—…ë°ì´íŠ¸ê°€ 존재하지 않습니다" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "USB ì´ë¯¸ì§€ ë˜ëŠ” Tails Installer를 사용하여 장치를 만들지 않았습니다" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -776,19 +777,19 @@ msgstr "í¼ì‹œìŠ¤í„´íŠ¸ ì €ìž¥ì†Œ ìƒì„±" msgid "Error unlocking Persistent Storage: {}" msgstr "ì˜êµ¬ ì €ìž¥ì†Œ ìž ê¸ˆ í•´ì œ 오류: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "ì˜êµ¬ ì €ìž¥ì†Œ ìž ê¸ˆ í•´ì œ 오류: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "í¼ì‹œìŠ¤í„´íŠ¸ ì €ìž¥ì†Œë¥¼ 구성하지 못함" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "í¼ì‹œìŠ¤í„´íŠ¸ ì €ìž¥ì†Œ ìƒì„±: {}" @@ -1060,7 +1061,8 @@ msgstr "Tails 설치가 실패했습니다!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails 설치 프로그램" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1741,7 +1743,7 @@ msgstr "Tor ìƒíƒœ" msgid "Open Onion Circuits" msgstr "어니언 회로 열기" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1750,37 +1752,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ì˜êµ¬ì ë³¼ë¥¨ì˜ ê¶Œí•œ ìˆ˜ì •" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "íŒŒì¼ ì‹œìŠ¤í…œ í™•ì¸ ì¤‘..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "í¼ì‹œìŠ¤í„´íŠ¸ ì €ìž¥ì†Œ ìƒì„±: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "í¼ì‹œìŠ¤í„´íŠ¸ ì €ìž¥ì†Œ ìƒì„±" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1902,12 +1904,12 @@ msgstr "" msgid "Change Passphrase" msgstr "ë¹„ë°€êµ¬ì ˆ 변경하기" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "ë¹„ë°€êµ¬ì ˆì´ ì¼ì¹˜í•˜ì§€ 않습니다" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ë¹„ë°€êµ¬ì ˆ 변경하기" diff --git a/po/lt.po b/po/lt.po index a5bac7e99b5..84d9410a92c 100644 --- a/po/lt.po +++ b/po/lt.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -436,7 +436,8 @@ msgstr "" "Å¡iai versijai, iÅ¡ mÅ«sų svetainÄ—s nÄ—ra prieinamas automatinis naujinimas" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "jÅ«sų įrenginys nebuvo sukurtas naudojant USB atvaizdį ar Tails diegimo " "programÄ…" @@ -803,19 +804,19 @@ msgstr "Sukurti ilgalaikį kaupiklį" msgid "Error unlocking Persistent Storage: {}" msgstr "Å ifruotas ilgalaikis kau_piklis" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Å ifruotas ilgalaikis kau_piklis" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Sukurti ilgalaikį kaupiklį" @@ -1091,7 +1092,8 @@ msgstr "Tails diegimas patyrÄ— nesÄ—kmÄ™!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails diegimo programa" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1746,7 +1748,7 @@ msgstr "Tor bÅ«sena" msgid "Open Onion Circuits" msgstr "Atverti Onion grandines" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1755,37 +1757,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "IÅ¡taisomi ilgalaikio tomo leidimai." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Tikrinama failų sistema..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Sukurti ilgalaikį kaupiklį" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Sukurti ilgalaikį kaupiklį" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1908,12 +1910,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Rodyti slaptafrazÄ™" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "SlaptafrazÄ—s nesutampa" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Rodyti slaptafrazÄ™" diff --git a/po/lv.po b/po/lv.po index e4296b8f14e..4399f96cca7 100644 --- a/po/lv.po +++ b/po/lv.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Latvian <https://hosted.weblate.org/projects/tor/tails-gui/lv/" @@ -402,7 +402,7 @@ msgstr "" "uzlabojums." #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -747,19 +747,19 @@ msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" msgid "Error unlocking Persistent Storage: {}" msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" @@ -1026,7 +1026,8 @@ msgstr "Tails instalÄcija neizdevÄs!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails instalÄ“tÄjs" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1660,7 +1661,7 @@ msgstr "Tor'a statuss" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1669,37 +1670,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "PastÄvÄ«gÄ sÄ“juma atļauju laboÅ¡ana." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "VerificÄ“ datņu sistÄ“mu..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Å ifrÄ“ta _PastÄvÄ«gÄ uzglabÄÅ¡ana" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1822,12 +1823,12 @@ msgstr "" msgid "Change Passphrase" msgstr "ParÄdÄ«t paroles frÄzi" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Ieejas frÄzes nesakrÄ«t" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ParÄdÄ«t paroles frÄzi" diff --git a/po/mk.po b/po/mk.po index 053abdaf54c..2997b7e2d27 100644 --- a/po/mk.po +++ b/po/mk.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-02-09 11:36+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Macedonian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -426,7 +426,8 @@ msgstr "" "нема доÑтапно автоматÑко ажурирање за оваа верзија на нашата веб Ñтрана" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "твојот уред не беше Ñоздаден Ñо кориÑтење на USB Ñлика или Ñо Tails Installer" @@ -801,19 +802,19 @@ msgstr "Создај ПоÑтојан Ñклад" msgid "Error unlocking Persistent Storage: {}" msgstr "Енкриптиран_ПоÑтојан Ñклад: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Енкриптиран_ПоÑтојан Ñклад: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Ðе уÑпеа кофигурирањето на вашиот ПоÑтојан Ñклад." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Создај ПоÑтојан Ñклад: {}" @@ -1094,7 +1095,7 @@ msgstr "ИнÑталацијата на Tails не уÑпеа!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 #, fuzzy -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "Tails Installer" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1797,7 +1798,7 @@ msgstr "Tor ÑтатуÑ" msgid "Open Onion Circuits" msgstr "Отвори Onion кругови" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1806,37 +1807,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Собирање на дозволи од поÑтојаниот проÑтор." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Верификација на ÑиÑтемÑката датотека..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Создај ПоÑтојан Ñклад: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Создај ПоÑтојан Ñклад" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1959,12 +1960,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Покажи лозинка" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Лозинките не Ñе иÑти" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Покажи лозинка" diff --git a/po/mr.po b/po/mr.po index a655902a53c..daba70ca996 100644 --- a/po/mr.po +++ b/po/mr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Marathi <https://hosted.weblate.org/projects/tor/tails-gui/mr/" @@ -395,7 +395,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "या आवृतà¥à¤¤à¥€à¤¸à¤¾à¤ ी आमचà¥à¤¯à¤¾ वेबसाइटवरून कोणतेही सà¥à¤µà¤¯à¤‚चलित अपगà¥à¤°à¥‡à¤¡ उपलबà¥à¤§ नाही" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "आपले डिवà¥à¤¹à¤¾à¤‡à¤¸ USB पà¥à¤°à¤¤à¤¿à¤®à¤¾ किंवा टेलà¥à¤¸ इंसà¥à¤Ÿà¥‰à¤²à¤° वापरà¥à¤¨ तयार केलेले नाही" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -723,19 +724,19 @@ msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" @@ -999,7 +1000,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1617,7 +1618,7 @@ msgstr "टॉर सà¥à¤¥à¤¿à¤¤à¥€" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1626,36 +1627,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "सकà¥à¤¤à¥€à¤šà¥‡ संचय तयार करा" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1775,11 +1776,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/ms_MY.po b/po/ms_MY.po index d72d8b374fd..1cb106eb3fc 100644 --- a/po/ms_MY.po +++ b/po/ms_MY.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Malay <https://hosted.weblate.org/projects/tor/tails-gui/ms/" @@ -434,7 +434,8 @@ msgstr "" "ini" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "peranti anda tidak dibuat menggunakan imej USB atau Pemasang Tails" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -811,19 +812,19 @@ msgstr "Cipta Storan Berterusan" msgid "Error unlocking Persistent Storage: {}" msgstr "Storan _Berterusan Tersulit" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Storan _Berterusan Tersulit" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Cipta Storan Berterusan" @@ -1093,7 +1094,8 @@ msgstr "Pemasangan Tails gagal!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Pemasang Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1733,7 +1735,7 @@ msgstr "Status Tor" msgid "Open Onion Circuits" msgstr "Buka Litar Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1742,37 +1744,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Membetulkan keizinan volum berterusan." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Mengesahkan sistem fail..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Cipta Storan Berterusan" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Cipta Storan Berterusan" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1895,12 +1897,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Tunjuk Frasa Laluan" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Frasa laluan tidak sepadan" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Tunjuk Frasa Laluan" diff --git a/po/my.po b/po/my.po index c55697dfb63..e2b51751da9 100644 --- a/po/my.po +++ b/po/my.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Burmese <https://hosted.weblate.org/projects/tor/tails-gui/my/" @@ -398,7 +398,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "ဤဗားရှင်းအá€á€½á€€á€º အလá€á€¯á€¡á€œá€»á€±á€¬á€€á€º အဆင့်မြှင့်á€á€¼á€„်းကá€á€¯ ကျွန်ုပ်á€á€á€¯á€·á á€á€˜á€ºá€†á€á€¯á€€á€ºá€á€½á€„် မရရှá€á€”á€á€¯á€„်ပါ" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "သင့်စက်ပစ္စည်းကá€á€¯ USB ပုံရá€á€•် သá€á€¯á€·á€™á€Ÿá€¯á€á€º Tails ထည့်သွင်းစက် သုံးá ဖန်á€á€®á€¸á€á€²á€·á€á€¼á€„်း မဟုá€á€ºá€•ါ" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -726,19 +727,19 @@ msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖ msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖန်á€á€®á€¸á€›á€”်" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖန်á€á€®á€¸á€›á€”်" @@ -1002,7 +1003,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1620,7 +1621,7 @@ msgstr "Tor အနေအထား" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1629,36 +1630,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖန်á€á€®á€¸á€›á€”်" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖန်á€á€®á€¸á€›á€”်" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "_ကြာရှည်á€á€¶ သá€á€¯á€œá€¾á€±á€¬á€„်á€á€”်း ဖန်á€á€®á€¸á€›á€”်" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1779,11 +1780,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/nb.po b/po/nb.po index 3715426b7fb..af832099fa7 100644 --- a/po/nb.po +++ b/po/nb.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Norwegian BokmÃ¥l <https://hosted.weblate.org/projects/tor/" @@ -421,7 +421,8 @@ msgstr "" "versjonen" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "din enhet ble ikke laget ved bruk av et USB bilde eller Tails Installer" @@ -767,19 +768,19 @@ msgstr "Opprett vedvarende lagring" msgid "Error unlocking Persistent Storage: {}" msgstr "Kryptert _vedvarende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Kryptert _vedvarende lagring" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Opprett vedvarende lagring" @@ -1046,7 +1047,8 @@ msgstr "Tails-installasjon mislyktes" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-installasjonskandidat" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1674,7 +1676,7 @@ msgstr "Tor-status" msgid "Open Onion Circuits" msgstr "Ã…pne løk-kretser" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1683,37 +1685,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Korrigerer tillatelsene til den vedvarende lagringen." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verifiserer filsystem…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Opprett vedvarende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Opprett vedvarende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1836,12 +1838,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Vis passordsekvens" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Passordsekvensene samsvarer ikke" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Vis passordsekvens" diff --git a/po/ne.po b/po/ne.po index 055336554c8..1429bfa5b13 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Nepali <https://hosted.weblate.org/projects/tor/tails-gui/ne/" @@ -383,7 +383,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -708,18 +708,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -981,7 +981,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1598,7 +1598,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1607,33 +1607,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1748,11 +1748,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/nl.po b/po/nl.po index 391a352ad6d..a2f3fb7395a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -41,7 +41,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Dutch <https://hosted.weblate.org/projects/tor/tails-gui/nl/" @@ -456,7 +456,8 @@ msgstr "" "voor deze versie is geen automatische upgrade beschikbaar via onze website" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "uw apparaat is niet aangemaakt door middel van een USB-image of Tails-" "installatieprogramma" @@ -828,19 +829,19 @@ msgstr "Doorgaan zonder Persistent Storage" msgid "Error unlocking Persistent Storage: {}" msgstr "Fout bij ontgrendelen Persistent Storage: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Fout bij ontgrendelen Persistent Storage: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Mislukt om permanente opslag te configureren" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Fout bij activeren Persistent Storage: {}" @@ -1123,7 +1124,8 @@ msgstr "Tails-installatie is mislukt!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-installatieprogramma" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1822,7 +1824,7 @@ msgstr "Tor-status" msgid "Open Onion Circuits" msgstr "Onion-circuits openen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1831,37 +1833,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Rechten van het permanente volume corrigeren." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Bestandssysteem verifiëren..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Fout bij activeren Persistent Storage: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Doorgaan zonder Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1982,12 +1984,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Verander Wachtwoordzin" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "De wachtwoordzinnen komen niet overeen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Verander Wachtwoordzin" diff --git a/po/nn.po b/po/nn.po index abca2d5ac6c..0428f29fc85 100644 --- a/po/nn.po +++ b/po/nn.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Norwegian Nynorsk <https://hosted.weblate.org/projects/tor/" @@ -397,7 +397,7 @@ msgstr "" "versjonen." #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -731,19 +731,19 @@ msgstr "Skapar %sMB vedvarande yverlegg" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Skapar %sMB vedvarande yverlegg" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -1011,7 +1011,8 @@ msgstr "Mislykka installering av Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails-installerar" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1630,7 +1631,7 @@ msgstr "Tor-status" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1639,37 +1640,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Skapar %sMB vedvarande yverlegg" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Stadfestar filsystem..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Skapar %sMB vedvarande yverlegg" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Skapar %sMB vedvarande yverlegg" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1789,11 +1790,11 @@ msgstr "" msgid "Change Passphrase" msgstr "Vis passord" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Vis passord" diff --git a/po/oc.po b/po/oc.po index e88278ed123..19c19759e90 100644 --- a/po/oc.po +++ b/po/oc.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Occitan <https://hosted.weblate.org/projects/tor/tails-gui/oc/" @@ -383,7 +383,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -708,18 +708,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -981,7 +981,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1598,7 +1598,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1607,33 +1607,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1749,11 +1749,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/or.po b/po/or.po index 91566917fc7..666c8ca3352 100644 --- a/po/or.po +++ b/po/or.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Odia <https://hosted.weblate.org/projects/tor/tails-gui/or/>\n" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -708,18 +708,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -981,7 +981,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1598,7 +1598,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1607,33 +1607,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1748,11 +1748,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/pa.po b/po/pa.po index 39e0f253a6c..185d0d3d994 100644 --- a/po/pa.po +++ b/po/pa.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-25 11:39+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Punjabi <https://hosted.weblate.org/projects/tor/tails-gui/pa/" @@ -383,7 +383,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -709,18 +709,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -984,7 +984,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1601,7 +1601,7 @@ msgstr "ਟੋਰ ਸਥਿਤੀ" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1610,34 +1610,34 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "ਫਾਇਲ ਸਿਸਟਮ ਦੀ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1756,11 +1756,11 @@ msgstr "" msgid "Change Passphrase" msgstr "ਵਾਕ:" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "ਵਾਕ:" diff --git a/po/pl.po b/po/pl.po index a9a665fb4b5..bb9dd737df1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-06-20 12:51+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/tor/tails-gui/pl/" @@ -470,7 +470,8 @@ msgstr "" "wersji" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "Twoje urzÄ…dzenie nie zostaÅ‚o utworzone przy użyciu obrazu USB lub " "Instalatora Tails" @@ -841,19 +842,19 @@ msgstr "Rozpocznij bez pamiÄ™ci trwaÅ‚ej" msgid "Error unlocking Persistent Storage: {}" msgstr "Błąd podczas odblokowywania pamiÄ™ci trwaÅ‚ej: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Błąd podczas uaktualniania pamiÄ™ci trwaÅ‚ej: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Nie udaÅ‚o siÄ™ aktywować niektórych funkcji pamiÄ™ci trwaÅ‚ej: {features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Błąd aktywowania pamiÄ™ci trwaÅ‚ej: {}" @@ -1136,7 +1137,8 @@ msgstr "Instalacja Tails nie powiodÅ‚a siÄ™!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instalator Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1834,7 +1836,7 @@ msgstr "Status sieci Tor" msgid "Open Onion Circuits" msgstr "Otwarte obwody onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1848,11 +1850,11 @@ msgstr "" "Spróbuj ponownie po zamkniÄ™ciu niektórych aplikacji lub po ponownym " "uruchomieniu." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Tworzenie partycji dla pamiÄ™ci trwaÅ‚ej..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1860,23 +1862,23 @@ msgstr "" "Inicjowanie szyfrowania LUKS... Komputer może przestać odpowiadać na kilka " "sekund." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Odblokowywanie szyfrowania..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Formatowanie systemu plików..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Aktywowanie pamiÄ™ci trwaÅ‚ej..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "KoÅ„czenie konfigurowania pamiÄ™ci trwaÅ‚ej..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2000,11 +2002,11 @@ msgstr "{app} (PID-y: {pids})" msgid "Change Passphrase" msgstr "ZmieÅ„ hasÅ‚o" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Bieżące hasÅ‚o jest nieprawidÅ‚owe" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Zmiana hasÅ‚a nie powiodÅ‚a siÄ™" diff --git a/po/pt_BR.po b/po/pt_BR.po index bf9b1bd8675..5164b02898e 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -38,7 +38,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-19 17:05+0000\n" "Last-Translator: Kaio <kaiod@riseup.net>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/tor/" @@ -471,7 +471,8 @@ msgstr "" "não há nenhuma atualização automática em nosso website para essa versão" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "seu dispositivo não foi criado usando uma imagem USB ou o Instalador Tails" @@ -846,19 +847,19 @@ msgstr "Continuar sem armazenamento persistente" msgid "Error unlocking Persistent Storage: {}" msgstr "Erro ao desbloquear armazenamento persistente: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Erro ao desbloquear armazenamento persistente: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Falha ao configurar seu Armazenamento Persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Erro ao ativar armazenamento persistente: {}" @@ -1146,7 +1147,8 @@ msgstr "A instalação do Tails falhou!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instalador Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1850,7 +1852,7 @@ msgstr "Estado do Tor" msgid "Open Onion Circuits" msgstr "Abrir Circuitos Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1859,37 +1861,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Corrigindo as permissões do volume persistente." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verificando sistema de arquivos..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Erro ao ativar armazenamento persistente: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Continuar sem armazenamento persistente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2010,12 +2012,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Alterar Senha" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "As senhas não coincidem" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Alterar Senha" diff --git a/po/pt_PT.po b/po/pt_PT.po index 09c7e084080..27378aef869 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-26 19:00+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Portuguese (Portugal) <https://hosted.weblate.org/projects/" @@ -435,7 +435,8 @@ msgstr "" "para esta versão" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "o seu dispositivo não foi criado utilizando uma imagem USB ou o Instalador " "do Tails" @@ -803,19 +804,19 @@ msgstr "Criar armazenamento permanente" msgid "Error unlocking Persistent Storage: {}" msgstr "Armazenamento _Permanente Encriptado" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Armazenamento _Permanente Encriptado" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Criar armazenamento permanente" @@ -1094,7 +1095,8 @@ msgstr "A instalação do Tails falhou!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails - Instalador" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1757,7 +1759,7 @@ msgstr "Estado do Tor" msgid "Open Onion Circuits" msgstr "Abrir Circuitos Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1766,37 +1768,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "A corrigir as permissões do volume permanente." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "A verificar o sistema de ficheiros..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Criar armazenamento permanente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Criar armazenamento permanente" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1919,12 +1921,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Mostrar Frase-Senha" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "As frases senha não coincidem" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Mostrar Frase-Senha" diff --git a/po/ru.po b/po/ru.po index 4fa49818c07..a0618dc88ff 100644 --- a/po/ru.po +++ b/po/ru.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-02 19:48+0000\n" "Last-Translator: \"Bucket B. Bucketman\" <healtheries_deceptions@simplelogin." "com>\n" @@ -488,7 +488,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "Ð´Ð»Ñ Ñтой верÑии недоÑтупно автоматичеÑкое обновление Ñ Ð½Ð°ÑˆÐµÐ³Ð¾ Ñайта" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "ваше уÑтройÑтво не было Ñоздано Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ USB-образа или инÑталлÑтора Tails" @@ -858,19 +859,19 @@ msgstr "Продолжить без ПоÑтоÑнного хранилища" msgid "Error unlocking Persistent Storage: {}" msgstr "Ошибка при разблокировании ПоÑтоÑнного хранилища: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Ошибка при обновлении ПоÑтоÑнного хранилища: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Ðе удалоÑÑŒ активировать некоторые функции ПоÑтоÑнного хранилища: {features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Ошибка при активации ПоÑтоÑнного хранилища: {}" @@ -1151,7 +1152,8 @@ msgstr "Ошибка уÑтановки Tails!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "УÑтановщик Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1853,7 +1855,7 @@ msgstr "Ð¡Ñ‚Ð°Ñ‚ÑƒÑ Tor" msgid "Open Onion Circuits" msgstr "Открытые Ñхемы луковицы" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1867,11 +1869,11 @@ msgstr "" "ПопытайтеÑÑŒ Ñнова поÑле того, как закроете ненужные Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ " "перезапуÑтите ÑиÑтему." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Создание раздела Ð´Ð»Ñ ÐŸÐ¾ÑтоÑнного хранилища…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1879,23 +1881,23 @@ msgstr "" "Ð˜Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ñ LUKS шифрованиÑ… Ваш компьютер может переÑтать отвечать на " "некоторое времÑ." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Разблокировка шифрованиÑ…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Форматирование файловой ÑиÑтемы…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Ðктивирование ПоÑтоÑнного хранилища…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Завершение наÑтройки ПоÑтоÑнного хранилища…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -2021,11 +2023,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Изменить пароль" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Текущий пароль неверен" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Изменение Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ðµ удалоÑÑŒ" diff --git a/po/si.po b/po/si.po index 5cae156d3d1..7b2fcd32a22 100644 --- a/po/si.po +++ b/po/si.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-03-05 10:37+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Sinhala <https://hosted.weblate.org/projects/tor/tails-gui/si/" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -697,18 +697,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -970,7 +970,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1577,7 +1577,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1586,33 +1586,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1728,11 +1728,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/sk.po b/po/sk.po index befe7b17efd..8d496962f7e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-01-25 11:39+0000\n" "Last-Translator: emma peel <emma.peel@riseup.net>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/tor/tails-gui/sk/" @@ -436,7 +436,8 @@ msgstr "" "aktualizácia" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "vaÅ¡e zariadenie nebolo vytvorené pomocou obrazu USB alebo Tails inÅ¡talatéru" @@ -779,19 +780,19 @@ msgstr "VytvoriÅ¥ Trvalé úložisko" msgid "Error unlocking Persistent Storage: {}" msgstr "Å ifrované _Trvalé úložisko" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Å ifrované _Trvalé úložisko" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "VytvoriÅ¥ Trvalé úložisko" @@ -1059,7 +1060,8 @@ msgstr "InÅ¡talácia Tails zlyhala!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails inÅ¡talátor" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1699,7 +1701,7 @@ msgstr "Tor Status" msgid "Open Onion Circuits" msgstr "OtvoriÅ¥ Onion Okruhy" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1708,37 +1710,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Korigujú sa oprávnenia trvalého oddielu." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Overujem súborový systém..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "VytvoriÅ¥ Trvalé úložisko" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "VytvoriÅ¥ Trvalé úložisko" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1861,12 +1863,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Ukáž heslo" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "PrÃstupové heslá sa nezhodujú" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Ukáž heslo" diff --git a/po/sl.po b/po/sl.po index dad33848b72..9728d44555d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Slovenian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -402,7 +402,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "ni avtomatske nadgradnje za to verzijo na maÅ¡em spletnem mestu" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -734,19 +734,19 @@ msgstr "Ustvarjanje %s nenehnega prikrivanja" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Ustvarjanje %s nenehnega prikrivanja" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -1013,7 +1013,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1629,7 +1629,7 @@ msgstr "Tor stanje" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1638,37 +1638,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Popravljanje dovoljenja trajnega nosilca." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Preverjanje datoteÄnega sistema" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Ustvarjanje %s nenehnega prikrivanja" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Ustvarjanje %s nenehnega prikrivanja" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1788,12 +1788,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Show Passphrase" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Gesla za kljuÄe se ne ujemajo" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Show Passphrase" diff --git a/po/sq.po b/po/sq.po index ca278a70e0c..71a5dda1092 100644 --- a/po/sq.po +++ b/po/sq.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-25 17:05+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Albanian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -422,7 +422,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "për këtë version s’ka të gatshëm përmirësim automatik nga sajti ynë" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "pajisja juaj s’qe krijuar duke përdorur një pamje USB ose Instaluesin e Tails" @@ -792,19 +793,19 @@ msgstr "Vazhdo Pa Depozitë të Qëndrueshme" msgid "Error unlocking Persistent Storage: {}" msgstr "Gabim në shkyçje Depozite të Qëndrueshme: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Gabim në shkyçje Depozite të Qëndrueshme: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "S’u arrit të formësohej Depozita juaj e Përhershme" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Gabim në aktivizim Depozite të Qëndrueshme: {}" @@ -1091,7 +1092,8 @@ msgstr "Instalimi i Tails dështoi!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Instalues Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1796,7 +1798,7 @@ msgstr "Gjendje Tor-i" msgid "Open Onion Circuits" msgstr "Qarqe Onion të Hapët" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1805,37 +1807,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Po ndreqen leje të vëllimit të qëndrueshëm." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Po verifikohet sistem kartelash…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Gabim në aktivizim Depozite të Qëndrueshme: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Vazhdo Pa Depozitë të Qëndrueshme" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1956,12 +1958,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Ndryshoni Frazëkalimin" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Frazëkalimet s’përputhen" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Ndryshoni Frazëkalimin" diff --git a/po/sr.po b/po/sr.po index 65ef6ab39dc..9cbddbc0040 100644 --- a/po/sr.po +++ b/po/sr.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Serbian <https://hosted.weblate.org/projects/tor/tails-gui/sr/" @@ -414,7 +414,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "Na naÅ¡em sajtu nije dostupna automatska nadogradnja za ovu verziju." #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -753,19 +753,19 @@ msgstr "Pravim %sMB trajni sloj" msgid "Error unlocking Persistent Storage: {}" msgstr "GreÅ¡ka pri otkljuÄavanju prostornog medija" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "GreÅ¡ka pri otkljuÄavanju prostornog medija" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -1030,7 +1030,8 @@ msgstr "Instalacija Tails-a je neuspeÅ¡na!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails instaler" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1650,7 +1651,7 @@ msgstr "Status Tora" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1659,37 +1660,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Ispravljanje dozvola trajnog prostora." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Filesystem verifikacija..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Pravim %sMB trajni sloj" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Pravim %sMB trajni sloj" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1809,12 +1810,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Прикажи лозинку" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Lozinke se ne podudaraju" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Прикажи лозинку" diff --git a/po/sv.po b/po/sv.po index 2308a5b0e48..43e38998980 100644 --- a/po/sv.po +++ b/po/sv.po @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/tor/tails-gui/sv/" @@ -436,7 +436,8 @@ msgstr "" "version" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "din enhet skapades inte med hjälp av en USB-bild eller Tails Installer" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -814,19 +815,19 @@ msgstr "Skapa bestÃ¥ende lagring" msgid "Error unlocking Persistent Storage: {}" msgstr "Krypterad _bestÃ¥ende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Krypterad _bestÃ¥ende lagring" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Det gick inte att konfigurera din bestÃ¥ende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "Skapa bestÃ¥ende lagring" @@ -1102,7 +1103,7 @@ msgstr "Tails installation misslyckades!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 #, fuzzy -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "Tails Installer" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1796,7 +1797,7 @@ msgstr "Tor-status" msgid "Open Onion Circuits" msgstr "Öppna onion-kretsar" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1805,37 +1806,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Rättar till behörigheterna pÃ¥ den bestÃ¥ende lagringen." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Verifierar filsystem…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Skapa bestÃ¥ende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Skapa bestÃ¥ende lagring" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1958,12 +1959,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Visa lösenfras" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Lösenorden matchar inte" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Visa lösenfras" diff --git a/po/sw.po b/po/sw.po index bb9a1cc561d..9ca26c5aeec 100644 --- a/po/sw.po +++ b/po/sw.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-08-13 12:50+0000\n" "Last-Translator: Bobkevin Shoo <bobkshoo@gmail.com>\n" "Language-Team: Swahili <https://hosted.weblate.org/projects/tor/tails-gui/sw/" @@ -416,7 +416,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "Hakuna maboresho ya mojakwamoja katika toleo hili la tovuti" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "Kifaa chako hakikuundwa ili uweze kutumiamfumo wa USB au kisaniki Talls" @@ -788,19 +789,19 @@ msgstr "Endelea bila Persistent Storage" msgid "Error unlocking Persistent Storage: {}" msgstr "Dosari katika kufungulia Persistent Storage: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "Dosari katika kufungulia Persistent Storage: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Imeshindwa kusanidi Persistent Storage yako" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Dosari katika kuhifadhi Persistent Storage: {}" @@ -1088,7 +1089,8 @@ msgstr "Usakinishaji wa Tails haujafanikiwa!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Kisanikishi cha siri" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1783,7 +1785,7 @@ msgstr "Hali ya Tor" msgid "Open Onion Circuits" msgstr "ungua sakiti ya onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1792,37 +1794,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "Tengeneza Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "Inahakikisha mfumo wa faili..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "Dosari katika kuhifadhi Persistent Storage: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "Endelea bila Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1943,12 +1945,12 @@ msgstr "" msgid "Change Passphrase" msgstr "Badili nenosiri" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "Nenosiri halifanani" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "Badili nenosiri" diff --git a/po/ta.po b/po/ta.po index 853846e0326..638fda85ce9 100644 --- a/po/ta.po +++ b/po/ta.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Tamil <https://hosted.weblate.org/projects/tor/tails-gui/ta/" @@ -389,7 +389,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -706,19 +706,19 @@ msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µ msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯" @@ -984,7 +984,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1595,7 +1595,7 @@ msgstr "Tor நிலைமை" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1604,36 +1604,36 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "_ஒரேநிலை சேமிபà¯à®ªà®•தà¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1755,11 +1755,11 @@ msgstr "" msgid "Change Passphrase" msgstr "கடவà¯à®šà¯à®šà¯†à®¾à®±à¯à®±à¯†à®¾à®Ÿà®°à¯:" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "கடவà¯à®šà¯à®šà¯†à®¾à®±à¯à®±à¯†à®¾à®Ÿà®°à¯:" diff --git a/po/tails.pot b/po/tails.pot index eda2c36cde9..bb4816929e0 100644 --- a/po/tails.pot +++ b/po/tails.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+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" @@ -381,7 +381,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -695,18 +695,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -968,7 +968,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1575,7 +1575,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1584,33 +1584,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1725,11 +1725,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/te.po b/po/te.po index 7acca08207d..5d13e411b76 100644 --- a/po/te.po +++ b/po/te.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Telugu <https://hosted.weblate.org/projects/tor/tails-gui/te/" @@ -383,7 +383,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -697,18 +697,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -970,7 +970,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1577,7 +1577,7 @@ msgstr "" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1586,33 +1586,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1727,11 +1727,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/th.po b/po/th.po index 97dbd693068..0a32778f57a 100644 --- a/po/th.po +++ b/po/th.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Thai <https://hosted.weblate.org/projects/tor/tails-gui/th/>\n" @@ -405,7 +405,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "ไม่พบà¸à¸²à¸£à¸à¸±à¸žà¹€à¸à¸£à¸”à¸à¸±à¸•โนมัติจาà¸à¹€à¸§à¹‡à¸šà¹„ซต์ขà¸à¸‡à¹€à¸£à¸²à¸ªà¸³à¸«à¸£à¸±à¸šà¹€à¸§à¸à¸£à¹Œà¸Šà¸±à¹ˆà¸™à¸™à¸µà¹‰" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "à¸à¸¸à¸›à¸à¸£à¸“์คุณไม่ได้สร้างด้วยà¹à¸—่ง USB หรืภตัวติดตั้ง Tails" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -755,19 +756,19 @@ msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Pers msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Persistent Storage" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 #, fuzzy msgid "Error activating Persistent Storage: {}" msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Persistent Storage" @@ -1031,7 +1032,8 @@ msgstr "à¸à¸²à¸£à¸•ิดตั้ง Tails ล้มเหลว!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "ตัวติดตั้ง Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1643,7 +1645,7 @@ msgstr "สถานะ Tor" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1652,37 +1654,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "à¸à¸³à¸¥à¸±à¸‡à¸•รวจสà¸à¸šà¸£à¸°à¸šà¸šà¹à¸Ÿà¹‰à¸¡..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "_สร้างพื้นที่เà¸à¹‡à¸šà¸‚้à¸à¸¡à¸¹à¸¥ Persistent Storage" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1805,12 +1807,12 @@ msgstr "" msgid "Change Passphrase" msgstr "à¹à¸ªà¸”งวลีรหัสผ่าน" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "วลีผ่านไม่ตรงà¸à¸±à¸™" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "à¹à¸ªà¸”งวลีรหัสผ่าน" diff --git a/po/tr.po b/po/tr.po index bc3a461d0d6..d40086a2001 100644 --- a/po/tr.po +++ b/po/tr.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-06-23 20:35+0000\n" "Last-Translator: Kaya Zeren <kayazeren@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/tor/tails-gui/tr/" @@ -455,7 +455,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "sitemizde bu sürüm için otomatik güncelleme desteÄŸi yok" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "aygıtnız bir USB kalıbı ya da Tails kurucu ile oluÅŸturulmamış" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -824,19 +825,19 @@ msgstr "Kalıcı depolama birimi olmadan baÅŸla" msgid "Error unlocking Persistent Storage: {}" msgstr "Kalıcı depolama biriminin kilidi açılırken sorun çıktı: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Kalıcı depolama birimi yükseltilirken sorun çıktı: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Kalıcı depolama biriminizin bazı özellikleri yapılandırılamadı: {features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Kalıcı depolama birimi etkinleÅŸtirilirken sorun çıktı: {}" @@ -1117,7 +1118,8 @@ msgstr "Tails kurulumu tamamlanamadı!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails kurucu" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1818,7 +1820,7 @@ msgstr "Tor durumu" msgid "Open Onion Circuits" msgstr "Açık onion devreleri" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1832,11 +1834,11 @@ msgstr "" "Bazı uygulamaları kapattıktan ya da yeniden baÅŸlattıkran sonra yeniden " "deneyin." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Kalıcı depolama birimi için bir bölüm oluÅŸturuluyor..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1844,23 +1846,23 @@ msgstr "" "LUKS ÅŸifrelemesi baÅŸlatılıyor... Bilgisayar bir kaç saniye yanıt vermeyi " "durdurabilir." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Åžifreleme kilidi açılıyor..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Dosya sistemi biçimlendiriliyor..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Kalıcı depolama birimi etkinleÅŸtiriliyor..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Kalıcı depolama biriminin kurulumu tamamlanıyor..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1985,11 +1987,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Parolayı deÄŸiÅŸtir" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Geçerli parola ifadesi doÄŸru deÄŸil" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Parola ifadesi deÄŸiÅŸtirilemedi" diff --git a/po/uk.po b/po/uk.po index f8d88c4e092..0ecff09e899 100644 --- a/po/uk.po +++ b/po/uk.po @@ -20,7 +20,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-06-23 20:35+0000\n" "Last-Translator: Ihor Hordiichuk <igor_ck@outlook.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -442,7 +442,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "Ð´Ð»Ñ Ñ†Ñ–Ñ”Ñ— верÑÑ–Ñ— програми немає автоматичного Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð½Ð°ÑˆÐ¾Ð³Ð¾ Ñайту" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "ваш приÑтрій не було Ñтворено за допомогою образу USB або Tails Installer" @@ -811,18 +812,18 @@ msgstr "Розпочати без ПоÑтійного Ñховища" msgid "Error unlocking Persistent Storage: {}" msgstr "Помилка Ñ€Ð¾Ð·Ð±Ð»Ð¾ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñтійного Ñховища: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Помилка Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐŸÐ¾Ñтійного Ñховища: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "Ðе вдалоÑÑ Ð°ÐºÑ‚Ð¸Ð²ÑƒÐ²Ð°Ñ‚Ð¸ деÑкі функції ПоÑтійного Сховища: {features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Помилка Ð°ÐºÑ‚Ð¸Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñтійного Ñховища: {}" @@ -1102,7 +1103,8 @@ msgstr "Ðе вдалоÑÑŒ уÑтановити Tails!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "ИнÑталÑтор Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1799,7 +1801,7 @@ msgstr "Стан Tor" msgid "Open Onion Circuits" msgstr "Відкриті Ñхеми Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1808,33 +1810,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð´Ñ–Ð»Ñƒ Ð´Ð»Ñ ÐŸÐ¾Ñтійного Ñховища..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Ð¤Ð¾Ñ€Ð¼Ð°Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð°Ð¹Ð»Ð¾Ð²Ð¾Ñ— ÑиÑтеми..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "ÐÐºÑ‚Ð¸Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñтійного Ñховища..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Ð—Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñтійного Ñховища..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1949,11 +1951,11 @@ msgstr "" msgid "Change Passphrase" msgstr "Змінити парольну фразу" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Поточна парольна фраза неправильна" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Ðе вдалоÑÑ Ð·Ð¼Ñ–Ð½Ð¸Ñ‚Ð¸ парольну фразу" diff --git a/po/ur.po b/po/ur.po index c909883e437..139f39dc33c 100644 --- a/po/ur.po +++ b/po/ur.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Urdu <https://hosted.weblate.org/projects/tor/tails-gui/ur/>\n" @@ -382,7 +382,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -697,18 +697,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -970,7 +970,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1581,7 +1581,7 @@ msgstr "ٹار اسٹیٹس" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1590,33 +1590,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1733,11 +1733,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/uz.po b/po/uz.po index d76ee9d0a7d..09c13f51d71 100644 --- a/po/uz.po +++ b/po/uz.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2022-02-07 09:25+0000\n" "Last-Translator: Transifex Bot <>\n" "Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n" @@ -376,7 +376,7 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -691,18 +691,18 @@ msgstr "" msgid "Error unlocking Persistent Storage: {}" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "" @@ -964,7 +964,7 @@ msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +msgid "Tails Cloner" msgstr "" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1571,7 +1571,7 @@ msgstr "Tor holati" msgid "Open Onion Circuits" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1580,33 +1580,33 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1722,11 +1722,11 @@ msgstr "" msgid "Change Passphrase" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "" diff --git a/po/vi.po b/po/vi.po index 9b0244c344f..f367df7934e 100644 --- a/po/vi.po +++ b/po/vi.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Vietnamese <https://hosted.weblate.org/projects/tor/tails-gui/" @@ -429,7 +429,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "không có sẵn việc tá»± động nâng cấp từ website cho phiên bản nà y" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "" "thiết bị cá»§a bạn đã không được khởi tạo bằng cách sá» dụng ổ đĩa image USB " "hoặc trình cà i đặt Tails Installer" @@ -800,20 +801,20 @@ msgstr "Khởi động mà Không có á»” đĩa lưu trữ Bá»n vững" msgid "Error unlocking Persistent Storage: {}" msgstr "Có lá»—i xảy ra khi Ä‘ang mở khoá á»” đĩa lưu trữ Bá»n vững: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "Có lá»—i xảy ra khi Ä‘ang nâng cấp á»” đĩa lưu trữ Bá»n vững: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "" "Äã thất bại khi kÃch hoạt má»™t số tÃnh năng cá»§a á»” đĩa lưu trữ Bá»n vÅ©ng: " "{features}." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "Có lá»—i xảy ra khi Ä‘ang kÃch hoạt á»” đĩa lưu trữ Bá»n vững: {}" @@ -1097,7 +1098,8 @@ msgstr "Việc cà i đặt Tails đã thất bại!" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Trình cà i đặt Tails" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1804,7 +1806,7 @@ msgstr "Trạng thái Tor" msgid "Open Onion Circuits" msgstr "Mở các mạch nối Onion" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1817,11 +1819,11 @@ msgstr "" "\n" "Hãy thá» lại sau khi đóng má»™t số các ứng dụng hoặc khởi động lại máy." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "Tạo ra má»™t phân vùng bá»™ nhá»› cho á»” đĩa lưu trữ Bá»n vững..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." @@ -1829,23 +1831,23 @@ msgstr "" "Äang khởi tạo mã hoá LUKS... Máy tÃnh có thể sẽ dừng phản hồi trong má»™t và i " "giây." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "Äang mở khoá mã hoá..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "Äang Format hệ thống file táºp tin..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "Äang kÃch hoạt á»” đĩa lưu trữ Bá»n vững..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "Äang hoà n tất cà i đặt thiết láºp á»” đĩa lưu trữ Bá»n vững..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1972,11 +1974,11 @@ msgstr "{app} (PIDs: {pids})" msgid "Change Passphrase" msgstr "Thay đổi cụm máºt khẩu" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "Cụm máºt khẩu hiện tại là không chÃnh xác" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "Việc thay đổi cụm máºt khẩu đã thất bại" diff --git a/po/zh_CN.po b/po/zh_CN.po index efa577cd652..35ace01fa13 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -46,7 +46,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-08-05 08:03+0000\n" "Last-Translator: ff98sha <ff98sha@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/tor/" @@ -444,7 +444,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "对æ¤ç‰ˆæœ¬æˆ‘们的网站没有自动å‡çº§å¯ç”¨" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "您的设备上没有创建 USB é•œåƒæˆ– Tails 安装程åº" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -805,18 +806,18 @@ msgstr "åœ¨æ²¡æœ‰å¼€å¯æŒä¹…å˜å‚¨çš„æƒ…况下继ç»" msgid "Error unlocking Persistent Storage: {}" msgstr "åœ¨è§£é”æŒä¹…å˜å‚¨æ—¶å‡ºé”™ï¼š{}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 msgid "Error upgrading Persistent Storage: {}" msgstr "在å‡çº§æŒä¹…å˜å‚¨æ—¶å‡ºé”™ï¼š{}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "在é…ç½®æŒä¹…å˜å‚¨æ—¶å‡ºé”™ï¼š{features}。" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "在激活æŒä¹…å˜å‚¨æ—¶å‡ºé”™ï¼š{}" @@ -1082,7 +1083,8 @@ msgstr "Tails 安装失败ï¼" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails 安装程åº" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1750,7 +1752,7 @@ msgstr "Tor 状æ€" msgid "Open Onion Circuits" msgstr "打开 Onion 线路" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1763,33 +1765,33 @@ msgstr "" "\n" "请在关é—一些应用或é‡å¯åŽé‡è¯•。" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 msgid "Creating a partition for the Persistent Storage..." msgstr "æ£åœ¨ä¸ºæŒä¹…å˜å‚¨åˆ›å»ºæ–°åˆ†åŒº..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "æ£åœ¨åˆå§‹åŒ– LUKS åŠ å¯†...计算机å¯èƒ½ä¼šåœæ¢å“åº”å‡ ç§’é’Ÿã€‚" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "æ£åœ¨è§£å¯†..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 msgid "Formatting the file system..." msgstr "æ£åœ¨æ ¼å¼åŒ–文件系统..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 msgid "Activating the Persistent Storage..." msgstr "æ£åœ¨æ¿€æ´»æŒä¹…å˜å‚¨..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 msgid "Finishing setting up the Persistent Storage..." msgstr "æ£åœ¨å®ŒæˆæŒä¹…å˜å‚¨çš„设置..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1911,11 +1913,11 @@ msgstr "{app}(PID:{pids})" msgid "Change Passphrase" msgstr "更改密ç çŸè¯" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 msgid "The current passphrase is incorrect" msgstr "密ç è¯ç»„ä¸åŒ¹é…" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 msgid "Changing the passphrase failed" msgstr "åœ¨æ›´æ”¹å¯†ç æ—¶å¤±è´¥" diff --git a/po/zh_TW.po b/po/zh_TW.po index 4aa7d4f7b94..9bbc7e29494 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Tor Project\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-06 10:11+0200\n" +"POT-Creation-Date: 2023-09-04 09:24+0200\n" "PO-Revision-Date: 2023-07-21 16:06+0000\n" "Last-Translator: Anonymous <noreply@weblate.org>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" @@ -409,7 +409,8 @@ msgid "no automatic upgrade is available from our website for this version" msgstr "æ¤ç‰ˆæœ¬åœ¨æˆ‘們的網站上沒有å¯ç”¨çš„自動å‡ç´š" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:364 -msgid "your device was not created using a USB image or Tails Installer" +#, fuzzy +msgid "your device was not created using a USB image or Tails Cloner" msgstr "您的è£ç½®æœªä½¿ç”¨ USB æ˜ åƒæª”或 Tails 安è£ç¨‹å¼å»ºç«‹" #: config/chroot_local-includes/usr/src/iuk/lib/Tails/IUK/Frontend.pm:369 @@ -772,19 +773,19 @@ msgstr "åœ¨æœªé–‹å•Ÿæ°¸ä¹…æ€§å„²å˜æƒ…æ³ä¸‹ç¹¼çºŒ" msgid "Error unlocking Persistent Storage: {}" msgstr "解鎖永久性儲å˜å‡ºéŒ¯: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:124 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:126 #, fuzzy msgid "Error upgrading Persistent Storage: {}" msgstr "解鎖永久性儲å˜å‡ºéŒ¯: {}" #. Translators: Don't translate {features}, it's a placeholder #. and will be replaced. -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:146 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 #, fuzzy, python-brace-format msgid "Failed to activate some features of the Persistent Storage: {features}." msgstr "無法調置您的永久儲å˜" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:151 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py:156 msgid "Error activating Persistent Storage: {}" msgstr "å•Ÿç”¨æ°¸ä¹…æ€§å„²å˜æ™‚出錯: {}" @@ -1054,7 +1055,8 @@ msgstr "Tails 系統安è£å¤±æ•—ï¼" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:296 #: ../config/chroot_local-includes/usr/share/applications/tails-installer.desktop.in.h:1 -msgid "Tails Installer" +#, fuzzy +msgid "Tails Cloner" msgstr "Tails 安è£ç¨‹å¼" #: config/chroot_local-includes/usr/lib/python3/dist-packages/tails_installer/gui.py:339 @@ -1722,7 +1724,7 @@ msgstr "Tor 狀態" msgid "Open Onion Circuits" msgstr "開啟 Onion è¿´è·¯" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:319 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:315 #, python-brace-format msgid "" "Only {available_memory} KiB of memory is available, need at least " @@ -1731,37 +1733,37 @@ msgid "" "Try again after closing some applications or rebooting." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:331 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:327 #, fuzzy msgid "Creating a partition for the Persistent Storage..." msgstr "ä¿®æ£æ°¸ä¹…性ç£ç¢Ÿå€çš„å˜å–權é™ã€‚" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:351 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:347 msgid "" "Initializing the LUKS encryption... The computer might stop responding for a " "few seconds." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:373 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:369 msgid "Unlocking the encryption..." msgstr "" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:381 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:377 #, fuzzy msgid "Formatting the file system..." msgstr "æ£åœ¨é©—è‰æª”案系統..." -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:396 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:392 #, fuzzy msgid "Activating the Persistent Storage..." msgstr "å•Ÿç”¨æ°¸ä¹…æ€§å„²å˜æ™‚出錯: {}" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:401 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:397 #, fuzzy msgid "Finishing setting up the Persistent Storage..." msgstr "åœ¨æœªé–‹å•Ÿæ°¸ä¹…æ€§å„²å˜æƒ…æ³ä¸‹ç¹¼çºŒ" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:611 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps/device.py:607 msgid "" "Can't unmount Persistent Storage, some process is still using it. Please " "close all applications that could be accessing it and try again. If that " @@ -1882,12 +1884,12 @@ msgstr "" msgid "Change Passphrase" msgstr "變更通關密語" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:83 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:85 #, fuzzy msgid "The current passphrase is incorrect" msgstr "通關密語ä¸ç›¸ç¬¦" -#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:92 +#: config/chroot_local-includes/usr/lib/python3/dist-packages/tps_frontend/change_passphrase_dialog.py:94 #, fuzzy msgid "Changing the passphrase failed" msgstr "變更通關密語" -- GitLab From fa5142f0c4e587314d01f15acb491802e937f4c6 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 07:42:02 +0000 Subject: [PATCH 102/119] Update changelog for 5.17. --- debian/changelog | 194 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 192 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ea0b350f7c6..76e51015f30 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,198 @@ tails (5.17) UNRELEASED; urgency=medium - * Dummy entry for next release. + * Upgrade Thunderbird to 1:102.15.0-1~deb11u1 - -- boyska <boyska@riseup.net> Tue, 15 Aug 2023 13:05:46 +0200 + * tps: make is_upgraded() require a single upgraded keyslot (tails/tails!1209) + + Closes issues: + - Upgrading Persistent Storage times out on some systems and displays an error in + the Welcome Screen but succeeds in the background (tails/tails#19728) + + Commits: + - tps: revert commented out code that was committed by mistake + - Enable the 19728-tps-upgrade-check-vs-corrupt-keys APT overlay (refs: + tails/tails#19728). + - tps: drop parsing of luksDump and use JSON instead + - Avoid variables named "match" which is a Python >= 3.10 keyword + - tps: assign variable to regexp for readability + - Update comment. + - Welcome screen: bump timeout for activating persistence from 2m to 5m + - Welcome Screen: drop timeout for upgrading the persistent storage + - tps: redact sensitive information from luksDump in the logs + - tps: use more redable re.MULTILINE instead of re.M alias + - tps: make is_upgraded() require a single upgraded keyslot + + * Upgrade Tor Browser to 12.5.3 (tails/tails!1238) + + Closes issues: + - Remove obsolete config/chroot_local-includes/usr/share/live/config/xserver- + xorg/*.ids (tails/tails#19330) + + Commits: + - Fetch Tor Browser from our own archive + - Upgrade Tor Browser to 12.5.3-build1 + + * Test suite: capture needed-package-updates's output by on failure + (tails/tails!1236) + + Commits: + - Tets suite: capture needed-package-updates's output by on failure + + * Enable all available printers. (tails/tails!1234) + + Commits: + - Enable all available printers. + + * Test suite: make changing Persistent Storage passphrase, and deleting + Persistent Storage, more robust (tails/tails!1231) + + Closes issues: + - Flaky tests: Changing the Persistent Storage passphrase, deleting Persistent + Storage (tails/tails#19950) + + Commits: + - Add comment + - Test suite: make deleting the Persistent Storage more robust + - Test suite: make changing Persistent Storage passphrase more robust + + * Remove manual manipulation of env of start-systemd-desktop-target + (tails/tails!1229) + + Closes issues: + - Simplify start-systemd-desktop-target (tails/tails#16968) + + Commits: + - Remove manual manipulation of env of start-systemd-desktop-target + + * Install printer-driver-brlaser (tails/tails!1228) + + Closes issues: + - Install printer-driver-brlaser (tails/tails#18254) + + Commits: + - Install printer-driver-brlaser + + * Remove the plymouth.ignore-udev hack (tails/tails!1224) + + Closes issues: + - Check if we can get rid of the plymouth.ignore-udev hack in tails-gdm-failed- + to-start.service (tails/tails#16964) + + Commits: + - Remove the plymouth.ignore-udev hack. + + * Resolve "Document how to deal with virt-viewer's CSD" (tails/tails!1223) + + Closes issues: + - Document how to deal with virt-viewer's CSD (tails/tails#19941) + + Commits: + - Make sure Tails APT signing key is trusted + - Update apt to ensure that apt-cache policy will present a candidate + - Test suite: check that virt-viewer is not affected by tails/tails#19064 + - Set up automated test suite so it is not affected by tails/tails#19064 + + * Display binary package names if not everything needs an update + (tails/tails!1220) + + Closes issues: + - Prevent version mismatches among binary packages from src:linux + (tails/tails#16375) + + Commits: + - fix loop over issues + - Reformat with black + - Display binary package names· if not everything needs an update tails#16375 + + * Misc post-release fixes (tails/tails!1219) + + Closes issues: + - Lack of regex support in Dogtail's child method breaks Thunderbird tests + (tails/tails#19928) + + Commits: + - Add comment + - Rewrite regexp to fit in Dogtail syntax + - test suite supports regexp + - workaround test hidden in test suite + - locale-independent output for date + + * RM doc updates (tails/tails!1218) + + Commits: + - Apply 1 suggestion(s) to 1 file(s) + - twitter credentials explained + - expected timing updated + - follow links! + - list possible stages in rm-config help + - explicitly say which stage we're in now + - fix python strings + - black reformatting + - standardize locale + + * GitLab CI: allow forcing to run a pipeline by setting $CI_FORCE_RUN + (tails/tails!1214) + + Commits: + - GitLab CI: allow forcing to run a pipeline by setting $CI_FORCE_RUN + + * Rename Tails Installer as Tails Cloner (tails/tails!1200) + + Closes issues: + - Rename Tails Installer as Tails Cloner (tails/tails#16907) + + Commits: + - Rename Tails Installer as Tails Cloner + + * Add script to detect needed package updates from Debian (tails/tails!1155) + + Closes issues: + - Prevent version mismatches among binary packages from src:linux + (tails/tails#16375) + - Track security updates during the Tails code freeze (tails/tails#14728) + + Commits: + - Release process: add special mention for the needed package update test + - Print error instead of trigger an exception. + - Use highest package version if multiple are available. + - Reformat with black + - Test suite setup doc: update dependencies + - Fix typo + - Use the Ultimate Debian Database (UDD) directly. + - Lint + - Test suite: document new dependencies + - Test suite: ensure frozen packages are up-to-date + - Needed package update: add exception + - APT: switch to pinning via source package when relevant + - Fix logic to detect an issue correctly. + - Reformat with black + - Lint + - make mypy happy again. + - Fix logic to return errcode 0 if no issue is shown. + - move SUITES into part of Madison. + - make madison a local variable + - More linting + - Preserve type + - Have default value be the correct type + - Reformat with black + - Use consistent terminology + - Start linting new script + - Sort imports + - Remove unused import + - Fix typo + - Update comments + - use qa.debian.org Madison API + - restructure the config file to handle also distribution. + - Simplify logic. + - Fix type annotations. + - Always query stable-security's version to and request update.. + - Query also stable-secuirty for updates. + - We should first look for the source, as we have only query source package + names. + - Only add metadata, when available. + - Add script to detect needed package updates from Debian + + -- Tails developers <tails@boum.org> Mon, 04 Sep 2023 07:41:12 +0000 tails (5.16.1) unstable; urgency=medium -- GitLab From 36381bf10410882e6aef4d98e3b94abd3dd37938 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 07:43:36 +0000 Subject: [PATCH 103/119] Update version and date for 5.17. --- wiki/src/inc/stable_amd64_date.html | 2 +- wiki/src/inc/stable_amd64_img_gpg_verify.html | 2 +- wiki/src/inc/stable_amd64_img_sig_url.html | 2 +- wiki/src/inc/stable_amd64_img_torrent_url.html | 2 +- wiki/src/inc/stable_amd64_img_url.html | 2 +- wiki/src/inc/stable_amd64_img_url_https.html | 2 +- wiki/src/inc/stable_amd64_iso_gpg_verify.html | 2 +- wiki/src/inc/stable_amd64_iso_sig_url.html | 2 +- wiki/src/inc/stable_amd64_iso_torrent_url.html | 2 +- wiki/src/inc/stable_amd64_iso_url.html | 2 +- wiki/src/inc/stable_amd64_iso_url_https.html | 2 +- wiki/src/inc/stable_amd64_version.html | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/wiki/src/inc/stable_amd64_date.html b/wiki/src/inc/stable_amd64_date.html index 740e8f4d759..413b437ce2c 100644 --- a/wiki/src/inc/stable_amd64_date.html +++ b/wiki/src/inc/stable_amd64_date.html @@ -1 +1 @@ -2023-08-15 \ No newline at end of file +2023-09-05 \ No newline at end of file diff --git a/wiki/src/inc/stable_amd64_img_gpg_verify.html b/wiki/src/inc/stable_amd64_img_gpg_verify.html index 96b29ddfadb..f2ae6128d8c 100644 --- a/wiki/src/inc/stable_amd64_img_gpg_verify.html +++ b/wiki/src/inc/stable_amd64_img_gpg_verify.html @@ -1 +1 @@ -TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.16.1.img.sig tails-amd64-5.16.1.img +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.17.img.sig tails-amd64-5.17.img diff --git a/wiki/src/inc/stable_amd64_img_sig_url.html b/wiki/src/inc/stable_amd64_img_sig_url.html index 942a7695b8c..15fd29b8e06 100644 --- a/wiki/src/inc/stable_amd64_img_sig_url.html +++ b/wiki/src/inc/stable_amd64_img_sig_url.html @@ -1 +1 @@ -https://tails.net/torrents/files/tails-amd64-5.16.1.img.sig +https://tails.net/torrents/files/tails-amd64-5.17.img.sig diff --git a/wiki/src/inc/stable_amd64_img_torrent_url.html b/wiki/src/inc/stable_amd64_img_torrent_url.html index dd4dc824f43..337e43c884d 100644 --- a/wiki/src/inc/stable_amd64_img_torrent_url.html +++ b/wiki/src/inc/stable_amd64_img_torrent_url.html @@ -1 +1 @@ -https://tails.net/torrents/files/tails-amd64-5.16.1.img.torrent +https://tails.net/torrents/files/tails-amd64-5.17.img.torrent diff --git a/wiki/src/inc/stable_amd64_img_url.html b/wiki/src/inc/stable_amd64_img_url.html index 8ad53532b75..a09bd201a0e 100644 --- a/wiki/src/inc/stable_amd64_img_url.html +++ b/wiki/src/inc/stable_amd64_img_url.html @@ -1 +1 @@ -https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.img +https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.img diff --git a/wiki/src/inc/stable_amd64_img_url_https.html b/wiki/src/inc/stable_amd64_img_url_https.html index b363aa573cb..cc05996ee5c 100644 --- a/wiki/src/inc/stable_amd64_img_url_https.html +++ b/wiki/src/inc/stable_amd64_img_url_https.html @@ -1 +1 @@ -https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.img +https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.17/tails-amd64-5.17.img diff --git a/wiki/src/inc/stable_amd64_iso_gpg_verify.html b/wiki/src/inc/stable_amd64_iso_gpg_verify.html index f8dbaa7f9c9..f08553c5e1e 100644 --- a/wiki/src/inc/stable_amd64_iso_gpg_verify.html +++ b/wiki/src/inc/stable_amd64_iso_gpg_verify.html @@ -1 +1 @@ -TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.16.1.iso.sig tails-amd64-5.16.1.iso +TZ=UTC gpg --no-options --keyid-format long --verify tails-amd64-5.17.iso.sig tails-amd64-5.17.iso diff --git a/wiki/src/inc/stable_amd64_iso_sig_url.html b/wiki/src/inc/stable_amd64_iso_sig_url.html index 3070eda87c7..fbf4f9583ec 100644 --- a/wiki/src/inc/stable_amd64_iso_sig_url.html +++ b/wiki/src/inc/stable_amd64_iso_sig_url.html @@ -1 +1 @@ -https://tails.net/torrents/files/tails-amd64-5.16.1.iso.sig +https://tails.net/torrents/files/tails-amd64-5.17.iso.sig diff --git a/wiki/src/inc/stable_amd64_iso_torrent_url.html b/wiki/src/inc/stable_amd64_iso_torrent_url.html index 77c44c94992..a614e336f1d 100644 --- a/wiki/src/inc/stable_amd64_iso_torrent_url.html +++ b/wiki/src/inc/stable_amd64_iso_torrent_url.html @@ -1 +1 @@ -https://tails.net/torrents/files/tails-amd64-5.16.1.iso.torrent +https://tails.net/torrents/files/tails-amd64-5.17.iso.torrent diff --git a/wiki/src/inc/stable_amd64_iso_url.html b/wiki/src/inc/stable_amd64_iso_url.html index 75cea5292c5..b154a71e688 100644 --- a/wiki/src/inc/stable_amd64_iso_url.html +++ b/wiki/src/inc/stable_amd64_iso_url.html @@ -1 +1 @@ -https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso +https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso diff --git a/wiki/src/inc/stable_amd64_iso_url_https.html b/wiki/src/inc/stable_amd64_iso_url_https.html index c73f3d89bc9..58e383ace91 100644 --- a/wiki/src/inc/stable_amd64_iso_url_https.html +++ b/wiki/src/inc/stable_amd64_iso_url_https.html @@ -1 +1 @@ -https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso +https://mirrors.wikimedia.org/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso diff --git a/wiki/src/inc/stable_amd64_version.html b/wiki/src/inc/stable_amd64_version.html index 04218f11c37..837bcbc6b5c 100644 --- a/wiki/src/inc/stable_amd64_version.html +++ b/wiki/src/inc/stable_amd64_version.html @@ -1 +1 @@ -5.16.1 +5.17 -- GitLab From 0dd8c0b9b0c9278f5e9ce61d88180683e5e7dce1 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 07:57:02 +0000 Subject: [PATCH 104/119] Update website PO files. --- ...acknowledgments_and_similar_projects.de.po | 6 +- ...acknowledgments_and_similar_projects.es.po | 6 +- ...acknowledgments_and_similar_projects.fr.po | 6 +- ...acknowledgments_and_similar_projects.it.po | 6 +- ...acknowledgments_and_similar_projects.pt.po | 6 +- ...acknowledgments_and_similar_projects.ru.po | 6 +- wiki/src/doc/about/features.de.po | 4 +- wiki/src/doc/about/features.es.po | 4 +- wiki/src/doc/about/features.fr.po | 4 +- wiki/src/doc/about/features.it.po | 4 +- wiki/src/doc/about/features.pt.po | 12 +- wiki/src/doc/about/features.ru.po | 4 +- wiki/src/doc/about/finances.de.po | 490 +++++++++--------- wiki/src/doc/about/finances.es.po | 490 +++++++++--------- wiki/src/doc/about/finances.fr.po | 490 +++++++++--------- wiki/src/doc/about/finances.it.po | 490 +++++++++--------- wiki/src/doc/about/finances.pt.po | 490 +++++++++--------- wiki/src/doc/about/finances.ru.po | 490 +++++++++--------- wiki/src/doc/about/license.de.po | 36 +- wiki/src/doc/about/license.es.po | 36 +- wiki/src/doc/about/license.fr.po | 36 +- wiki/src/doc/about/license.it.po | 36 +- wiki/src/doc/about/license.pt.po | 118 ++++- wiki/src/doc/about/license.ru.po | 36 +- wiki/src/doc/about/warnings.de.po | 4 +- wiki/src/doc/about/warnings.es.po | 4 +- wiki/src/doc/about/warnings.fr.po | 4 +- wiki/src/doc/about/warnings.it.po | 4 +- wiki/src/doc/about/warnings.pt.po | 9 +- wiki/src/doc/about/warnings.ru.po | 4 +- wiki/src/doc/about/warnings/computer.de.po | 6 +- wiki/src/doc/about/warnings/computer.es.po | 6 +- wiki/src/doc/about/warnings/computer.fr.po | 6 +- wiki/src/doc/about/warnings/computer.it.po | 6 +- wiki/src/doc/about/warnings/computer.pt.po | 26 +- wiki/src/doc/about/warnings/computer.ru.po | 6 +- wiki/src/doc/about/warnings/tor.de.po | 4 +- wiki/src/doc/about/warnings/tor.es.po | 4 +- wiki/src/doc/about/warnings/tor.fr.po | 4 +- wiki/src/doc/about/warnings/tor.it.po | 4 +- wiki/src/doc/about/warnings/tor.pt.po | 17 +- wiki/src/doc/about/warnings/tor.ru.po | 4 +- .../virtualization/boxes.de.po | 4 +- .../virtualization/boxes.es.po | 4 +- .../virtualization/boxes.fr.po | 4 +- .../virtualization/boxes.it.po | 4 +- .../virtualization/boxes.pt.po | 4 +- .../virtualization/boxes.ru.po | 4 +- .../virtualization/virt-manager.de.po | 18 +- .../virtualization/virt-manager.es.po | 18 +- .../virtualization/virt-manager.fr.po | 18 +- .../virtualization/virt-manager.it.po | 18 +- .../virtualization/virt-manager.pt.po | 18 +- .../virtualization/virt-manager.ru.po | 18 +- .../virtualization/virtualbox.de.po | 8 +- .../virtualization/virtualbox.es.po | 8 +- .../virtualization/virtualbox.fr.po | 8 +- .../virtualization/virtualbox.it.po | 8 +- .../virtualization/virtualbox.pt.po | 8 +- .../virtualization/virtualbox.ru.po | 8 +- .../doc/anonymous_internet/Tor_Browser.de.po | 4 +- .../doc/anonymous_internet/Tor_Browser.es.po | 4 +- .../doc/anonymous_internet/Tor_Browser.fr.po | 4 +- .../doc/anonymous_internet/Tor_Browser.it.po | 4 +- .../doc/anonymous_internet/Tor_Browser.pt.po | 4 +- .../doc/anonymous_internet/Tor_Browser.ru.po | 4 +- .../src/doc/anonymous_internet/electrum.de.po | 10 +- .../src/doc/anonymous_internet/electrum.es.po | 10 +- .../src/doc/anonymous_internet/electrum.fr.po | 10 +- .../src/doc/anonymous_internet/electrum.it.po | 10 +- .../src/doc/anonymous_internet/electrum.pt.po | 10 +- .../src/doc/anonymous_internet/electrum.ru.po | 10 +- .../anonymous_internet/networkmanager.de.po | 6 +- .../anonymous_internet/networkmanager.es.po | 6 +- .../anonymous_internet/networkmanager.fr.po | 6 +- .../anonymous_internet/networkmanager.it.po | 6 +- .../anonymous_internet/networkmanager.pt.po | 6 +- .../anonymous_internet/networkmanager.ru.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.de.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.es.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.fr.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.it.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.pt.po | 6 +- wiki/src/doc/anonymous_internet/pidgin.ru.po | 6 +- .../doc/anonymous_internet/thunderbird.de.po | 26 +- .../doc/anonymous_internet/thunderbird.es.po | 26 +- .../doc/anonymous_internet/thunderbird.fr.po | 26 +- .../doc/anonymous_internet/thunderbird.it.po | 26 +- .../doc/anonymous_internet/thunderbird.pt.po | 26 +- .../doc/anonymous_internet/thunderbird.ru.po | 26 +- .../thunderbird/openpgp_migration.de.po | 24 +- .../thunderbird/openpgp_migration.es.po | 24 +- .../thunderbird/openpgp_migration.fr.po | 24 +- .../thunderbird/openpgp_migration.it.po | 24 +- .../thunderbird/openpgp_migration.pt.po | 24 +- .../thunderbird/openpgp_migration.ru.po | 24 +- .../anonymous_internet/unsafe_browser.de.po | 5 +- .../anonymous_internet/unsafe_browser.es.po | 5 +- .../anonymous_internet/unsafe_browser.fr.po | 5 +- .../anonymous_internet/unsafe_browser.it.po | 5 +- .../anonymous_internet/unsafe_browser.pt.po | 5 +- .../anonymous_internet/unsafe_browser.ru.po | 5 +- .../encrypted_volumes.de.po | 18 +- .../encrypted_volumes.es.po | 18 +- .../encrypted_volumes.fr.po | 18 +- .../encrypted_volumes.it.po | 18 +- .../encrypted_volumes.pt.po | 18 +- .../encrypted_volumes.ru.po | 18 +- .../luks_vs_veracrypt.inline.de.po | 8 +- .../luks_vs_veracrypt.inline.es.po | 8 +- .../luks_vs_veracrypt.inline.fr.po | 8 +- .../luks_vs_veracrypt.inline.it.po | 8 +- .../luks_vs_veracrypt.inline.pt.po | 8 +- .../luks_vs_veracrypt.inline.ru.po | 8 +- .../manage_passwords.de.po | 12 +- .../manage_passwords.es.po | 12 +- .../manage_passwords.fr.po | 12 +- .../manage_passwords.it.po | 12 +- .../manage_passwords.pt.po | 12 +- .../manage_passwords.ru.po | 12 +- .../secure_deletion.de.po | 12 +- .../secure_deletion.es.po | 12 +- .../secure_deletion.fr.po | 12 +- .../secure_deletion.it.po | 12 +- .../secure_deletion.pt.po | 12 +- .../secure_deletion.ru.po | 12 +- .../encryption_and_privacy/veracrypt.de.po | 12 +- .../encryption_and_privacy/veracrypt.es.po | 12 +- .../encryption_and_privacy/veracrypt.fr.po | 12 +- .../encryption_and_privacy/veracrypt.it.po | 12 +- .../encryption_and_privacy/veracrypt.pt.po | 12 +- .../encryption_and_privacy/veracrypt.ru.po | 12 +- wiki/src/doc/first_steps/bug_reporting.de.po | 10 +- wiki/src/doc/first_steps/bug_reporting.es.po | 10 +- wiki/src/doc/first_steps/bug_reporting.fr.po | 10 +- wiki/src/doc/first_steps/bug_reporting.it.po | 10 +- wiki/src/doc/first_steps/bug_reporting.pt.po | 10 +- wiki/src/doc/first_steps/bug_reporting.ru.po | 10 +- wiki/src/doc/first_steps/desktop.de.po | 14 +- wiki/src/doc/first_steps/desktop.es.po | 14 +- wiki/src/doc/first_steps/desktop.fr.po | 21 +- wiki/src/doc/first_steps/desktop.it.po | 21 +- wiki/src/doc/first_steps/desktop.pt.po | 21 +- wiki/src/doc/first_steps/desktop.ru.po | 21 +- .../administration_password.de.po | 6 +- .../administration_password.es.po | 6 +- .../administration_password.fr.po | 6 +- .../administration_password.it.po | 6 +- .../administration_password.pt.po | 6 +- .../administration_password.ru.po | 6 +- .../welcome_screen/mac_spoofing.de.po | 6 +- .../welcome_screen/mac_spoofing.es.po | 6 +- .../welcome_screen/mac_spoofing.fr.po | 6 +- .../welcome_screen/mac_spoofing.it.po | 6 +- .../welcome_screen/mac_spoofing.pt.po | 6 +- .../welcome_screen/mac_spoofing.ru.po | 6 +- .../additional_software.de.po | 16 +- .../additional_software.es.po | 16 +- .../additional_software.fr.po | 16 +- .../additional_software.it.po | 16 +- .../additional_software.pt.po | 16 +- .../additional_software.ru.po | 16 +- wiki/src/doc/persistent_storage/backup.de.po | 16 +- wiki/src/doc/persistent_storage/backup.es.po | 16 +- wiki/src/doc/persistent_storage/backup.fr.po | 22 +- wiki/src/doc/persistent_storage/backup.it.po | 22 +- wiki/src/doc/persistent_storage/backup.pt.po | 16 +- wiki/src/doc/persistent_storage/backup.ru.po | 22 +- wiki/src/doc/persistent_storage/check.de.po | 10 +- wiki/src/doc/persistent_storage/check.es.po | 10 +- wiki/src/doc/persistent_storage/check.fr.po | 10 +- wiki/src/doc/persistent_storage/check.it.po | 10 +- wiki/src/doc/persistent_storage/check.pt.po | 10 +- wiki/src/doc/persistent_storage/check.ru.po | 10 +- .../doc/persistent_storage/configure.de.po | 40 +- .../doc/persistent_storage/configure.es.po | 40 +- .../doc/persistent_storage/configure.fr.po | 40 +- .../doc/persistent_storage/configure.it.po | 40 +- .../doc/persistent_storage/configure.pt.po | 40 +- .../doc/persistent_storage/configure.ru.po | 40 +- wiki/src/doc/persistent_storage/create.de.po | 6 +- wiki/src/doc/persistent_storage/create.es.po | 6 +- wiki/src/doc/persistent_storage/create.fr.po | 6 +- wiki/src/doc/persistent_storage/create.it.po | 6 +- wiki/src/doc/persistent_storage/create.pt.po | 6 +- wiki/src/doc/persistent_storage/create.ru.po | 6 +- wiki/src/doc/persistent_storage/delete.de.po | 5 +- wiki/src/doc/persistent_storage/delete.es.po | 5 +- wiki/src/doc/persistent_storage/delete.fr.po | 5 +- wiki/src/doc/persistent_storage/delete.it.po | 5 +- wiki/src/doc/persistent_storage/delete.pt.po | 5 +- wiki/src/doc/persistent_storage/delete.ru.po | 5 +- .../doc/persistent_storage/passphrase.de.po | 4 +- .../doc/persistent_storage/passphrase.es.po | 4 +- .../doc/persistent_storage/passphrase.fr.po | 4 +- .../doc/persistent_storage/passphrase.it.po | 4 +- .../doc/persistent_storage/passphrase.pt.po | 4 +- .../doc/persistent_storage/passphrase.ru.po | 4 +- wiki/src/doc/persistent_storage/rescue.de.po | 10 +- wiki/src/doc/persistent_storage/rescue.es.po | 10 +- wiki/src/doc/persistent_storage/rescue.fr.po | 10 +- wiki/src/doc/persistent_storage/rescue.it.po | 10 +- wiki/src/doc/persistent_storage/rescue.pt.po | 10 +- wiki/src/doc/persistent_storage/rescue.ru.po | 10 +- wiki/src/doc/persistent_storage/use.de.po | 4 +- wiki/src/doc/persistent_storage/use.es.po | 4 +- wiki/src/doc/persistent_storage/use.fr.po | 4 +- wiki/src/doc/persistent_storage/use.it.po | 4 +- wiki/src/doc/persistent_storage/use.pt.po | 4 +- wiki/src/doc/persistent_storage/use.ru.po | 4 +- wiki/src/doc/reset/linux.de.po | 10 +- wiki/src/doc/reset/linux.es.po | 10 +- wiki/src/doc/reset/linux.fr.po | 10 +- wiki/src/doc/reset/linux.it.po | 10 +- wiki/src/doc/reset/linux.pt.po | 10 +- wiki/src/doc/reset/linux.ru.po | 10 +- wiki/src/doc/reset/mac.de.po | 6 +- wiki/src/doc/reset/mac.es.po | 6 +- wiki/src/doc/reset/mac.fr.po | 6 +- wiki/src/doc/reset/mac.it.po | 6 +- wiki/src/doc/reset/mac.pt.po | 6 +- wiki/src/doc/reset/mac.ru.po | 6 +- wiki/src/doc/reset/windows.de.po | 6 +- wiki/src/doc/reset/windows.es.po | 6 +- wiki/src/doc/reset/windows.fr.po | 6 +- wiki/src/doc/reset/windows.it.po | 6 +- wiki/src/doc/reset/windows.pt.po | 6 +- wiki/src/doc/reset/windows.ru.po | 6 +- .../doc/sensitive_documents/graphics.de.po | 4 +- .../doc/sensitive_documents/graphics.es.po | 4 +- .../doc/sensitive_documents/graphics.fr.po | 4 +- .../doc/sensitive_documents/graphics.it.po | 4 +- .../doc/sensitive_documents/graphics.pt.po | 4 +- .../doc/sensitive_documents/graphics.ru.po | 4 +- .../doc/sensitive_documents/metadata.de.po | 6 +- .../doc/sensitive_documents/metadata.es.po | 6 +- .../doc/sensitive_documents/metadata.fr.po | 6 +- .../doc/sensitive_documents/metadata.it.po | 6 +- .../doc/sensitive_documents/metadata.pt.po | 6 +- .../doc/sensitive_documents/metadata.ru.po | 6 +- .../sensitive_documents/office_suite.de.po | 6 +- .../sensitive_documents/office_suite.es.po | 6 +- .../sensitive_documents/office_suite.fr.po | 6 +- .../sensitive_documents/office_suite.it.po | 6 +- .../sensitive_documents/office_suite.pt.po | 6 +- .../sensitive_documents/office_suite.ru.po | 6 +- .../printing_and_scanning.de.po | 12 +- .../printing_and_scanning.es.po | 12 +- .../printing_and_scanning.fr.po | 12 +- .../printing_and_scanning.it.po | 12 +- .../printing_and_scanning.pt.po | 12 +- .../printing_and_scanning.ru.po | 12 +- .../screenshot_and_screencast.de.po | 8 +- .../screenshot_and_screencast.es.po | 8 +- .../screenshot_and_screencast.fr.po | 8 +- .../screenshot_and_screencast.it.po | 8 +- .../screenshot_and_screencast.pt.po | 8 +- .../screenshot_and_screencast.ru.po | 8 +- .../sensitive_documents/sound_and_video.de.po | 4 +- .../sensitive_documents/sound_and_video.es.po | 4 +- .../sensitive_documents/sound_and_video.fr.po | 4 +- .../sensitive_documents/sound_and_video.it.po | 4 +- .../sensitive_documents/sound_and_video.pt.po | 4 +- .../sensitive_documents/sound_and_video.ru.po | 4 +- wiki/src/doc/upgrade.de.po | 16 +- wiki/src/doc/upgrade.es.po | 25 +- wiki/src/doc/upgrade.fr.po | 25 +- wiki/src/doc/upgrade.it.po | 25 +- wiki/src/doc/upgrade.pt.po | 25 +- wiki/src/doc/upgrade.ru.po | 22 +- wiki/src/install/inc/steps/clone.inline.de.po | 18 +- wiki/src/install/inc/steps/clone.inline.es.po | 35 +- wiki/src/install/inc/steps/clone.inline.fr.po | 38 +- wiki/src/install/inc/steps/clone.inline.it.po | 35 +- wiki/src/install/inc/steps/clone.inline.pt.po | 38 +- wiki/src/install/inc/steps/clone.inline.ru.po | 35 +- .../steps/install_etcher_in_mac.inline.de.po | 8 +- .../steps/install_etcher_in_mac.inline.es.po | 8 +- .../steps/install_etcher_in_mac.inline.fr.po | 8 +- .../steps/install_etcher_in_mac.inline.it.po | 8 +- .../steps/install_etcher_in_mac.inline.pt.po | 11 +- .../steps/install_etcher_in_mac.inline.ru.po | 8 +- .../install_with_gnome_disks.inline.de.po | 6 +- .../install_with_gnome_disks.inline.es.po | 6 +- .../install_with_gnome_disks.inline.fr.po | 6 +- .../install_with_gnome_disks.inline.it.po | 6 +- .../install_with_gnome_disks.inline.pt.po | 6 +- .../install_with_gnome_disks.inline.ru.po | 6 +- .../inc/steps/mac_startup_disks.inline.de.po | 7 +- .../inc/steps/mac_startup_disks.inline.es.po | 7 +- .../inc/steps/mac_startup_disks.inline.fr.po | 7 +- .../inc/steps/mac_startup_disks.inline.it.po | 7 +- .../inc/steps/mac_startup_disks.inline.pt.po | 7 +- .../inc/steps/mac_startup_disks.inline.ru.po | 7 +- .../inc/steps/verify_up-to-date.inline.de.po | 4 +- .../inc/steps/verify_up-to-date.inline.es.po | 4 +- .../inc/steps/verify_up-to-date.inline.fr.po | 4 +- .../inc/steps/verify_up-to-date.inline.it.po | 4 +- .../inc/steps/verify_up-to-date.inline.pt.po | 4 +- .../inc/steps/verify_up-to-date.inline.ru.po | 4 +- .../inc/steps/windows_boot_menu.inline.de.po | 4 +- .../inc/steps/windows_boot_menu.inline.es.po | 4 +- .../inc/steps/windows_boot_menu.inline.fr.po | 4 +- .../inc/steps/windows_boot_menu.inline.it.po | 4 +- .../inc/steps/windows_boot_menu.inline.pt.po | 4 +- .../inc/steps/windows_boot_menu.inline.ru.po | 4 +- wiki/src/news/2018-fundraiser.de.po | 6 +- wiki/src/news/2018-fundraiser.es.po | 6 +- wiki/src/news/2018-fundraiser.fr.po | 6 +- wiki/src/news/2018-fundraiser.it.po | 6 +- wiki/src/news/2018-fundraiser.pt.po | 6 +- wiki/src/news/2018-fundraiser.ru.po | 6 +- wiki/src/news/2019-fundraiser.de.po | 6 +- wiki/src/news/2019-fundraiser.es.po | 6 +- wiki/src/news/2019-fundraiser.fr.po | 6 +- wiki/src/news/2019-fundraiser.it.po | 6 +- wiki/src/news/2019-fundraiser.pt.po | 6 +- wiki/src/news/2019-fundraiser.ru.po | 6 +- wiki/src/news/33c3.de.po | 4 +- wiki/src/news/33c3.es.po | 4 +- wiki/src/news/33c3.fr.po | 4 +- wiki/src/news/33c3.it.po | 4 +- wiki/src/news/33c3.pt.po | 4 +- wiki/src/news/33c3.ru.po | 4 +- ..._3.0_will_require_a_64-bit_processor.de.po | 4 +- ..._3.0_will_require_a_64-bit_processor.es.po | 4 +- ..._3.0_will_require_a_64-bit_processor.fr.po | 4 +- ..._3.0_will_require_a_64-bit_processor.it.po | 4 +- ..._3.0_will_require_a_64-bit_processor.pt.po | 4 +- ..._3.0_will_require_a_64-bit_processor.ru.po | 4 +- wiki/src/news/achievements_in_2022.de.po | 4 +- wiki/src/news/achievements_in_2022.es.po | 4 +- wiki/src/news/achievements_in_2022.fr.po | 4 +- wiki/src/news/achievements_in_2022.it.po | 4 +- wiki/src/news/achievements_in_2022.pt.po | 4 +- wiki/src/news/achievements_in_2022.ru.po | 4 +- wiki/src/news/celebrating_10_years.de.po | 10 +- wiki/src/news/celebrating_10_years.es.po | 10 +- wiki/src/news/celebrating_10_years.fr.po | 10 +- wiki/src/news/celebrating_10_years.it.po | 10 +- wiki/src/news/celebrating_10_years.pt.po | 10 +- wiki/src/news/celebrating_10_years.ru.po | 10 +- wiki/src/news/celebrating_10_years/mafe.de.po | 16 +- wiki/src/news/celebrating_10_years/mafe.es.po | 16 +- wiki/src/news/celebrating_10_years/mafe.fr.po | 16 +- wiki/src/news/celebrating_10_years/mafe.it.po | 16 +- wiki/src/news/celebrating_10_years/mafe.pt.po | 16 +- wiki/src/news/celebrating_10_years/mafe.ru.po | 16 +- .../ciclo_de_autodefensa_digital_brasil.de.po | 45 +- .../ciclo_de_autodefensa_digital_brasil.es.po | 45 +- .../ciclo_de_autodefensa_digital_brasil.fr.po | 45 +- .../ciclo_de_autodefensa_digital_brasil.it.po | 45 +- .../ciclo_de_autodefensa_digital_brasil.pt.po | 45 +- .../ciclo_de_autodefensa_digital_brasil.ru.po | 45 +- .../ciclo_de_autodefensa_digital_mexico.de.po | 24 +- .../ciclo_de_autodefensa_digital_mexico.es.po | 24 +- .../ciclo_de_autodefensa_digital_mexico.fr.po | 24 +- .../ciclo_de_autodefensa_digital_mexico.it.po | 24 +- .../ciclo_de_autodefensa_digital_mexico.pt.po | 24 +- .../ciclo_de_autodefensa_digital_mexico.ru.po | 24 +- wiki/src/news/duckduckgo_challenge.de.po | 6 +- wiki/src/news/duckduckgo_challenge.es.po | 6 +- wiki/src/news/duckduckgo_challenge.fr.po | 6 +- wiki/src/news/duckduckgo_challenge.it.po | 6 +- wiki/src/news/duckduckgo_challenge.pt.po | 6 +- wiki/src/news/duckduckgo_challenge.ru.po | 6 +- wiki/src/news/many_hands_make_tails.de.po | 4 +- wiki/src/news/many_hands_make_tails.es.po | 4 +- wiki/src/news/many_hands_make_tails.fr.po | 4 +- wiki/src/news/many_hands_make_tails.it.po | 4 +- wiki/src/news/many_hands_make_tails.pt.po | 4 +- wiki/src/news/many_hands_make_tails.ru.po | 4 +- wiki/src/news/mediapart.de.po | 18 +- wiki/src/news/mediapart.es.po | 18 +- wiki/src/news/mediapart.fr.po | 18 +- wiki/src/news/mediapart.it.po | 18 +- wiki/src/news/mediapart.pt.po | 18 +- wiki/src/news/mediapart.ru.po | 18 +- wiki/src/news/plans_for_2020.de.po | 4 +- wiki/src/news/plans_for_2020.es.po | 4 +- wiki/src/news/plans_for_2020.fr.po | 4 +- wiki/src/news/plans_for_2020.it.po | 4 +- wiki/src/news/plans_for_2020.pt.po | 4 +- wiki/src/news/plans_for_2020.ru.po | 4 +- wiki/src/news/reproducible_Tails.de.po | 4 +- wiki/src/news/reproducible_Tails.es.po | 4 +- wiki/src/news/reproducible_Tails.fr.po | 4 +- wiki/src/news/reproducible_Tails.it.po | 4 +- wiki/src/news/reproducible_Tails.pt.po | 4 +- wiki/src/news/reproducible_Tails.ru.po | 4 +- .../story_protecting_abortion_activists.de.po | 4 +- .../story_protecting_abortion_activists.es.po | 4 +- .../story_protecting_abortion_activists.fr.po | 4 +- .../story_protecting_abortion_activists.it.po | 4 +- .../story_protecting_abortion_activists.pt.po | 4 +- .../story_protecting_abortion_activists.ru.po | 4 +- wiki/src/news/version_5.12.de.po | 4 +- wiki/src/news/version_5.12.es.po | 4 +- wiki/src/news/version_5.12.fr.po | 4 +- wiki/src/news/version_5.12.it.po | 4 +- wiki/src/news/version_5.12.pt.po | 4 +- wiki/src/news/version_5.12.ru.po | 4 +- wiki/src/news/version_5.15.1.de.po | 4 +- wiki/src/news/version_5.15.1.es.po | 4 +- wiki/src/news/version_5.15.1.fr.po | 4 +- wiki/src/news/version_5.15.1.it.po | 4 +- wiki/src/news/version_5.15.1.pt.po | 4 +- wiki/src/news/version_5.15.1.ru.po | 4 +- wiki/src/news/version_5.8.de.po | 14 +- wiki/src/news/version_5.8.es.po | 14 +- wiki/src/news/version_5.8.fr.po | 14 +- wiki/src/news/version_5.8.it.po | 14 +- wiki/src/news/version_5.8.pt.po | 14 +- wiki/src/news/version_5.8.ru.po | 14 +- wiki/src/news/version_5.9.de.po | 6 +- wiki/src/news/version_5.9.es.po | 6 +- wiki/src/news/version_5.9.fr.po | 6 +- wiki/src/news/version_5.9.it.po | 6 +- wiki/src/news/version_5.9.pt.po | 6 +- wiki/src/news/version_5.9.ru.po | 6 +- .../news/what_we_accomplished_in_2017.de.po | 4 +- .../news/what_we_accomplished_in_2017.es.po | 4 +- .../news/what_we_accomplished_in_2017.fr.po | 4 +- .../news/what_we_accomplished_in_2017.it.po | 4 +- .../news/what_we_accomplished_in_2017.pt.po | 4 +- .../news/what_we_accomplished_in_2017.ru.po | 4 +- .../src/news/what_we_do_with_your_money.de.po | 6 +- .../src/news/what_we_do_with_your_money.es.po | 6 +- .../src/news/what_we_do_with_your_money.fr.po | 6 +- .../src/news/what_we_do_with_your_money.it.po | 6 +- .../src/news/what_we_do_with_your_money.pt.po | 6 +- .../src/news/what_we_do_with_your_money.ru.po | 6 +- wiki/src/news/why_we_need_donations.de.po | 6 +- wiki/src/news/why_we_need_donations.es.po | 6 +- wiki/src/news/why_we_need_donations.fr.po | 6 +- wiki/src/news/why_we_need_donations.it.po | 6 +- wiki/src/news/why_we_need_donations.pt.po | 6 +- wiki/src/news/why_we_need_donations.ru.po | 6 +- wiki/src/press.de.po | 22 +- wiki/src/press.es.po | 22 +- wiki/src/press.fr.po | 22 +- wiki/src/press.it.po | 22 +- wiki/src/press.pt.po | 22 +- wiki/src/press.ru.po | 22 +- .../Security_hole_in_I2P_0.9.13.de.po | 4 +- .../Security_hole_in_I2P_0.9.13.es.po | 4 +- .../Security_hole_in_I2P_0.9.13.fr.po | 4 +- .../Security_hole_in_I2P_0.9.13.it.po | 4 +- .../Security_hole_in_I2P_0.9.13.pt.po | 4 +- .../Security_hole_in_I2P_0.9.13.ru.po | 4 +- wiki/src/security/Upgrade_Tor.de.po | 7 +- wiki/src/security/Upgrade_Tor.es.po | 7 +- wiki/src/security/Upgrade_Tor.fr.po | 7 +- wiki/src/security/Upgrade_Tor.it.po | 7 +- wiki/src/security/Upgrade_Tor.pt.po | 7 +- wiki/src/security/Upgrade_Tor.ru.po | 7 +- wiki/src/security/argon2id.de.po | 17 +- wiki/src/security/argon2id.es.po | 17 +- wiki/src/security/argon2id.fr.po | 17 +- wiki/src/security/argon2id.it.po | 17 +- wiki/src/security/argon2id.pt.po | 17 +- wiki/src/security/argon2id.ru.po | 17 +- .../cryptsetup_partition.inline.de.po | 18 +- .../cryptsetup_partition.inline.es.po | 18 +- .../cryptsetup_partition.inline.fr.po | 18 +- .../cryptsetup_partition.inline.it.po | 18 +- .../cryptsetup_partition.inline.pt.po | 18 +- .../cryptsetup_partition.inline.ru.po | 18 +- .../security/argon2id/keepassxc.inline.de.po | 6 +- .../security/argon2id/keepassxc.inline.es.po | 6 +- .../security/argon2id/keepassxc.inline.fr.po | 6 +- .../security/argon2id/keepassxc.inline.it.po | 6 +- .../security/argon2id/keepassxc.inline.pt.po | 6 +- .../security/argon2id/keepassxc.inline.ru.po | 6 +- .../argon2id/ps_passphrase.inline.de.po | 4 +- .../argon2id/ps_passphrase.inline.es.po | 4 +- .../argon2id/ps_passphrase.inline.fr.po | 4 +- .../argon2id/ps_passphrase.inline.it.po | 4 +- .../argon2id/ps_passphrase.inline.pt.po | 4 +- .../argon2id/ps_passphrase.inline.ru.po | 4 +- .../argon2id/tails_installer.inline.de.po | 4 +- .../argon2id/tails_installer.inline.es.po | 4 +- .../argon2id/tails_installer.inline.fr.po | 4 +- .../argon2id/tails_installer.inline.it.po | 4 +- .../argon2id/tails_installer.inline.pt.po | 4 +- .../argon2id/tails_installer.inline.ru.po | 4 +- .../claws_mail_leaks_plaintext_to_imap.de.po | 12 +- .../claws_mail_leaks_plaintext_to_imap.es.po | 12 +- .../claws_mail_leaks_plaintext_to_imap.fr.po | 12 +- .../claws_mail_leaks_plaintext_to_imap.it.po | 12 +- .../claws_mail_leaks_plaintext_to_imap.pt.po | 12 +- .../claws_mail_leaks_plaintext_to_imap.ru.po | 12 +- .../sandbox_escape_in_tor_browser.de.po | 4 +- .../sandbox_escape_in_tor_browser.es.po | 4 +- .../sandbox_escape_in_tor_browser.fr.po | 4 +- .../sandbox_escape_in_tor_browser.it.po | 4 +- .../sandbox_escape_in_tor_browser.pt.po | 4 +- .../sandbox_escape_in_tor_browser.ru.po | 4 +- wiki/src/sponsors.de.po | 128 ++--- wiki/src/sponsors.es.po | 136 ++--- wiki/src/sponsors.fr.po | 128 ++--- wiki/src/sponsors.it.po | 110 ++-- wiki/src/sponsors.pt.po | 106 ++-- wiki/src/sponsors.ru.po | 106 ++-- wiki/src/support/known_issues/graphics.de.po | 6 +- wiki/src/support/known_issues/graphics.es.po | 6 +- wiki/src/support/known_issues/graphics.fr.po | 6 +- wiki/src/support/known_issues/graphics.it.po | 6 +- wiki/src/support/known_issues/graphics.pt.po | 6 +- wiki/src/support/known_issues/graphics.ru.po | 6 +- 510 files changed, 4510 insertions(+), 4326 deletions(-) diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po index 2d7d7584097..5de1686dc90 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-05-12 15:56+0200\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -80,7 +80,7 @@ msgstr "" #| "borrowed from [Liberté Linux](http://dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Einige Ideen (insbesondere [[tordate|contribute/design/Time_syncing]] und " @@ -218,7 +218,7 @@ msgstr "[JonDo Live-CD](https://www.anonym-surfen.de/jondo-live-cd.html)" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](http://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](http://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po index afcdef19155..55e389f95cd 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.es.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-11-03 08:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -81,7 +81,7 @@ msgstr "" #| "borrowed from [Liberté Linux](http://dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Algunas ideas (en particular [[tordate|contribute/design/Time_syncing]] y " @@ -205,7 +205,7 @@ msgstr "" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](http://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](https://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po index a44c2c86067..8a567e11364 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-17 01:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -77,7 +77,7 @@ msgstr "" #| "dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Certaines idées (en particulier les améliorations de la procédure " @@ -189,7 +189,7 @@ msgstr "" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](https://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](https://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po index 944049f9c0f..9ebebaa7b53 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 16:07+0000\n" "Last-Translator: la_r_go* <largo@tracciabi.li>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -77,7 +77,7 @@ msgstr "" #| "dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Alcune idee (in particolare alcuni miglioramenti alla nostra procedura di " @@ -189,7 +189,7 @@ msgstr "" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](https://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](https://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po index 51b196949be..fe4cf780534 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.pt.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-11-09 15:17+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -77,7 +77,7 @@ msgstr "" #| "dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Algumas ideias (em particular as melhorias no nosso procedimento de " @@ -189,7 +189,7 @@ msgstr "" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](https://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](https://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po b/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po index 280b9b2487b..12070c96331 100644 --- a/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po +++ b/wiki/src/doc/about/acknowledgments_and_similar_projects.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-18 07:47+0000\n" "Last-Translator: Alexander Sinicyn <6dbjlfu8tg@cloud-mail.top>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -80,7 +80,7 @@ msgstr "" #| "dee.su/liberte)." msgid "" "Some ideas (in particular the improvements to the [[contribute/design/" -"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." +"memory_erasure]] procedure) were borrowed from [Liberté Linux](https://dee." "su/liberte)." msgstr "" "Ðекоторые идеи (в чаÑтноÑти, уÑовершенÑтвование процедуры ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð¿Ð°Ð¼Ñти " @@ -205,7 +205,7 @@ msgstr "" #. type: Bullet: '* ' #, fuzzy #| msgid "[Liberté Linux](https://dee.su/liberte)" -msgid "[Liberté Linux](https://dee.su/liberte)" +msgid "[Liberté Linux](https://dee.su/liberte)" msgstr "[Liberté Linux](https://dee.su/liberte)" #. type: Bullet: '* ' diff --git a/wiki/src/doc/about/features.de.po b/wiki/src/doc/about/features.de.po index 6552c3bcc9d..758dcd51c0b 100644 --- a/wiki/src/doc/about/features.de.po +++ b/wiki/src/doc/about/features.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails translations\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-04 12:07+0000\n" "Last-Translator: francescopro@protonmail.com <francescopro@protonmail.com>\n" "Language-Team: Tails translations <tails-l10n@boum.org>\n" @@ -376,7 +376,7 @@ msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/features.es.po b/wiki/src/doc/about/features.es.po index 4a47fd677f5..65ad8976326 100644 --- a/wiki/src/doc/about/features.es.po +++ b/wiki/src/doc/about/features.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -381,7 +381,7 @@ msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/features.fr.po b/wiki/src/doc/about/features.fr.po index 22a5be036d5..3e43e854132 100644 --- a/wiki/src/doc/about/features.fr.po +++ b/wiki/src/doc/about/features.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-23 19:01+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -409,7 +409,7 @@ msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/features.it.po b/wiki/src/doc/about/features.it.po index 13a22735de4..1990504b02d 100644 --- a/wiki/src/doc/about/features.it.po +++ b/wiki/src/doc/about/features.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: revisione ignifugo\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-24 10:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -406,7 +406,7 @@ msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/features.pt.po b/wiki/src/doc/about/features.pt.po index d116bfcf0f3..16153384c54 100644 --- a/wiki/src/doc/about/features.pt.po +++ b/wiki/src/doc/about/features.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -386,11 +386,19 @@ msgid "Multilingual support" msgstr "Suporte a diferentes idiomas" #. type: Plain text +#, fuzzy +#| msgid "" +#| "When starting Tails, you can choose between a large number of languages, " +#| "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, " +#| "Greek, English, Spanish, Persian, Finnish, French, Croatian, Hungarian, " +#| "Indonesian, Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, " +#| "Polish, Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, " +#| "Turkish, Ukrainian, and Chinese." msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/features.ru.po b/wiki/src/doc/about/features.ru.po index 7b40a8da534..10cfe7131f7 100644 --- a/wiki/src/doc/about/features.ru.po +++ b/wiki/src/doc/about/features.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-21 11:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -370,7 +370,7 @@ msgid "" "When starting Tails, you can choose between a large number of languages, " "including Arabic, Azerbaijani, Catalan, Czech, Welsh, Danish, German, Greek, " "English, Spanish, Persian, Finnish, French, Croatian, Hungarian, Indonesian, " -"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " +"Italian, Japanese, Khmer, Korean, Latvian, BokmÃ¥l, Dutch, Polish, " "Portuguese, Russian, Slovak, Slovene, Albanian, Serbian, Swedish, Turkish, " "Ukrainian, and Chinese." msgstr "" diff --git a/wiki/src/doc/about/finances.de.po b/wiki/src/doc/about/finances.de.po index 055959d4e52..c3bd91e5e4f 100644 --- a/wiki/src/doc/about/finances.de.po +++ b/wiki/src/doc/about/finances.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-29 23:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -87,7 +87,7 @@ msgstr "" #| "\t -4285.18€\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -137,10 +137,10 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -153,7 +153,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -181,10 +181,10 @@ msgstr "" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -201,14 +201,14 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" #. type: Plain text @@ -224,14 +224,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -255,8 +255,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -276,7 +276,7 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -284,7 +284,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -315,7 +315,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -354,7 +354,7 @@ msgstr "" #| "\t -4285.18€\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -379,9 +379,9 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -395,7 +395,7 @@ msgstr "" #, no-wrap msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -412,16 +412,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -451,9 +451,9 @@ msgstr "" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -469,14 +469,14 @@ msgstr "" #, no-wrap msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" #. type: Plain text @@ -492,11 +492,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -518,11 +518,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -536,7 +536,7 @@ msgstr "" #, no-wrap msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" #. type: Plain text @@ -550,8 +550,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -570,11 +570,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -622,13 +622,13 @@ msgstr "" #| "\t 77552.79€\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -654,7 +654,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" #. type: Plain text @@ -670,11 +670,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" #. type: Plain text @@ -696,8 +696,8 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\tAusgaben:\n" @@ -722,9 +722,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -738,7 +738,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" #. type: Plain text @@ -754,10 +754,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -779,10 +779,10 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -802,11 +802,11 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -825,10 +825,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -870,15 +870,15 @@ msgstr "Einkommensaufstellung für 2019" msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -901,7 +901,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -910,7 +910,7 @@ msgstr "" #, no-wrap msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -929,12 +929,12 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -956,9 +956,9 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -982,10 +982,10 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -999,7 +999,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" #. type: Plain text @@ -1015,10 +1015,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1040,8 +1040,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1061,11 +1061,11 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1085,9 +1085,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1131,9 +1131,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -1156,7 +1156,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" @@ -1174,13 +1174,13 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\tEinnahmen:\n" "\t $21000,00 NDI\n" @@ -1207,9 +1207,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -1236,11 +1236,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -1257,7 +1257,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" #. type: Plain text @@ -1273,10 +1273,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1298,8 +1298,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1319,11 +1319,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1343,8 +1343,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1384,9 +1384,9 @@ msgstr "Einkommensaufstellung für 2017" msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -1410,14 +1410,14 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" #. type: Plain text #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" #. type: Plain text @@ -1430,11 +1430,11 @@ msgstr "" #| "\t 42106.69€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1456,9 +1456,9 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\tAusgaben:\n" @@ -1487,14 +1487,14 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\tAusgaben:\n" "\t -60,00€ Bankgeschäfte\n" @@ -1512,7 +1512,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" @@ -1529,10 +1529,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1554,8 +1554,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1575,11 +1575,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1598,9 +1598,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tInsgesamt:\n" "\t--------------------\n" @@ -1641,9 +1641,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -1675,7 +1675,7 @@ msgstr "" #, no-wrap msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" #. type: Plain text @@ -1688,11 +1688,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1715,8 +1715,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -1740,11 +1740,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1758,7 +1758,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" @@ -1774,9 +1774,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\tAusgaben:\n" @@ -1799,8 +1799,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1822,11 +1822,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1848,8 +1848,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1890,10 +1890,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -1916,7 +1916,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" #. type: Plain text @@ -1932,8 +1932,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -1956,8 +1956,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tAusgaben:\n" @@ -1982,9 +1982,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -1998,7 +1998,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" @@ -2015,9 +2015,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -2041,14 +2041,14 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\tEinnahmen:\n" "\t $21000,00 NDI\n" @@ -2072,8 +2072,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -2113,9 +2113,9 @@ msgstr "Einkommensaufstellung für 2014" msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\tEinnahmen:\n" "\t- Spenden\n" @@ -2139,8 +2139,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2159,8 +2159,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -2183,8 +2183,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tAusgaben:\n" @@ -2209,11 +2209,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -2228,7 +2228,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" #. type: Plain text @@ -2244,9 +2244,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -2268,12 +2268,12 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -2295,8 +2295,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -2325,12 +2325,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tEinnahmen:\n" "\t $21000,00 NDI\n" @@ -2358,16 +2358,16 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tAusgaben:\n" "\t -60,00€ Bankgeschäfte\n" @@ -2393,8 +2393,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -2416,9 +2416,9 @@ msgstr "Einkommensaufstellung für 2012" #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tEinnahmen:\n" "\t 137,30€ Steuer\n" @@ -2440,13 +2440,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tAusgaben:\n" "\t $-3810,71 Hardware\n" @@ -2469,7 +2469,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" @@ -2498,9 +2498,9 @@ msgstr "Einkommensaufstellung für 2011" #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tEinnahmen:\n" "\t 7500,00€ Tor\n" @@ -2520,11 +2520,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tAusgaben:\n" "\t $-555,00 Hardware\n" @@ -2545,7 +2545,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tGesammtsumme:\n" "\t--------------------\n" @@ -2579,9 +2579,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tAusgaben:\n" "\t -2025,00€ Hardware\n" @@ -2599,7 +2599,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tGesamtsumme:\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/finances.es.po b/wiki/src/doc/about/finances.es.po index 407b29a1113..efc059deb83 100644 --- a/wiki/src/doc/about/finances.es.po +++ b/wiki/src/doc/about/finances.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -79,7 +79,7 @@ msgstr "" #| "\t -558.67€ Internet hosting\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -132,10 +132,10 @@ msgstr "" #| "\t -220599.25€\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -148,7 +148,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -174,10 +174,10 @@ msgstr "\tGastos:\n" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" "\t- Infraestructura\n" "\t $-1761.58 hardware\n" @@ -194,7 +194,7 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" "\t- Subcontratación\n" "\t $-53414.00 subcontratación\n" @@ -207,7 +207,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" "\t- Subcontrataciones\n" "\t -228589.69€ subcontrataciones\n" @@ -224,14 +224,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" "\t- Gastos corrientes\n" "\t $-15.428,92 administración\n" @@ -253,8 +253,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" "\t- Gastos corrientes\n" "\t $-15.428,92 administración\n" @@ -277,7 +277,7 @@ msgstr "" #| " 11.30Z\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -285,7 +285,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" " Total:\n" " --------------------\n" @@ -324,7 +324,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" " Total:\n" " --------------------\n" @@ -362,7 +362,7 @@ msgstr " Ingresos:\n" #| "\t -558.67€ Internet hosting\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -384,9 +384,9 @@ msgstr "" #| " 11.30Z zcash\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -401,7 +401,7 @@ msgstr "" #, no-wrap msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -419,16 +419,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -455,9 +455,9 @@ msgstr " Gastos:\n" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" "\t- Infraestructura\n" "\t $-1761.58 hardware\n" @@ -472,7 +472,7 @@ msgstr "" #| " -257918.69€ subcontracting\n" msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" " - Subcontrataciones\n" " -257918.69€ subcontrataciones\n" @@ -484,7 +484,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" "\t- Subcontrataciones\n" "\t -228589.69€ subcontrataciones\n" @@ -501,11 +501,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" "\t- Gastos corrientes\n" "\t $-15.428,92 administración\n" @@ -525,11 +525,11 @@ msgstr "" #| "\t -107.04€ banking fees\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" "\t- Gastos corrientes\n" "\t $-15.428,92 administración\n" @@ -545,7 +545,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" "\t- Subcontrataciones\n" "\t -228589.69€ subcontrataciones\n" @@ -562,8 +562,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -587,11 +587,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -635,13 +635,13 @@ msgstr "\tIngresos:\n" #| "\t 11.28Z zcash\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" "\t- Fondos restringidos (entregables para los patrocinadores)\n" "\t $120310.00 Mozilla Open Source Support\n" @@ -700,11 +700,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" "\t- Patrocinadores\n" "\t $1408.20 Freiheitsfoo\n" @@ -736,8 +736,8 @@ msgstr "\tGastos:\n" #| "\t $-997.50 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\t- Infraestructura\n" @@ -754,9 +754,9 @@ msgstr "" #| "\t -981.61€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\t- Viajes & reuniones\n" "\t -500.55€ viajes\n" @@ -770,7 +770,7 @@ msgstr "" #| "\t -252240.25€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" "\t- Subcontrataciones\n" "\t -252240.25€ subcontrataciones\n" @@ -787,10 +787,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\t- Gastos corrientes\n" "\t $-13000.96 administración\n" @@ -809,10 +809,10 @@ msgstr "" #| "\t $-170.00 banking fees\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\t- Gastos corrientes\n" "\t -8038.03€ administración\n" @@ -831,11 +831,11 @@ msgstr "" #| "\t -258694.56€\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\t- Impuestos\n" "\t -12403.96€ IVA\n" @@ -858,10 +858,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -901,15 +901,15 @@ msgstr "Declaración de ganancias para 2019" msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\t- Donaciones\n" "\t $32176.74 vÃa PayPal\n" @@ -932,7 +932,7 @@ msgstr "" #| "\t $114890.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -954,7 +954,7 @@ msgstr "" #| "\t $900.00 Tor\n" msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -983,12 +983,12 @@ msgstr "" #| "\t 38095.31€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\t- Camisetas\n" "\t 61.88€ Camisetas\n" @@ -1007,9 +1007,9 @@ msgstr "" #| "\t -1082.13€ Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\t- Infraestructura\n" "\t -1564.65€ hardware\n" @@ -1026,10 +1026,10 @@ msgstr "" #| "\t -120.08€ tickets to events\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\t- Viajes y reuniones\n" "\t -4650.76€ viaje\n" @@ -1044,7 +1044,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" "\t- Subcontrataciones\n" "\t -228589.69€ subcontrataciones\n" @@ -1061,10 +1061,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\t- Costos de funcionamiento\n" "\t $-4546.48 administración\n" @@ -1081,8 +1081,8 @@ msgstr "" #| "\t -112.52€ outreach material\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\t- Misceláneos\n" "\t -15.29€ materiales de oficina\n" @@ -1099,11 +1099,11 @@ msgstr "" #| "\t -258694.56€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\t- Impuestos\n" "\t -12403.96€ IVA\n" @@ -1125,9 +1125,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1161,9 +1161,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\t- Donaciones\n" "\t $47094.97 por medio de el DuckDuckGo Challenge\n" @@ -1181,7 +1181,7 @@ msgstr "" #| "\t $37500.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" "\t- Fondos restringidos (resultados ya acordados con los patrocinadores)\n" @@ -1201,13 +1201,13 @@ msgstr "" #| "\t 21310.72€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\t- Patrocinadores\n" "\t 0.15Ƀ DeepOnion\n" @@ -1229,9 +1229,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\t- Infraestructura\n" "\t $-1761.58 hardware\n" @@ -1252,11 +1252,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\t- Viajes & reuniones\n" "\t $-60.24 comidas y bebidas\n" @@ -1275,7 +1275,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" "\t- Subcontratación\n" "\t $-2585,50 subcontratación\n" @@ -1293,10 +1293,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\t- Gastos corrientes\n" "\t $-15.428,92 administración\n" @@ -1313,8 +1313,8 @@ msgstr "" #| "\t -108.29€ T-shirts\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\t- Misceláneos\n" "\t -190,17€ artÃculos de oficina\n" @@ -1331,11 +1331,11 @@ msgstr "" #| "\t -168883.98€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\t- Impuestos\n" "\t -6371.36€ IVA\n" @@ -1356,8 +1356,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1386,9 +1386,9 @@ msgstr "Declaración de ganancias para 2017" msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\t- Donaciones\n" "\t $23579.15 por medio de Riseup Labs\n" @@ -1405,7 +1405,7 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" "\t- Patrocinadores\n" "\t $1000.00 ExpressVPN\n" @@ -1418,7 +1418,7 @@ msgstr "" #| "\t 11000.00€ Lush\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" "\t- Fondos restringidos (entregables para los patrocinadores)\n" "\t 11000.00€ Lush\n" @@ -1434,11 +1434,11 @@ msgstr "" #| "\t 22564.98€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\t- Camisetas\n" "\t 1272.35€ camisetas\n" @@ -1457,9 +1457,9 @@ msgstr "" #| "\t $-4380.00 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\t- Infraestructura\n" @@ -1482,14 +1482,14 @@ msgstr "" #| "\t -44.95€ misc\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\t- Viajes & reuniones\n" "\t -9449.31€ viajes\n" @@ -1509,7 +1509,7 @@ msgstr "" #| "\t $-2205.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" "\t- Subcontratación\n" @@ -1528,10 +1528,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\t- Gastos corrientes\n" "\t $-13000.96 administración\n" @@ -1548,8 +1548,8 @@ msgstr "" #| "\t -163.57€ office supplies\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\t- Misceláneos\n" "\t -3279.64€ camisetas \n" @@ -1566,11 +1566,11 @@ msgstr "" #| "\t -154322.32€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\t- Impuestos\n" "\t -19334.81€ IVA\n" @@ -1590,9 +1590,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1623,9 +1623,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\t- Donaciones\n" "\t $21908.52 por medio de Riseup Labs\n" @@ -1659,7 +1659,7 @@ msgstr "" #| "\t 2000.00€ Mediapart\n" msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" "\t- Patrocinadores\n" "\t 2000.00€ Mediapart\n" @@ -1675,11 +1675,11 @@ msgstr "" #| "\t 16674.23€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\t- Camisetas\n" "\t 180.47€ camisetas\n" @@ -1698,8 +1698,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\t- Infraestructura\n" "\t $-2351.70 hardware\n" @@ -1717,11 +1717,11 @@ msgstr "" #| "\t -2577.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\t- Viajes & reuniones\n" "\t -7566.00€ viajes\n" @@ -1738,7 +1738,7 @@ msgstr "" #| "\t $-5945.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" "\t- Subcontratación\n" @@ -1755,9 +1755,9 @@ msgstr "" #| "\t $-170.00 banking fees\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\t- Gastos corrientes\n" @@ -1774,8 +1774,8 @@ msgstr "" #| "\t -30.00€ communication\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\t- Misceláneos\n" "\t -115.43€ compras no almacenadas\n" @@ -1792,11 +1792,11 @@ msgstr "" #| "\t -165288.03€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\t- Impuestos\n" "\t -12034.02€ IVA\n" @@ -1817,8 +1817,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1850,10 +1850,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\t- Donaciones\n" "\t $35000.00 por medio de Riseup Labs\n" @@ -1870,7 +1870,7 @@ msgstr "" #| "\t 70000.00€ Hivos\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" "\t- Fondos restringidos (resultados ya acordados con los patrocinadores)\n" "\t 70000.00€ Hivos\n" @@ -1889,8 +1889,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\t- Misceláneos\n" "\t $1000.00 venta de hardware viejo\n" @@ -1910,8 +1910,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- Infraestructura\n" @@ -1929,9 +1929,9 @@ msgstr "" #| "\t -988.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\t- Viajes & reuniones\n" "\t -9279.73€ viajes\n" @@ -1946,7 +1946,7 @@ msgstr "" #| "\t $-4860.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" "\t- Subcontratación\n" @@ -1964,9 +1964,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\t- Gastos corrientes\n" "\t $-2179.95 administración\n" @@ -1988,14 +1988,14 @@ msgstr "" #| "\t -8.85Ƀ lost bitcoins\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\t- Misceláneos\n" "\t -4151.64€ bitcoins perdidos\n" @@ -2019,8 +2019,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2049,9 +2049,9 @@ msgstr "Declaración de ganancias para 2014" msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\t- Donaciones\n" "\t $33376.83 por medio de Freedom of the Press Foundation\n" @@ -2072,8 +2072,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2100,8 +2100,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\t- Misceláneos\n" "\t $3775.00 cambiar anulación\n" @@ -2121,8 +2121,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- Infraestructura\n" @@ -2142,11 +2142,11 @@ msgstr "" #| "\t -330.30€ guests\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\t- Viajes & reuniones\n" "\t -4907.08€ viajes\n" @@ -2164,7 +2164,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" "\t- Subcontratación\n" "\t $-53414.00 subcontratación\n" @@ -2181,9 +2181,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\t- Gastos corrientes\n" "\t $-568.53 comisiones bancarias\n" @@ -2203,12 +2203,12 @@ msgstr "" #| "\t -40847.00€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\t- Misceláneos\n" "\t -65.00€ etiquetas\n" @@ -2230,8 +2230,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2260,12 +2260,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tRevenues:\n" "\t $21000.00 NDI\n" @@ -2293,16 +2293,16 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tGastos:\n" "\t -60.00€ bancarios\n" @@ -2328,8 +2328,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2351,9 +2351,9 @@ msgstr "Declaración de ganancias para 2012" #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tIngresos:\n" "\t 137.30€ tax\n" @@ -2375,13 +2375,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tExpensas:\n" "\t $-3810.71 hardware\n" @@ -2404,7 +2404,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2433,9 +2433,9 @@ msgstr "Declaración de ganancias para 2011" #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tRevenues:\n" "\t 7500.00€ Tor\n" @@ -2455,11 +2455,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tExpensas:\n" "\t $-555.00 hardware\n" @@ -2480,7 +2480,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2514,9 +2514,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tExpenses:\n" "\t -2025.00€ hardware\n" @@ -2534,7 +2534,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/finances.fr.po b/wiki/src/doc/about/finances.fr.po index 0fdf75106e3..381e80d127a 100644 --- a/wiki/src/doc/about/finances.fr.po +++ b/wiki/src/doc/about/finances.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -76,7 +76,7 @@ msgstr "Dons" #| " $25997.00 via PayPal\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -142,10 +142,10 @@ msgstr " 114591,40 $ Bureau of Democracy, Human Rights, and #| " 52346.82€\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -158,7 +158,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" " 1000,00 $ Exam Success\n" " 1205,00 € Freiheitsfoo\n" @@ -196,10 +196,10 @@ msgstr "Dépenses" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" " - Infrastructure\n" " -3562,86 $ matériel informatique\n" @@ -217,7 +217,7 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" " - Sous-traitance\n" " -10994,18 $ sous-traitance\n" @@ -230,7 +230,7 @@ msgstr "" #| " -16256.40€ meetings\n" msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" " - Voyages et réunions\n" " -16256,40 € réunions\n" @@ -251,14 +251,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" " - Frais de fonctionnement\n" " -20929,34 $ administration\n" @@ -283,8 +283,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" " - Divers\n" " -2,35627 ZEC dons\n" @@ -307,7 +307,7 @@ msgstr "" #| " -302363.56€\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -315,7 +315,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" " - Impôts\n" " -6114,94 € TVA\n" @@ -356,7 +356,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" " 107576,03 $\n" " 0,03295924 BCH\n" @@ -394,7 +394,7 @@ msgstr " Revenus :\n" #| " $43621.50 via PayPal\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -416,9 +416,9 @@ msgstr "" #| " 11.30Z zcash\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -438,7 +438,7 @@ msgstr "" #| " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -469,16 +469,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -514,9 +514,9 @@ msgstr " Dépenses :\n" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" " - Infrastructure\n" " -2431,08$ matériel informatique\n" @@ -531,7 +531,7 @@ msgstr "" #| " -257918.69€ subcontracting\n" msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" " - Sous-traitance\n" " -257918,69 € sous-traitance\n" @@ -543,7 +543,7 @@ msgstr "" #| " -4025.19€ meetings\n" msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" " - Voyages et réunions\n" " -4025,19€ réunions\n" @@ -561,11 +561,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" " - Frais de fonctionnement\n" " -8560,53$ administration\n" @@ -586,11 +586,11 @@ msgstr "" #| " -4316.13€ T-shirts\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" " - Divers\n" " -12,32€ dépenses_exceptionnelles\n" @@ -606,7 +606,7 @@ msgstr "" #| " -5139.21€ VAT\n" msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" " - Taxes\n" " -5139,21€ TVA\n" @@ -621,8 +621,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" " --------------------\n" " -17271,67$\n" @@ -644,11 +644,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -692,13 +692,13 @@ msgstr "\tRevenus :\n" #| "\t 11.28Z zcash\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -722,7 +722,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" "\t- Fonds réservés (livrables)\n" "\t 120310,00 $ Mozilla Open Source Support\n" @@ -757,11 +757,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" "\t- Sponsors\n" "\t 1408,20 $ Freiheitsfoo\n" @@ -793,8 +793,8 @@ msgstr "\tDépenses :\n" #| "\t $-997.50 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\t- Infrastructure\n" @@ -811,9 +811,9 @@ msgstr "" #| "\t -981.61€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\t- Voyages et réunions\n" "\t -500,55€ déplacements\n" @@ -827,7 +827,7 @@ msgstr "" #| "\t -252240.25€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" "\t- Sous-traitance\n" "\t -252 240,25€ sous-traitance\n" @@ -844,10 +844,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -10 010,92$ administration\n" @@ -866,10 +866,10 @@ msgstr "" #| "\t -77.48€ others\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\t- Divers\n" "\t -191,56€ envois\n" @@ -888,11 +888,11 @@ msgstr "" #| "\t -0.02Ƀ\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\t- Impôts\n" "\t -10 397,13€ TVA\n" @@ -915,10 +915,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -958,15 +958,15 @@ msgstr "Compte de résultat pour 2019" msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\t- Dons\n" "\t 32176,74$ par PayPal\n" @@ -989,7 +989,7 @@ msgstr "" #| "\t $114890.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -1011,7 +1011,7 @@ msgstr "" #| "\t $900.00 Tor\n" msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -1040,12 +1040,12 @@ msgstr "" #| "\t 38095.31€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\t- T-shirts\n" "\t 61,88€ T-shirts\n" @@ -1064,9 +1064,9 @@ msgstr "" #| "\t -1082.13€ Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\t- Infrastructure\n" "\t -1564,65€ matériel informatique\n" @@ -1083,10 +1083,10 @@ msgstr "" #| "\t -120.08€ tickets to events\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\t- Voyages et réunions\n" "\t -4650,76€ déplacement\n" @@ -1101,7 +1101,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" "\t- Sous-traitance\n" "\t -228589,69€ sous-traitance\n" @@ -1118,10 +1118,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -4546,48$ administration\n" @@ -1138,8 +1138,8 @@ msgstr "" #| "\t -112.52€ promotion material\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\t- Divers\n" "\t -15,29€ fournitures de bureau\n" @@ -1156,11 +1156,11 @@ msgstr "" #| "\t -258694.56€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\t- Impôts\n" "\t -12403,96€ TVA\n" @@ -1182,9 +1182,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -1218,9 +1218,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\t- Dons\n" "\t 47094,97$ par le DuckDuckGo Challenge\n" @@ -1238,7 +1238,7 @@ msgstr "" #| "\t $37500.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" "\t- Fonds réservés (livrables)\n" @@ -1258,13 +1258,13 @@ msgstr "" #| "\t 21310.72€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\t- Sponsors\n" "\t 0,15Ƀ DeepOnion\n" @@ -1286,9 +1286,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\t- Infrastructure\n" "\t -1761,58$ matériel informatique\n" @@ -1309,11 +1309,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\t- Voyage & réunions\n" "\t -60,24$ frais de bouche\n" @@ -1332,7 +1332,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" "\t- Sous-traitance\n" "\t -2585,50$ sous-traitance\n" @@ -1350,10 +1350,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -15428,92$ administration\n" @@ -1370,8 +1370,8 @@ msgstr "" #| "\t -108.29€ T-shirts\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\t- Divers\n" "\t -190,17€ fournitures de bureau\n" @@ -1388,11 +1388,11 @@ msgstr "" #| "\t -168883.98€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\t- Impôts\n" "\t -6371,36€ TVA\n" @@ -1413,8 +1413,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -1443,9 +1443,9 @@ msgstr "Compte de résultat pour 2017" msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\t- Dons\n" "\t 23579,15$ via Riseup Labs\n" @@ -1462,7 +1462,7 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" "\t- Sponsors\n" "\t 1000,00$ ExpressVPN\n" @@ -1475,7 +1475,7 @@ msgstr "" #| "\t 11000.00€ Lush\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" "\t- Fonds réservés (livrables)\n" "\t 11 000,00€ Lush\n" @@ -1491,11 +1491,11 @@ msgstr "" #| "\t 22564.98€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\t- T-shirts\n" "\t 1272,35€ T-shirts\n" @@ -1514,9 +1514,9 @@ msgstr "" #| "\t $-4380.00 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\t- Infrastructure\n" @@ -1539,14 +1539,14 @@ msgstr "" #| "\t -44.95€ misc\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\t- Voyage et réunions\n" "\t -9449,31€ déplacement\n" @@ -1566,7 +1566,7 @@ msgstr "" #| "\t $-2205.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" "\t- Sous-traitance\n" @@ -1585,10 +1585,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -13000,96$ administration\n" @@ -1605,8 +1605,8 @@ msgstr "" #| "\t -163.57€ office supplies\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\t- Divers\n" "\t -3279,64€ T-shirts\n" @@ -1623,11 +1623,11 @@ msgstr "" #| "\t -154322.32€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\t- Impôts\n" "\t -19334,81€ TVA\n" @@ -1647,9 +1647,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -1680,9 +1680,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\t- Dons\n" "\t 21908,52$ par Riseup Labs\n" @@ -1711,7 +1711,7 @@ msgstr "" #| "\t 2000.00€ Mediapart\n" msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" "\t- Sponsors\n" "\t 2000,00€ Mediapart\n" @@ -1727,11 +1727,11 @@ msgstr "" #| "\t 16674.23€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\t- T-shirts\n" "\t 180,47€ T-shirts\n" @@ -1750,8 +1750,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\t- Infrastructure\n" "\t -2351,70$ matériel informatique\n" @@ -1769,11 +1769,11 @@ msgstr "" #| "\t -2577.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\t- Voyage et réunions\n" "\t -7566,00€ déplacement\n" @@ -1790,7 +1790,7 @@ msgstr "" #| "\t $-5945.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" "\t- Sous-traitance\n" @@ -1807,9 +1807,9 @@ msgstr "" #| "\t $-170.00 banking fees\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" @@ -1826,8 +1826,8 @@ msgstr "" #| "\t -30.00€ communication\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\t- Divers\n" "\t -115,43€ achats non stockés\n" @@ -1844,11 +1844,11 @@ msgstr "" #| "\t -165288.03€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\t- Impôts\n" "\t -12034,02€ TVA\n" @@ -1869,8 +1869,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -1902,10 +1902,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\t- Dons\n" "\t 35000,00$ par Riseup Labs\n" @@ -1922,7 +1922,7 @@ msgstr "" #| "\t 70000.00€ Hivos\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" "\t- Fonds réservés (livrables)\n" "\t 70 000,00 € Hivos\n" @@ -1941,8 +1941,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\t- Divers\n" "\t 1000,00$ vente d'ancien matériel informatique\n" @@ -1962,8 +1962,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- Infrastructure\n" @@ -1981,9 +1981,9 @@ msgstr "" #| "\t -988.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\t- Voyage et réunions\n" "\t -9279,73€ déplacement\n" @@ -1998,7 +1998,7 @@ msgstr "" #| "\t $-4860.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" "\t- Sous-traitance\n" @@ -2016,9 +2016,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -2179,95$ administration\n" @@ -2040,14 +2040,14 @@ msgstr "" #| "\t -8.85Ƀ lost bitcoins\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\t- Divers\n" "\t -4151,64€ bitcoins perdus\n" @@ -2071,8 +2071,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -2101,9 +2101,9 @@ msgstr "Compte de résultat pour 2014" msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\t- Dons\n" "\t 33376,83$ par Freedom of the Press Foundation\n" @@ -2124,8 +2124,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2152,8 +2152,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\t- Divers\n" "\t 3775,00 $ avoirs de facturation\n" @@ -2173,8 +2173,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- Infrastructure\n" @@ -2194,11 +2194,11 @@ msgstr "" #| "\t -330.30€ guests\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\t- Voyage et réunions\n" "\t -4907,08€ déplacement\n" @@ -2216,7 +2216,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" "\t- Sous-traitance\n" "\t -53414,00$ sous-traitance\n" @@ -2233,9 +2233,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\t- Frais de fonctionnement\n" "\t -568,53$ frais bancaires\n" @@ -2255,12 +2255,12 @@ msgstr "" #| "\t -40847.00€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\t- Divers\n" "\t -65,00€ autocollants\n" @@ -2282,8 +2282,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -2312,12 +2312,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tProduits :\n" "\t 21000,00$ NDI\n" @@ -2345,16 +2345,16 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tCharges :\n" "\t -60,00€ frais bancaires\n" @@ -2380,8 +2380,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -2403,9 +2403,9 @@ msgstr "Compte de résultat pour 2012" #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tProduits :\n" "\t 137,30€ taxes\n" @@ -2427,13 +2427,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tCharges :\n" "\t -3810,71$ matériel\n" @@ -2456,7 +2456,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -2485,9 +2485,9 @@ msgstr "Compte de résultat pour 2011" #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tProduits :\n" "\t 7500,00€ Tor\n" @@ -2507,11 +2507,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tCharges :\n" "\t -555,00$ matériel\n" @@ -2532,7 +2532,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" @@ -2566,9 +2566,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tCharges :\n" "\t -2025,00€ matériel\n" @@ -2586,7 +2586,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tTotal :\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/finances.it.po b/wiki/src/doc/about/finances.it.po index 30dca3648b1..6edfa5ae089 100644 --- a/wiki/src/doc/about/finances.it.po +++ b/wiki/src/doc/about/finances.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-29 23:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -79,7 +79,7 @@ msgstr "" #| " -2151€ Internet hosting\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -125,10 +125,10 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -141,7 +141,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" " Total:\n" " --------------------\n" @@ -170,10 +170,10 @@ msgstr "\tCosti:\n" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" " - Infrastrutura\n" " $-2431.08 hardware\n" @@ -189,7 +189,7 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -201,7 +201,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -219,14 +219,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" " - Costi di mantenimento\n" " $-8560.53 administrazione\n" @@ -250,8 +250,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" " - Costi di mantenimento\n" " $-8560.53 administrazione\n" @@ -271,7 +271,7 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -279,7 +279,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" " Total:\n" " --------------------\n" @@ -314,7 +314,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" " Total:\n" " --------------------\n" @@ -353,7 +353,7 @@ msgstr "" #| " -2151€ Internet hosting\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -374,9 +374,9 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -394,7 +394,7 @@ msgstr "" #, no-wrap msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -411,16 +411,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -450,9 +450,9 @@ msgstr "" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" " - Infrastrutura\n" " $-2431.08 hardware\n" @@ -467,7 +467,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -479,7 +479,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -497,11 +497,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" " - Costi di mantenimento\n" " $-8560.53 administrazione\n" @@ -523,11 +523,11 @@ msgstr "" #| " -351.77€ health care\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" " - Costi di mantenimento\n" " $-8560.53 administrazione\n" @@ -544,7 +544,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -560,8 +560,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" " --------------------\n" " $-17271.67\n" @@ -579,11 +579,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -630,13 +630,13 @@ msgstr "\tEntrate:\n" #| "\t 324.82ɱ moneros\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" #. type: Plain text @@ -673,11 +673,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" #. type: Plain text @@ -699,8 +699,8 @@ msgstr "\tCosti:\n" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\tExpenses:\n" @@ -725,9 +725,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -744,7 +744,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -762,10 +762,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -787,10 +787,10 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -810,11 +810,11 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -833,10 +833,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -873,15 +873,15 @@ msgstr "Rendiconto finanziario per il 2019" msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\t- Donazioni\n" "\t $32176.74 via PayPal\n" @@ -899,7 +899,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -917,7 +917,7 @@ msgstr "" #| "\t $900.00 Tor\n" msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -946,12 +946,12 @@ msgstr "" #| "\t 38095.31€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\t- Magliette\n" "\t 61.88€ Magliette\n" @@ -970,9 +970,9 @@ msgstr "" #| "\t -1082.13€ Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\t- Infrastruttura\n" "\t -1564.65€ hardware\n" @@ -989,10 +989,10 @@ msgstr "" #| "\t -120.08€ tickets to events\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\t- Viaggi & incontri\n" "\t -4650.76€ travel\n" @@ -1007,7 +1007,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -1024,10 +1024,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\t- Costi di gestione\n" "\t $-4546.48 administration\n" @@ -1048,8 +1048,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1070,11 +1070,11 @@ msgstr "" #| "\t -258694.56€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\t- Tasse\n" "\t -12403.96€ VAT\n" @@ -1096,9 +1096,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1141,9 +1141,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\tRicavi:\n" "\t- Donazioni\n" @@ -1166,7 +1166,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" @@ -1184,13 +1184,13 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\tRicavi:\n" "\t $21000.00 NDI\n" @@ -1212,9 +1212,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\t- Infrastruttura\n" "\t -1564.65€ hardware\n" @@ -1236,11 +1236,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\tExpenses:\n" "\t $-3810.71 hardware\n" @@ -1260,7 +1260,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -1278,10 +1278,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1303,8 +1303,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1324,11 +1324,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1348,8 +1348,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1389,9 +1389,9 @@ msgstr "Rendiconto finanziario per il 2017" msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\tRicavi:\n" "\t- Donazioni\n" @@ -1415,14 +1415,14 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" #. type: Plain text #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" #. type: Plain text @@ -1435,11 +1435,11 @@ msgstr "" #| "\t 42106.69€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1461,9 +1461,9 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\tExpenses:\n" @@ -1492,14 +1492,14 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\tSpese:\n" "\t -60.00€ banking\n" @@ -1520,7 +1520,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" "\t- Subappalti\n" @@ -1539,10 +1539,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1564,8 +1564,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1585,11 +1585,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1608,9 +1608,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1651,9 +1651,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\tRicavi:\n" "\t- Donazioni\n" @@ -1685,7 +1685,7 @@ msgstr "" #, no-wrap msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" #. type: Plain text @@ -1698,11 +1698,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1725,8 +1725,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\tExpenses:\n" "\t $-3810.71 hardware\n" @@ -1750,11 +1750,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1771,7 +1771,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" "\t- Subappalti\n" @@ -1788,9 +1788,9 @@ msgstr "" #| "\t -0.01Ƀ banking fees\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\t- Costi di gestione\n" @@ -1812,8 +1812,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1835,11 +1835,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -1861,8 +1861,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1903,10 +1903,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\tRicavi:\n" "\t- Donazioni\n" @@ -1929,7 +1929,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" #. type: Plain text @@ -1945,8 +1945,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -1969,8 +1969,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tExpenses:\n" @@ -1995,9 +1995,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -2014,7 +2014,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" "\t- Subappalti\n" @@ -2033,9 +2033,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -2059,14 +2059,14 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\tRicavi:\n" "\t $21000.00 NDI\n" @@ -2090,8 +2090,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2131,9 +2131,9 @@ msgstr "Rendiconto finanziario per il 2014" msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\tRicavi:\n" "\t- Donazioni\n" @@ -2166,8 +2166,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2194,8 +2194,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2218,8 +2218,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tExpenses:\n" @@ -2244,11 +2244,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -2266,7 +2266,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" "\t- Subappalti\n" "\t -228589.69€ subappalti\n" @@ -2282,9 +2282,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\t- Costi di gestione\n" "\t $-568.53 banking fees\n" @@ -2304,12 +2304,12 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\tExpenses:\n" "\t $-555.00 hardware\n" @@ -2331,8 +2331,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2361,12 +2361,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tRicavi:\n" "\t $21000.00 NDI\n" @@ -2394,16 +2394,16 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tCosti:\n" "\t -60.00€ commissioni bancarie\n" @@ -2429,8 +2429,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2452,9 +2452,9 @@ msgstr "Rendiconto finanziario per il 2012" #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tRicavi:\n" "\t 137.30€ tassa\n" @@ -2476,13 +2476,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tCosti:\n" "\t $-3810.71 hardware\n" @@ -2505,7 +2505,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2534,9 +2534,9 @@ msgstr "Rendiconto finanziario per il 2011" #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tRicavi:\n" "\t 7500.00€ Tor\n" @@ -2556,11 +2556,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tCosti:\n" "\t $-555.00 hardware\n" @@ -2581,7 +2581,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" @@ -2615,9 +2615,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tCosti:\n" "\t -2025.00€ hardware\n" @@ -2635,7 +2635,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tTotale:\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/finances.pt.po b/wiki/src/doc/about/finances.pt.po index d60b738a7fb..783ab59fff9 100644 --- a/wiki/src/doc/about/finances.pt.po +++ b/wiki/src/doc/about/finances.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -79,7 +79,7 @@ msgstr "" #| "\t -4285.18€\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -129,10 +129,10 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -145,7 +145,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -173,10 +173,10 @@ msgstr "" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -193,14 +193,14 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" #. type: Plain text @@ -216,14 +216,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -247,8 +247,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -268,7 +268,7 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -276,7 +276,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -307,7 +307,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -346,7 +346,7 @@ msgstr "" #| "\t -4285.18€\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -371,9 +371,9 @@ msgstr "" #| "\t -2960.65€\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -387,7 +387,7 @@ msgstr "" #, no-wrap msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -404,16 +404,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -443,9 +443,9 @@ msgstr "" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -461,14 +461,14 @@ msgstr "" #, no-wrap msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" #. type: Plain text #, no-wrap msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" #. type: Plain text @@ -484,11 +484,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -510,11 +510,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -528,7 +528,7 @@ msgstr "" #, no-wrap msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" #. type: Plain text @@ -542,8 +542,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -562,11 +562,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -609,13 +609,13 @@ msgstr "" #| "\t 3290.650000€\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" #. type: Plain text @@ -652,11 +652,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" #. type: Plain text @@ -678,8 +678,8 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\tDespesas:\n" @@ -704,9 +704,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -720,7 +720,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" #. type: Plain text @@ -736,10 +736,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -761,10 +761,10 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -784,11 +784,11 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -807,10 +807,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -849,15 +849,15 @@ msgstr "Declaração de renda de 2016\n" msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -875,7 +875,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -884,7 +884,7 @@ msgstr "" #, no-wrap msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -903,12 +903,12 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -930,9 +930,9 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -956,10 +956,10 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -973,7 +973,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" #. type: Plain text @@ -989,10 +989,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1014,8 +1014,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1035,11 +1035,11 @@ msgstr "" #| "\t -2960.65€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1059,9 +1059,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1100,9 +1100,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -1120,7 +1120,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" @@ -1138,13 +1138,13 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\tReceitas:\n" "\t $21000.00 NDI\n" @@ -1171,9 +1171,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -1200,11 +1200,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -1221,7 +1221,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" #. type: Plain text @@ -1237,10 +1237,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1262,8 +1262,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1283,11 +1283,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1307,8 +1307,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1344,9 +1344,9 @@ msgstr "Declaração de renda de 2016\n" msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -1365,14 +1365,14 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" #. type: Plain text #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" #. type: Plain text @@ -1385,11 +1385,11 @@ msgstr "" #| "\t 42106.69€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1411,9 +1411,9 @@ msgstr "" #| "\t -4285.18€\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\tDespesas:\n" @@ -1442,14 +1442,14 @@ msgstr "" #| "\t 3290.650000€\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -1467,7 +1467,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" @@ -1484,10 +1484,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1509,8 +1509,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1530,11 +1530,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1553,9 +1553,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1591,9 +1591,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -1620,7 +1620,7 @@ msgstr "" #, no-wrap msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" #. type: Plain text @@ -1633,11 +1633,11 @@ msgstr "" #| "\t -148613.80€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1660,8 +1660,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -1685,11 +1685,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1703,7 +1703,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" @@ -1719,9 +1719,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\tDespesas:\n" @@ -1744,8 +1744,8 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1767,11 +1767,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1793,8 +1793,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1830,10 +1830,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -1851,7 +1851,7 @@ msgstr "" #, no-wrap msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" #. type: Plain text @@ -1867,8 +1867,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -1891,8 +1891,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tDespesas:\n" @@ -1917,9 +1917,9 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1933,7 +1933,7 @@ msgstr "" #, no-wrap msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" @@ -1950,9 +1950,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -1976,14 +1976,14 @@ msgstr "" #| "\t 330.00€\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\tReceitas:\n" "\t $21000.00 NDI\n" @@ -2007,8 +2007,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2043,9 +2043,9 @@ msgstr "Declaração de renda de 2014" msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -2064,8 +2064,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2084,8 +2084,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2108,8 +2108,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\tDespesas:\n" @@ -2134,11 +2134,11 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -2153,7 +2153,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" #. type: Plain text @@ -2169,9 +2169,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -2193,12 +2193,12 @@ msgstr "" #| "\t -4238.32€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -2220,8 +2220,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2250,12 +2250,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tReceitas:\n" "\t $21000.00 NDI\n" @@ -2283,16 +2283,16 @@ msgstr "" #| "\t 3290.650000€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tDespesas:\n" "\t 60.000000€ banco\n" @@ -2318,8 +2318,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2341,9 +2341,9 @@ msgstr "Declaração de renda de 2012" #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tReceitas:\n" "\t 137.30€ impostos\n" @@ -2365,13 +2365,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tDespesas:\n" "\t $-3810.71 equipamento\n" @@ -2394,7 +2394,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2423,9 +2423,9 @@ msgstr "Declaração de renda de 2011" #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tReceitas:\n" "\t 7500.00€ Tor\n" @@ -2445,11 +2445,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tDespesas:\n" "\t $-555.00 equipamentos\n" @@ -2470,7 +2470,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" @@ -2504,9 +2504,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tDespesas:\n" "\t -2025.00€ equipamentos\n" @@ -2524,7 +2524,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tTotal:\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/finances.ru.po b/wiki/src/doc/about/finances.ru.po index f6190eb2f01..eaa9db8d1d5 100644 --- a/wiki/src/doc/about/finances.ru.po +++ b/wiki/src/doc/about/finances.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -80,7 +80,7 @@ msgstr "" #| "\t -558.67€ Internet hosting\n" msgid "" " $6715.01 via Riseup Labs\n" -" 10218.19€ via CCT\n" +" 10218.19€ via CCT\n" " $2215.91 via Benevity\n" " $25997.00 via PayPal\n" msgstr "" @@ -135,10 +135,10 @@ msgstr "" #| "\t 11.28Z\n" msgid "" " $1000.00 Exam Success\n" -" 1205.00€ Freiheitsfoo\n" +" 1205.00€ Freiheitsfoo\n" " $1000.00 Look to the Right\n" -" 10000.00€ Nym\n" -" 30923.63€ ProtonMail\n" +" 10000.00€ Nym\n" +" 30923.63€ ProtonMail\n" " 0.02600000 BTC ThinkPenguin\n" " $1400.00 Word Solver\n" " --------------------\n" @@ -151,7 +151,7 @@ msgid "" " -8.99999 XLM\n" " 113.818549746244 XMR\n" " 1.44253 ZEC\n" -" 52346.82€\n" +" 52346.82€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -179,10 +179,10 @@ msgstr "\tРаÑходы:\n" msgid "" " - Infrastructure\n" " $-3562.86 hardware\n" -" -681.17€ hardware\n" +" -681.17€ hardware\n" " $-2250.00 Internet hosting\n" " -0.346400000000 XMR Internet hosting\n" -" -7522.48€ Internet hosting\n" +" -7522.48€ Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" "\t $-1761.58 оборудование\n" @@ -199,7 +199,7 @@ msgstr "" msgid "" " - Subcontracting\n" " $-10994.18 subcontracting\n" -" -258227.34€ subcontracting\n" +" -258227.34€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t $-53414.00 ÑубподрÑды\n" @@ -212,7 +212,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -16256.40€ meetings\n" +" -16256.40€ meetings\n" msgstr "" "\t- СубподрÑды\n" "\t -228589.69€ ÑубподрÑды\n" @@ -229,14 +229,14 @@ msgstr "" msgid "" " - Running costs\n" " $-20929.34 administration\n" -" -8183.83€ administration\n" +" -8183.83€ administration\n" " $-7501.91 banking fees\n" " -0.00693049 BTC banking fees\n" " -0.00031500 ETH banking fees\n" " -0.014 HNS banking fees\n" " -0.000016260000 XMR banking fees\n" -" -2629.22€ banking fees\n" -" -2601.90€ health_care\n" +" -2629.22€ banking fees\n" +" -2601.90€ health_care\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-15428.92 админиÑтративные раÑходы\n" @@ -258,8 +258,8 @@ msgid "" " - Misc\n" " -2.35627 ZEC donations\n" " $-105.00 non_stored_purchases\n" -" -33.67€ non_stored_purchases\n" -" -112.60€ shipping\n" +" -33.67€ non_stored_purchases\n" +" -112.60€ shipping\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-15428.92 админиÑтративные раÑходы\n" @@ -281,7 +281,7 @@ msgstr "" #| "\t 11.28Z\n" msgid "" " - Taxes\n" -" -6114.94€ VAT\n" +" -6114.94€ VAT\n" " --------------------\n" " $-45343.28\n" " -0.00693049 BTC\n" @@ -289,7 +289,7 @@ msgid "" " -0.014 HNS\n" " -0.346416260000 XMR\n" " -2.35627 ZEC\n" -" -302363.56€\n" +" -302363.56€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -326,7 +326,7 @@ msgid "" " -8.99999 XLM\n" " 113.472133486244 XMR\n" " -0.91374 ZEC\n" -" -250016.74€\n" +" -250016.74€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -365,7 +365,7 @@ msgstr "\tПоÑтуплениÑ:\n" #| "\t -558.67€ Internet hosting\n" msgid "" " - Donations\n" -" 12326.23€ via CCT\n" +" 12326.23€ via CCT\n" " $6312.49 via Riseup Labs\n" " $1998.88 via Benevity\n" " $43621.50 via PayPal\n" @@ -389,9 +389,9 @@ msgstr "" #| "\t 11.28Z\n" msgid "" " - Donations in cryptocurrencies\n" -" 8.92Ƀ bitcoin\n" -" 26.33Ξ ethereum\n" -" 345.69ɱ moneros\n" +" 8.92Ƀ bitcoin\n" +" 26.33Ξ ethereum\n" +" 345.69ɱ moneros\n" " 22250.19L lumens\n" " 11.30Z zcash\n" msgstr "" @@ -408,7 +408,7 @@ msgstr "" #, no-wrap msgid "" " - Restricted funds (funder deliverables)\n" -" 50000€ RIPE Network Coordination Center\n" +" 50000€ RIPE Network Coordination Center\n" " $24805 Internews UXFund\n" " $15933.50 Bureau of Democracy, Human Rights, and Labor\n" msgstr "" @@ -428,16 +428,16 @@ msgid "" " - Sponsors\n" " $2475 Tor\n" " $1400 Word Solver\n" -" 1100€ Freiheitsfoo\n" -" 0.02Ƀ ThinkPenguin\n" +" 1100€ Freiheitsfoo\n" +" 0.02Ƀ ThinkPenguin\n" " $1000 Exam Success\n" " $1000 SVKH\n" " --------------------\n" " $98546.37\n" -" 63426.23€\n" -" 8.94Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 63426.23€\n" +" 8.94Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -467,9 +467,9 @@ msgstr "\tРаÑходы:\n" msgid "" " - Infrastructure\n" " $-2431.08 hardware\n" -" -1810.25€ hardware\n" +" -1810.25€ hardware\n" " $-1575 Internet hosting\n" -" -2151€ Internet hosting\n" +" -2151€ Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" "\t $-1761.58 оборудование\n" @@ -484,7 +484,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Subcontracting\n" -" -257918.69€ subcontracting\n" +" -257918.69€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t -228589.69€ ÑубподрÑды\n" @@ -496,7 +496,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Travel & meetings\n" -" -4025.19€ meetings\n" +" -4025.19€ meetings\n" msgstr "" "\t- СубподрÑды\n" "\t -228589.69€ ÑубподрÑды\n" @@ -513,11 +513,11 @@ msgstr "" msgid "" " - Running costs\n" " $-8560.53 administration\n" -" -2413.22€ administration\n" +" -2413.22€ administration\n" " $-4681.40 banking fees\n" -" -0.01Ƀ banking fees\n" -" -2824.30€ banking fees\n" -" -351.77€ health care\n" +" -0.01Ƀ banking fees\n" +" -2824.30€ banking fees\n" +" -351.77€ health care\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-15428.92 админиÑтративные раÑходы\n" @@ -537,11 +537,11 @@ msgstr "" #| "\t -107.04€ banking fees\n" msgid "" " - Misc\n" -" -12.32€ exceptional_expenses\n" -" -282.70€ non_stored_purchases\n" +" -12.32€ exceptional_expenses\n" +" -282.70€ non_stored_purchases\n" " $-23.66 shipping\n" -" -324.40€ shipping\n" -" -4316.13€ T-shirts\n" +" -324.40€ shipping\n" +" -4316.13€ T-shirts\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-15428.92 админиÑтративные раÑходы\n" @@ -557,7 +557,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" " - Taxes\n" -" -5139.21€ VAT\n" +" -5139.21€ VAT\n" msgstr "" "\t- СубподрÑды\n" "\t -228589.69€ ÑубподрÑды\n" @@ -574,8 +574,8 @@ msgstr "" msgid "" " --------------------\n" " $-17271.67\n" -" -0.01Ƀ\n" -" -281569.18€\n" +" -0.01Ƀ\n" +" -281569.18€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -598,11 +598,11 @@ msgstr "" msgid "" " Total:\n" " --------------------\n" -" -218142.95€\n" +" -218142.95€\n" " $43383.06\n" -" 8.93Ƀ\n" -" 26.33Ξ\n" -" 345.69ɱ\n" +" 8.93Ƀ\n" +" 26.33Ξ\n" +" 345.69ɱ\n" " 22250.19L\n" " 11.30Z\n" msgstr "" @@ -645,13 +645,13 @@ msgstr "\tПоÑтуплениÑ:\n" #| "\t 11.28Z zcash\n" msgid "" "\t- Donations\n" -"\t 62416.65€ via CCT\n" +"\t 62416.65€ via CCT\n" "\t $42326.89 via PayPal\n" "\t $18114.83 via Riseup Labs\n" "\t $13018.55 via Benevity\n" -"\t 243.52€ cash\n" -"\t 2.99Ƀ bitcoins\n" -"\t 244.06ɱ moneros\n" +"\t 243.52€ cash\n" +"\t 2.99Ƀ bitcoins\n" +"\t 244.06ɱ moneros\n" "\t 9515.81L lumens\n" "\t 11.28Z zcash\n" msgstr "" @@ -675,7 +675,7 @@ msgstr "" msgid "" "\t- Restricted fund (funder deliverables)\n" "\t $120310.00 Mozilla Open Source Support\n" -"\t 9448.00€ The ISC Project\n" +"\t 9448.00€ The ISC Project\n" msgstr "" "\t- Целевые Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ (от доноров)\n" "\t $120310.00 Mozilla Open Source Support\n" @@ -710,11 +710,11 @@ msgid "" "\t $900.00 Tor\n" "\t--------------------\n" "\t $201118.47\n" -"\t 72108.17€\n" +"\t 72108.17€\n" "\t 9515.81L\n" -"\t 244.06ɱ\n" +"\t 244.06ɱ\n" "\t 11.28Z\n" -"\t 2.99Ƀ\n" +"\t 2.99Ƀ\n" msgstr "" "\t- СпонÑоры\n" "\t $1408.20 Freiheitsfoo\n" @@ -746,8 +746,8 @@ msgstr "\tРаÑходы:\n" #| "\t $-997.50 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -15.23€ hardware\n" -"\t -1186.94€ Internet hosting\n" +"\t -15.23€ hardware\n" +"\t -1186.94€ Internet hosting\n" "\t $-997.50 Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" @@ -764,9 +764,9 @@ msgstr "" #| "\t -981.61€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -500.55€ travel\n" -"\t -12.45€ food and drinks\n" -"\t -981.61€ hosting\n" +"\t -500.55€ travel\n" +"\t -12.45€ food and drinks\n" +"\t -981.61€ hosting\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -500.55€ поездки\n" @@ -780,7 +780,7 @@ msgstr "" #| "\t -252240.25€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -252240.25€ subcontracting\n" +"\t -252240.25€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t -252240.25€ ÑубподрÑды\n" @@ -797,10 +797,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-10010.92 administration\n" -"\t -3589.64€ administration\n" +"\t -3589.64€ administration\n" "\t $-3493.81 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -131.74€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -131.74€ banking fees\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-10010.92 админиÑтративные раÑходы\n" @@ -819,10 +819,10 @@ msgstr "" #| "\t -77.48€ others\n" msgid "" "\t- Misc\n" -"\t -191.56€ shipping\n" +"\t -191.56€ shipping\n" "\t $-102.17 shipping\n" -"\t -20.10€ office supplies\n" -"\t -77.48€ others\n" +"\t -20.10€ office supplies\n" +"\t -77.48€ others\n" msgstr "" "\t- Разное\n" "\t -191.56€ доÑтавка\n" @@ -841,11 +841,11 @@ msgstr "" #| "\t -0.02Ƀ\n" msgid "" "\t- Taxes\n" -"\t -10397.13€ VAT\n" +"\t -10397.13€ VAT\n" "\t--------------------\n" -"\t -269344.68€\n" +"\t -269344.68€\n" "\t $-14604.40\n" -"\t -0.02Ƀ\n" +"\t -0.02Ƀ\n" msgstr "" "\t- Ðалоги\n" "\t -10397.13€ ÐДС\n" @@ -868,10 +868,10 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -197236.51€\n" +"\t -197236.51€\n" "\t $186514.07\n" -"\t 2.97Ƀ\n" -"\t 244.06ɱ\n" +"\t 2.97Ƀ\n" +"\t 244.06ɱ\n" "\t 9515.81L\n" "\t 11.28Z\n" msgstr "" @@ -911,15 +911,15 @@ msgstr "Отчет о поÑтуплениÑÑ… и раÑходах за 2019 г msgid "" "\t- Donations\n" "\t $32176.74 via PayPal\n" -"\t 22881.61€ via CCT\n" +"\t 22881.61€ via CCT\n" "\t $5702.00 via Riseup Labs\n" "\t $1128.64 via Coinbase\n" -"\t 354.32€ via Zwiebelfreunde\n" +"\t 354.32€ via Zwiebelfreunde\n" "\t $839.85 via Benevity\n" -"\t 222.70€ via Flattr\n" -"\t 2129.00€ cash\n" -"\t 8.05Ƀ bitcoins\n" -"\t 324.82ɱ moneros\n" +"\t 222.70€ via Flattr\n" +"\t 2129.00€ cash\n" +"\t 8.05Ƀ bitcoins\n" +"\t 324.82ɱ moneros\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $32176.74 через PayPal\n" @@ -942,7 +942,7 @@ msgstr "" #| "\t $114890.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 12445.80€ The ISC Project\n" +"\t 12445.80€ The ISC Project\n" "\t $26220.00 Mozilla Open Source Support\n" "\t $114890.00 Open Technology Fund\n" msgstr "" @@ -964,7 +964,7 @@ msgstr "" #| "\t $900.00 Tor\n" msgid "" "\t- Sponsors\n" -"\t 6.00Ƀ PrivCoin\n" +"\t 6.00Ƀ PrivCoin\n" "\t $1200.00 ThinkPenguin\n" "\t $1000.00 Cooltechzone\n" "\t $1000.00 TOP10VPN\n" @@ -993,12 +993,12 @@ msgstr "" #| "\t 38095.31€\n" msgid "" "\t- T-shirts\n" -"\t 61.88€ T-shirts\n" +"\t 61.88€ T-shirts\n" "\t--------------------\n" "\t $187057.23\n" -"\t 14.05Ƀ\n" -"\t 324.82ɱ\n" -"\t 38095.31€\n" +"\t 14.05Ƀ\n" +"\t 324.82ɱ\n" +"\t 38095.31€\n" msgstr "" "\t- Футболки\n" "\t 61.88€ футболки\n" @@ -1017,9 +1017,9 @@ msgstr "" #| "\t -1082.13€ Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -1564.65€ hardware\n" +"\t -1564.65€ hardware\n" "\t $-1080.00 Internet hosting\n" -"\t -1082.13€ Internet hosting\n" +"\t -1082.13€ Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" "\t -1564.65€ оборудование\n" @@ -1036,10 +1036,10 @@ msgstr "" #| "\t -120.08€ tickets to events\n" msgid "" "\t- Travel & meetings\n" -"\t -4650.76€ travel\n" -"\t -1885.74€ food and drinks\n" -"\t -1074.34€ hosting\n" -"\t -120.08€ tickets to events\n" +"\t -4650.76€ travel\n" +"\t -1885.74€ food and drinks\n" +"\t -1074.34€ hosting\n" +"\t -120.08€ tickets to events\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -4650.76€ поездки\n" @@ -1054,7 +1054,7 @@ msgstr "" #| "\t -228589.69€ subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -228589.69€ subcontracting\n" +"\t -228589.69€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t -228589.69€ ÑубподрÑды\n" @@ -1071,10 +1071,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-4546.48 administration\n" -"\t -6866.93€ administration\n" +"\t -6866.93€ administration\n" "\t $-3067.86 banking fees\n" -"\t -328.47€ banking fees\n" -"\t -0.01Ƀ banking fees\n" +"\t -328.47€ banking fees\n" +"\t -0.01Ƀ banking fees\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-4546.48 админиÑтративные раÑходы\n" @@ -1091,8 +1091,8 @@ msgstr "" #| "\t -112.52€ promotion material\n" msgid "" "\t- Misc\n" -"\t -15.29€ office supplies\n" -"\t -112.52€ promotion material\n" +"\t -15.29€ office supplies\n" +"\t -112.52€ promotion material\n" msgstr "" "\t- Разное\n" "\t -15.29€ канцелÑÑ€Ñкие раÑходы\n" @@ -1109,11 +1109,11 @@ msgstr "" #| "\t -258694.56€\n" msgid "" "\t- Taxes\n" -"\t -12403.96€ VAT\n" +"\t -12403.96€ VAT\n" "\t--------------------\n" "\t $-8694.34\n" -"\t -0.01Ƀ\n" -"\t -258694.56€\n" +"\t -0.01Ƀ\n" +"\t -258694.56€\n" msgstr "" "\t- Ðалоги\n" "\t -12403.96€ ÐДС\n" @@ -1135,9 +1135,9 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $178362.89\n" -"\t 324.82ɱ\n" -"\t 14.04Ƀ\n" -"\t -220599.25€\n" +"\t 324.82ɱ\n" +"\t 14.04Ƀ\n" +"\t -220599.25€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -1171,9 +1171,9 @@ msgid "" "\t $47094.97 via the DuckDuckGo Challenge\n" "\t $29535.47 via Riseup Labs\n" "\t $3954.00 via Freedom of the Press Foundation\n" -"\t 12052.72€ via CCT\n" -"\t 960.80€ cash\n" -"\t 3.56Ƀ bitcoins\n" +"\t 12052.72€ via CCT\n" +"\t 960.80€ cash\n" +"\t 3.56Ƀ bitcoins\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $47094.97 через DuckDuckGo Challenge\n" @@ -1191,7 +1191,7 @@ msgstr "" #| "\t $37500.00 Open Technology Fund\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 8297.20€ The ISC Project\n" +"\t 8297.20€ The ISC Project\n" "\t $37500.00 Open Technology Fund\n" msgstr "" "\t- Целевые Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ (от доноров)\n" @@ -1211,13 +1211,13 @@ msgstr "" #| "\t 21310.72€\n" msgid "" "\t- Sponsors\n" -"\t 0.15Ƀ DeepOnion\n" +"\t 0.15Ƀ DeepOnion\n" "\t $200000.00 Handshake_Foundation\n" "\t $3900.00 Tor\n" "\t--------------------\n" "\t $321984.44\n" -"\t 3.71Ƀ\n" -"\t 21310.72€\n" +"\t 3.71Ƀ\n" +"\t 21310.72€\n" msgstr "" "\t- СпонÑоры\n" "\t 0.15Ƀ DeepOnion\n" @@ -1239,9 +1239,9 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-1761.58 hardware\n" -"\t -4522.03€ hardware\n" +"\t -4522.03€ hardware\n" "\t $-1380.00 Internet hosting\n" -"\t -558.67€ Internet hosting\n" +"\t -558.67€ Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" "\t $-1761.58 оборудование\n" @@ -1262,11 +1262,11 @@ msgstr "" msgid "" "\t- Travel & meetings\n" "\t $-60.24 food and drinks\n" -"\t -3781.38€ food and drinks\n" -"\t -4295.95€ hosting\n" -"\t -395.00€ tickets to events\n" +"\t -3781.38€ food and drinks\n" +"\t -4295.95€ hosting\n" +"\t -395.00€ tickets to events\n" "\t $-898.82 travel\n" -"\t -7875.89€ travel\n" +"\t -7875.89€ travel\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t $-60.24 еда и напитки\n" @@ -1285,7 +1285,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-2585.50 subcontracting\n" -"\t -138132.81€ subcontracting\n" +"\t -138132.81€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t $-2585.50 ÑубподрÑды\n" @@ -1303,10 +1303,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-15428.92 administration\n" -"\t -2545.39€ administration\n" +"\t -2545.39€ administration\n" "\t $-911.73 banking fees\n" -"\t -0.02Ƀ banking fees\n" -"\t -107.04€ banking fees\n" +"\t -0.02Ƀ banking fees\n" +"\t -107.04€ banking fees\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-15428.92 админиÑтративные раÑходы\n" @@ -1323,8 +1323,8 @@ msgstr "" #| "\t -108.29€ T-shirts\n" msgid "" "\t- Misc\n" -"\t -190.17€ office supplies\n" -"\t -108.29€ T-shirts\n" +"\t -190.17€ office supplies\n" +"\t -108.29€ T-shirts\n" msgstr "" "\t- Разное\n" "\t -190.17€ канцелÑÑ€Ñкие раÑходы\n" @@ -1341,11 +1341,11 @@ msgstr "" #| "\t -168883.98€\n" msgid "" "\t- Taxes\n" -"\t -6371.36€ VAT\n" +"\t -6371.36€ VAT\n" "\t--------------------\n" "\t $-23026.79\n" -"\t -0.02Ƀ\n" -"\t -168883.98€\n" +"\t -0.02Ƀ\n" +"\t -168883.98€\n" msgstr "" "\t- Ðалоги\n" "\t -6371.36€ ÐДС\n" @@ -1366,8 +1366,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $298957.65\n" -"\t 3.69Ƀ\n" -"\t -147573.26€\n" +"\t 3.69Ƀ\n" +"\t -147573.26€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -1396,9 +1396,9 @@ msgstr "Отчет о поÑтуплениÑÑ… и раÑходах за 2017 г msgid "" "\t- Donations\n" "\t $23579.15 via Riseup Labs\n" -"\t 8246.82€ via CCT\n" -"\t 2045.81€ cash\n" -"\t 24.33Ƀ bitcoins\n" +"\t 8246.82€ via CCT\n" +"\t 2045.81€ cash\n" +"\t 24.33Ƀ bitcoins\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $23579.15 через Riseup Labs\n" @@ -1415,7 +1415,7 @@ msgstr "" msgid "" "\t- Sponsors\n" "\t $1000.00 ExpressVPN\n" -"\t 0.10Ƀ I2P\n" +"\t 0.10Ƀ I2P\n" msgstr "" "\t- СпонÑоры\n" "\t $1000.00 ExpressVPN\n" @@ -1428,7 +1428,7 @@ msgstr "" #| "\t 11000.00€ Lush\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 11000.00€ Lush\n" +"\t 11000.00€ Lush\n" msgstr "" "\t- Целевые Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ (от доноров)\n" "\t 11000.00€ Lush\n" @@ -1444,11 +1444,11 @@ msgstr "" #| "\t 22564.98€\n" msgid "" "\t- T-shirts\n" -"\t 1272.35€ T-shirts\n" +"\t 1272.35€ T-shirts\n" "\t--------------------\n" "\t $24579.15\n" -"\t 24.43Ƀ\n" -"\t 22564.98€\n" +"\t 24.43Ƀ\n" +"\t 22564.98€\n" msgstr "" "\t- Футболки\n" "\t 1272.35€ футболки\n" @@ -1467,9 +1467,9 @@ msgstr "" #| "\t $-4380.00 Internet hosting\n" msgid "" "\t- Infrastructure\n" -"\t -2706.56€ hardware\n" +"\t -2706.56€ hardware\n" "\t $-1586.97 hardware\n" -"\t -544.32€ Internet hosting\n" +"\t -544.32€ Internet hosting\n" "\t $-4380.00 Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" @@ -1492,14 +1492,14 @@ msgstr "" #| "\t -44.95€ misc\n" msgid "" "\t- Travel & meetings\n" -"\t -9449.31€ travel\n" +"\t -9449.31€ travel\n" "\t $-1720.26 travel\n" -"\t -4388.97€ food and drinks\n" +"\t -4388.97€ food and drinks\n" "\t $41.58 food and drinks\n" "\t $-382.07 hosting\n" -"\t -2032.33€ hosting\n" -"\t -586.61€ tickets to events\n" -"\t -44.95€ misc\n" +"\t -2032.33€ hosting\n" +"\t -586.61€ tickets to events\n" +"\t -44.95€ misc\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -9449.31€ поездки\n" @@ -1519,7 +1519,7 @@ msgstr "" #| "\t $-2205.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -108079.77€ subcontracting\n" +"\t -108079.77€ subcontracting\n" "\t $-2205.00 subcontracting\n" msgstr "" "\t- СубподрÑды\n" @@ -1538,10 +1538,10 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-13000.96 administration\n" -"\t -3672.65€ administration\n" +"\t -3672.65€ administration\n" "\t $-3901.12 banking fees\n" -"\t -0.18Ƀ banking fees\n" -"\t -18.00€ banking fees\n" +"\t -0.18Ƀ banking fees\n" +"\t -18.00€ banking fees\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-13000.96 админиÑтративные раÑходы\n" @@ -1558,8 +1558,8 @@ msgstr "" #| "\t -163.57€ office supplies\n" msgid "" "\t- Misc\n" -"\t -3279.64€ T-shirts\n" -"\t -163.57€ office supplies\n" +"\t -3279.64€ T-shirts\n" +"\t -163.57€ office supplies\n" msgstr "" "\t- Разное\n" "\t -3279.64€ футболки\n" @@ -1576,11 +1576,11 @@ msgstr "" #| "\t -154322.32€\n" msgid "" "\t- Taxes\n" -"\t -19334.81€ VAT\n" +"\t -19334.81€ VAT\n" "\t--------------------\n" "\t $-27217.96\n" -"\t -0.18Ƀ\n" -"\t -154322.32€\n" +"\t -0.18Ƀ\n" +"\t -154322.32€\n" msgstr "" "\t- Ðалоги\n" "\t -19334.81€ ÐДС\n" @@ -1600,9 +1600,9 @@ msgstr "" msgid "" "\tTotal:\n" "\t--------------------\n" -"\t -131757.34€\n" +"\t -131757.34€\n" "\t $-2638.81\n" -"\t 24.26Ƀ\n" +"\t 24.26Ƀ\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -1633,9 +1633,9 @@ msgid "" "\t- Donations\n" "\t $21908.52 via Riseup Labs\n" "\t $7586.00 via Freedom of the Press Foundation\n" -"\t 13709.76€ via Zwiebelfreunde\n" -"\t 784.00€ cash\n" -"\t 72.35Ƀ bitcoins\n" +"\t 13709.76€ via Zwiebelfreunde\n" +"\t 784.00€ cash\n" +"\t 72.35Ƀ bitcoins\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $21908.52 через Riseup Labs\n" @@ -1664,7 +1664,7 @@ msgstr "" #| "\t 2000.00€ Mediapart\n" msgid "" "\t- Sponsors\n" -"\t 2000.00€ Mediapart\n" +"\t 2000.00€ Mediapart\n" msgstr "" "\t- СпонÑоры\n" "\t 2000.00€ Mediapart\n" @@ -1680,11 +1680,11 @@ msgstr "" #| "\t 16674.23€\n" msgid "" "\t- T-shirts\n" -"\t 180.47€ T-shirts\n" +"\t 180.47€ T-shirts\n" "\t--------------------\n" "\t $319494.52\n" -"\t 72.35Ƀ\n" -"\t 16674.23€\n" +"\t 72.35Ƀ\n" +"\t 16674.23€\n" msgstr "" "\t- Футболки\n" "\t 180.47€ футболки\n" @@ -1703,8 +1703,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-2351.70 hardware\n" -"\t -2081.40€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -2081.40€ hardware\n" +"\t -900.00€ Internet hosting\n" msgstr "" "\t- ИнфраÑтруктура\n" "\t $-2351.70 оборудование\n" @@ -1722,11 +1722,11 @@ msgstr "" #| "\t -2577.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -7566.00€ travel\n" +"\t -7566.00€ travel\n" "\t $-526.74 travel\n" -"\t -3789.61€ food and drinks\n" +"\t -3789.61€ food and drinks\n" "\t $-25.75 food and drinks\n" -"\t -2577.00€ hosting\n" +"\t -2577.00€ hosting\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -7566.00€ поездки\n" @@ -1743,7 +1743,7 @@ msgstr "" #| "\t $-5945.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -128135.54€ subcontracting\n" +"\t -128135.54€ subcontracting\n" "\t $-5945.00 subcontracting\n" msgstr "" "\t- СубподрÑды\n" @@ -1760,9 +1760,9 @@ msgstr "" #| "\t $-170.00 banking fees\n" msgid "" "\t- Running costs\n" -"\t -8038.03€ administration\n" +"\t -8038.03€ administration\n" "\t $-5324.73 administration\n" -"\t -21.00€ banking fees\n" +"\t -21.00€ banking fees\n" "\t $-170.00 banking fees\n" msgstr "" "\t- Текущие раÑходы\n" @@ -1779,8 +1779,8 @@ msgstr "" #| "\t -30.00€ communication\n" msgid "" "\t- Misc\n" -"\t -115.43€ non stored purchases\n" -"\t -30.00€ communication\n" +"\t -115.43€ non stored purchases\n" +"\t -30.00€ communication\n" msgstr "" "\t- Разное\n" " -115,43€ быÑтропортÑщиеÑÑ Ñ‚Ð¾Ð²Ð°Ñ€Ñ‹\n" @@ -1797,11 +1797,11 @@ msgstr "" #| "\t -165288.03€\n" msgid "" "\t- Taxes\n" -"\t -12034.02€ VAT\n" +"\t -12034.02€ VAT\n" "\t $-37544.00 income taxes\n" "\t--------------------\n" "\t $-51887.92\n" -"\t -165288.03€\n" +"\t -165288.03€\n" msgstr "" "\t- Ðалоги\n" "\t -12034.02€ ÐДС\n" @@ -1822,8 +1822,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $268406.60\n" -"\t 72.35Ƀ\n" -"\t -148613.80€\n" +"\t 72.35Ƀ\n" +"\t -148613.80€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -1855,10 +1855,10 @@ msgid "" "\t- Donations\n" "\t $35000.00 via Riseup Labs\n" "\t $8599.00 via Freedom of the Press Foundation\n" -"\t 6995.74€ via Zwiebelfreunde\n" +"\t 6995.74€ via Zwiebelfreunde\n" "\t $ 47.70 cash\n" -"\t 557.05€ cash\n" -"\t 31.00Ƀ bitcoins\n" +"\t 557.05€ cash\n" +"\t 31.00Ƀ bitcoins\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $35000.00 через Riseup Labs\n" @@ -1875,7 +1875,7 @@ msgstr "" #| "\t 70000.00€ Hivos\n" msgid "" "\t- Restricted funds (funder deliverables)\n" -"\t 70000.00€ Hivos\n" +"\t 70000.00€ Hivos\n" msgstr "" "\t- Целевые Ð¿Ð¾Ð¶ÐµÑ€Ñ‚Ð²Ð¾Ð²Ð°Ð½Ð¸Ñ (от доноров)\n" "\t 70000.00€ Hivos\n" @@ -1894,8 +1894,8 @@ msgid "" "\t $1000.00 selling old hardware\n" "\t--------------------\n" "\t $44646.70\n" -"\t 31.00Ƀ\n" -"\t 77552.79€\n" +"\t 31.00Ƀ\n" +"\t 77552.79€\n" msgstr "" "\t- Разное\n" "\t $1000.00 продажа Ñтарого оборудованиÑ\n" @@ -1915,8 +1915,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-787.23 hardware\n" -"\t -775.41€ hardware\n" -"\t -900.00€ Internet hosting\n" +"\t -775.41€ hardware\n" +"\t -900.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- ИнфраÑтруктура\n" @@ -1934,9 +1934,9 @@ msgstr "" #| "\t -988.00€ hosting\n" msgid "" "\t- Travel & meetings\n" -"\t -9279.73€ travel\n" -"\t -8155.21€ food and drinks\n" -"\t -988.00€ hosting\n" +"\t -9279.73€ travel\n" +"\t -8155.21€ food and drinks\n" +"\t -988.00€ hosting\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -9279.73€ поездки\n" @@ -1951,7 +1951,7 @@ msgstr "" #| "\t $-4860.00 subcontracting\n" msgid "" "\t- Subcontracting\n" -"\t -146365.22€ subcontracting\n" +"\t -146365.22€ subcontracting\n" "\t $-4860.00 subcontracting\n" msgstr "" "\t- СубподрÑды\n" @@ -1969,9 +1969,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-2179.95 administration\n" -"\t -3849.79€ administration\n" +"\t -3849.79€ administration\n" "\t $-85.00 banking fees\n" -"\t -106.41€ banking fees\n" +"\t -106.41€ banking fees\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-2179.95 админиÑтративные раÑходы\n" @@ -1993,14 +1993,14 @@ msgstr "" #| "\t -8.85Ƀ lost bitcoins\n" msgid "" "\t- Misc\n" -"\t -4151.64€ lost bitcoins\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -4151.64€ lost bitcoins\n" +"\t -8.85Ƀ lost bitcoins\n" "\t $-702.77 income taxes\n" -"\t -39.90€ promotion material\n" +"\t -39.90€ promotion material\n" "\t--------------------\n" "\t $-8774.95\n" -"\t -174611.30€\n" -"\t -8.85Ƀ lost bitcoins\n" +"\t -174611.30€\n" +"\t -8.85Ƀ lost bitcoins\n" msgstr "" "\t- Разное\n" "\t -4151.64€ потерÑнных биткойнов\n" @@ -2024,8 +2024,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $35871.75\n" -"\t -97058.51€\n" -"\t 22.15Ƀ\n" +"\t -97058.51€\n" +"\t 22.15Ƀ\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -2054,9 +2054,9 @@ msgstr "Отчет о поÑтуплениÑÑ… и раÑходах за 2014 г msgid "" "\t- Donations\n" "\t $33376.83 via Freedom of the Press Foundation\n" -"\t 71.67Ƀ via bitcoin\n" -"\t 7150.19€ via Zwiebelfreunde\n" -"\t 803.50€ misc\n" +"\t 71.67Ƀ via bitcoin\n" +"\t 7150.19€ via Zwiebelfreunde\n" +"\t 803.50€ misc\n" msgstr "" "\t- ПожертвованиÑ\n" "\t $33376.83 через фонд Freedom of the Press\n" @@ -2077,8 +2077,8 @@ msgstr "" msgid "" "\t- Restricted funds (funder deliverables)\n" "\t $50000.00 Access Now\n" -"\t 5000.00€ FFIS\n" -"\t 70000.00€ Hivos\n" +"\t 5000.00€ FFIS\n" +"\t 70000.00€ Hivos\n" "\t $34884.00 NDI\n" "\t $25800.00 OpenITP\n" "\t $5000.00 Tor\n" @@ -2105,8 +2105,8 @@ msgid "" "\t $3775.00 reverse reversal\n" "\t--------------------\n" "\t $152835.83\n" -"\t 71.67Ƀ\n" -"\t 82953.69€\n" +"\t 71.67Ƀ\n" +"\t 82953.69€\n" msgstr "" "\t- Разное\n" "\t $3775.00 возврат\n" @@ -2126,8 +2126,8 @@ msgstr "" msgid "" "\t- Infrastructure\n" "\t $-7856.38 hardware\n" -"\t -897.84€ hardware\n" -"\t -630.00€ Internet hosting\n" +"\t -897.84€ hardware\n" +"\t -630.00€ Internet hosting\n" "\t $-160.00 SSL certificates\n" msgstr "" "\t- ИнфраÑтруктура\n" @@ -2147,11 +2147,11 @@ msgstr "" #| "\t -330.30€ guests\n" msgid "" "\t- Travel & meetings\n" -"\t -4907.08€ travel\n" -"\t -3724.35€ hosting\n" -"\t -4112.27€ food and drinks\n" +"\t -4907.08€ travel\n" +"\t -3724.35€ hosting\n" +"\t -4112.27€ food and drinks\n" "\t $-400.00 guests\n" -"\t -330.30€ guests\n" +"\t -330.30€ guests\n" msgstr "" "\t- Поездки и вÑтречи\n" "\t -4907.08€ поездки\n" @@ -2169,7 +2169,7 @@ msgstr "" msgid "" "\t- Subcontracting\n" "\t $-53414.00 subcontracting\n" -"\t -20131.85€ subcontracting\n" +"\t -20131.85€ subcontracting\n" msgstr "" "\t- СубподрÑды\n" "\t $-53414.00 ÑубподрÑды\n" @@ -2186,9 +2186,9 @@ msgstr "" msgid "" "\t- Running costs\n" "\t $-568.53 banking fees\n" -"\t -174.53€ banking fees\n" +"\t -174.53€ banking fees\n" "\t $-3707.33 administration\n" -"\t -5439.61€ administration\n" +"\t -5439.61€ administration\n" msgstr "" "\t- Текущие раÑходы\n" "\t $-568.53 банковÑкие Ñборы\n" @@ -2208,12 +2208,12 @@ msgstr "" #| "\t -40847.00€\n" msgid "" "\t- Misc\n" -"\t -65.00€ stickers\n" -"\t -414.17€ non stored purchases\n" -"\t -20.00€ communication\n" +"\t -65.00€ stickers\n" +"\t -414.17€ non stored purchases\n" +"\t -20.00€ communication\n" "\t--------------------\n" "\t $-66106.24\n" -"\t -40847.00€\n" +"\t -40847.00€\n" msgstr "" "\t- Разное\n" "\t -65.00€ наклейки\n" @@ -2235,8 +2235,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $86729.59\n" -"\t 71.67Ƀ\n" -"\t 42106.69€\n" +"\t 71.67Ƀ\n" +"\t 42106.69€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -2265,12 +2265,12 @@ msgid "" "\tRevenues:\n" "\t $21000.00 NDI\n" "\t $20000.00 Tor (bounties program)\n" -"\t 29.58Ƀ bitcoin\n" -"\t 330.00€ tax\n" +"\t 29.58Ƀ bitcoin\n" +"\t 330.00€ tax\n" "\t--------------------\n" "\t $41000.00\n" -"\t 29.58Ƀ\n" -"\t 330.00€\n" +"\t 29.58Ƀ\n" +"\t 330.00€\n" msgstr "" "\tПоÑтуплениÑ:\n" "\t $21000.00 NDI\n" @@ -2298,16 +2298,16 @@ msgstr "" #| "\t -3290.65€\n" msgid "" "\tExpenses:\n" -"\t -60.00€ banking fees\n" +"\t -60.00€ banking fees\n" "\t $-17000.00 bounties\n" "\t $-1194.69 hardware\n" -"\t -499.65€ hardware\n" -"\t -390.00€ hosting\n" -"\t -2341.00€ meeting\n" +"\t -499.65€ hardware\n" +"\t -390.00€ hosting\n" +"\t -2341.00€ meeting\n" "\t $-21000.00 work\n" "\t--------------------\n" "\t $-39194.69\n" -"\t -3290.65€\n" +"\t -3290.65€\n" msgstr "" "\tРаÑходы:\n" "\t -60.00€ банковÑкие Ñборы\n" @@ -2333,8 +2333,8 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $1805.31\n" -"\t 29.58Ƀ\n" -"\t -2960.65€\n" +"\t 29.58Ƀ\n" +"\t -2960.65€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -2356,9 +2356,9 @@ msgstr "Отчет о поÑтуплениÑÑ… и раÑходах за 2012 г #| "\t 137.30€\n" msgid "" "\tRevenues:\n" -"\t 137.30€ tax\n" +"\t 137.30€ tax\n" "\t--------------------\n" -"\t 137.30€\n" +"\t 137.30€\n" msgstr "" "\tПоÑтуплениÑ:\n" "\t 137.30€ налоги\n" @@ -2380,13 +2380,13 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-3810.71 hardware\n" -"\t -856.79€ hardware\n" -"\t -300.00€ hosting\n" -"\t -3128.39€ meeting\n" +"\t -856.79€ hardware\n" +"\t -300.00€ hosting\n" +"\t -3128.39€ meeting\n" "\t $-479.00 SSL certificates\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4285.18€\n" +"\t -4285.18€\n" msgstr "" "\tРаÑходы:\n" "\t $-3810.71 оборудование\n" @@ -2409,7 +2409,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-4289.71\n" -"\t -4147.88€\n" +"\t -4147.88€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -2438,9 +2438,9 @@ msgstr "Отчет о поÑтуплениÑÑ… и раÑходах за 2011 г #| "\t 7500.00€\n" msgid "" "\tRevenues:\n" -"\t 7500.00€ Tor\n" +"\t 7500.00€ Tor\n" "\t--------------------\n" -"\t 7500.00€\n" +"\t 7500.00€\n" msgstr "" "\tПоÑтуплениÑ:\n" "\t 7500.00€ Tor\n" @@ -2460,11 +2460,11 @@ msgstr "" msgid "" "\tExpenses:\n" "\t $-555.00 hardware\n" -"\t -1075.00€ hosting\n" -"\t -3163.32€ meeting\n" +"\t -1075.00€ hosting\n" +"\t -3163.32€ meeting\n" "\t--------------------\n" "\t $-555.00\n" -"\t -4238.32€\n" +"\t -4238.32€\n" msgstr "" "\tРаÑходы:\n" "\t $-555.00 оборудование\n" @@ -2485,7 +2485,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $-555.00\n" -"\t 3261.68€\n" +"\t 3261.68€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" @@ -2519,9 +2519,9 @@ msgstr "" #| "\t -2025.00€\n" msgid "" "\tExpenses:\n" -"\t -2025.00€ hardware\n" +"\t -2025.00€ hardware\n" "\t--------------------\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tРаÑходы:\n" "\t -2025.00€ оборудование\n" @@ -2539,7 +2539,7 @@ msgid "" "\tTotal:\n" "\t--------------------\n" "\t $8500.00\n" -"\t -2025.00€\n" +"\t -2025.00€\n" msgstr "" "\tÐ’Ñего:\n" "\t--------------------\n" diff --git a/wiki/src/doc/about/license.de.po b/wiki/src/doc/about/license.de.po index c5add2add71..c725f85dc7e 100644 --- a/wiki/src/doc/about/license.de.po +++ b/wiki/src/doc/about/license.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails Translation\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-10 21:39+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: Tails Translation <tails-l10n@boum.org>\n" @@ -149,7 +149,7 @@ msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" @@ -183,13 +183,13 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" @@ -201,26 +201,26 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" #. type: Bullet: ' - ' msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" #. type: Bullet: ' - ' msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" #. type: Bullet: ' - ' @@ -231,44 +231,44 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" #. type: Bullet: ' - ' msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" #. type: Bullet: ' - ' msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" #. type: Bullet: ' - ' @@ -279,19 +279,19 @@ msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" #. type: Bullet: ' - ' msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" #. type: Bullet: ' - ' msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" diff --git a/wiki/src/doc/about/license.es.po b/wiki/src/doc/about/license.es.po index 258c8bd685c..c0e7e0d605b 100644 --- a/wiki/src/doc/about/license.es.po +++ b/wiki/src/doc/about/license.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-04-13 04:22+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -174,7 +174,7 @@ msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" "Todos los dibujos en nuestras páginas [[Inicio|index]], [[Acerca de|about]], " @@ -238,7 +238,7 @@ msgstr "" #| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " #| "Attribution, by Azis." msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " @@ -250,7 +250,7 @@ msgstr "" #| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " #| "Attribution, by factor[e] design initiative." msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " @@ -270,7 +270,7 @@ msgstr "" #| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " #| "Attribution, by Edward Boatman." msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " @@ -283,7 +283,7 @@ msgstr "" #| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " "Commons — Attribution, by Joe Mortell." @@ -294,7 +294,7 @@ msgstr "" #| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " #| "Attribution, by Cris Dobbins." msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " @@ -307,7 +307,7 @@ msgstr "" #| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " "Creative Commons — Attribution, por Cornelius Danger." @@ -326,7 +326,7 @@ msgstr "" #| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " #| "Commons — Attribution, by Kervin Markle." msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" "[[Eliminar|https://thenounproject.com/term/delete/49691/]]: Creative Commons " @@ -338,7 +338,7 @@ msgstr "" #| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " #| "Attribution, by Zech Nelson." msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Ejecutar|https://thenounproject.com/term/play/152052]]: Creative Commons — " @@ -350,7 +350,7 @@ msgstr "" #| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " #| "— Attribution, by Zech Nelson." msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Pausa|https://thenounproject.com/term/pause/152046]]: Creative Commons — " @@ -362,7 +362,7 @@ msgstr "" #| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " #| "Attribution, by Wilson Joseph." msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " @@ -374,7 +374,7 @@ msgstr "" #| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " #| "Attribution, by Richard de Vos." msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" "[[Tiempo|https://thenounproject.com/term/time/6732]]: Creative Commons — " @@ -387,7 +387,7 @@ msgstr "" #| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" "[[Impresora|https://thenounproject.com/term/printer/146674]]: Creative " "Commons — Atribución, por Diego Naive." @@ -399,7 +399,7 @@ msgstr "" #| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " "Commons — Atribución, por Pham Thi Dieu Linh." @@ -418,7 +418,7 @@ msgstr "" #| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " #| "Attribution, by Thomas Helbig." msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" "[[Amor|https://thenounproject.com/term/love/218846/]]: Creative Commons — " @@ -431,7 +431,7 @@ msgstr "" #| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" "[[Encuesta|https://thenounproject.com/term/survey/1296072]]: Creative " "Commons — Atribución, por unlimicon." @@ -442,7 +442,7 @@ msgstr "" #| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " #| "Attribution, by icongeek." msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" "[[Información|https://thenounproject.com/term/info/808461]]: Creative " diff --git a/wiki/src/doc/about/license.fr.po b/wiki/src/doc/about/license.fr.po index aba5c66e6e6..0ee30fe064f 100644 --- a/wiki/src/doc/about/license.fr.po +++ b/wiki/src/doc/about/license.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-07 18:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -164,7 +164,7 @@ msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" "Les dessins sur nos pages [[Accueil|index]], [[Fonctionnement de Tails|" @@ -221,7 +221,7 @@ msgstr "" #| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " #| "Attribution, by Azis." msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" "[[Code|http://thenounproject.com/term/code/18033/]] : Creative Commons — " @@ -233,7 +233,7 @@ msgstr "" #| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " #| "Attribution, by factor[e] design initiative." msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" "[[Pen|http://thenounproject.com/term/pen/18907/]] : Creative Commons — " @@ -253,7 +253,7 @@ msgstr "" #| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " #| "Attribution, by Edward Boatman." msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" "[[User|http://thenounproject.com/term/user/419/]] : Creative Commons — " @@ -266,7 +266,7 @@ msgstr "" #| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" "[[Translation|http://thenounproject.com/term/translation/5735/]] : Creative " "Commons — Attribution, par Joe Mortell." @@ -277,7 +277,7 @@ msgstr "" #| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " #| "Attribution, by Cris Dobbins." msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" "[[Gears|http://thenounproject.com/term/gears/8949/]] : Creative Commons — " @@ -290,7 +290,7 @@ msgstr "" #| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]] : " "Creative Commons — Attribution, par Cornelius Danger." @@ -309,7 +309,7 @@ msgstr "" #| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " #| "Commons — Attribution, by Kervin Markle." msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" "[[Delete|https://thenounproject.com/term/delete/49691/]] : Creative Commons " @@ -321,7 +321,7 @@ msgstr "" #| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " #| "Attribution, by Zech Nelson." msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Play|https://thenounproject.com/term/play/152052]] : Creative Commons — " @@ -333,7 +333,7 @@ msgstr "" #| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " #| "— Attribution, by Zech Nelson." msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Pause|https://thenounproject.com/term/pause/152046]] : Creative Commons — " @@ -345,7 +345,7 @@ msgstr "" #| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " #| "Attribution, by Wilson Joseph." msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" "[[USB|https://thenounproject.com/term/usb/28901]] : Creative Commons — " @@ -357,7 +357,7 @@ msgstr "" #| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " #| "Attribution, by Richard de Vos." msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" "[[Time|https://thenounproject.com/term/time/6732]] : Creative Commons — " @@ -370,7 +370,7 @@ msgstr "" #| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" "[[Printer|https://thenounproject.com/term/printer/146674]] : Creative " "Commons — Attribution, par Diego Naive." @@ -382,7 +382,7 @@ msgstr "" #| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]] : Creative " "Commons — Attribution, par Pham Thi Dieu Linh." @@ -401,7 +401,7 @@ msgstr "" #| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " #| "Attribution, by Thomas Helbig." msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" "[[Love|https://thenounproject.com/term/love/218846/]] : Creative Commons — " @@ -414,7 +414,7 @@ msgstr "" #| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" "[[Survey|https://thenounproject.com/term/survey/1296072]] : Creative Commons " "— Attribution, par unlimicon." @@ -425,7 +425,7 @@ msgstr "" #| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " #| "Attribution, by icongeek." msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" "[[Info|https://thenounproject.com/term/info/808461]] : Creative Commons — " diff --git a/wiki/src/doc/about/license.it.po b/wiki/src/doc/about/license.it.po index 56eae90d7ed..e6e1ca980f1 100644 --- a/wiki/src/doc/about/license.it.po +++ b/wiki/src/doc/about/license.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION it\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 13:07+0000\n" "Last-Translator: Noisy Coil <noisycoil@tutanota.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -162,7 +162,7 @@ msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" "I disegni nelle nostre pagine [[Home|index]], [[About|about]] e [[Warnings|" @@ -217,7 +217,7 @@ msgstr "" #| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " #| "Attribution, by Azis." msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" "[[Code|https://thenounproject.com/term/code/18033/]]: Creative Commons — " @@ -229,7 +229,7 @@ msgstr "" #| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " #| "Attribution, by factor[e] design initiative." msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" "[[Pen|https://thenounproject.com/term/pen/18907/]]: Creative Commons — " @@ -249,7 +249,7 @@ msgstr "" #| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " #| "Attribution, by Edward Boatman." msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" "[[User|https://thenounproject.com/term/user/419/]]: Creative Commons — " @@ -262,7 +262,7 @@ msgstr "" #| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" "[[Translation|https://thenounproject.com/term/translation/5735/]]: Creative " "Commons — Attribuzione, di Joe Mortell." @@ -273,7 +273,7 @@ msgstr "" #| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " #| "Attribution, by Cris Dobbins." msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" "[[Gears|https://thenounproject.com/term/gears/8949/]]: Creative Commons — " @@ -286,7 +286,7 @@ msgstr "" #| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" "[[Graphic Design|https://thenounproject.com/term/graphic_design/9198/]]: " "Creative Commons — Attribuzione, di Cornelius Danger." @@ -305,7 +305,7 @@ msgstr "" #| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " #| "Commons — Attribution, by Kervin Markle." msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " @@ -317,7 +317,7 @@ msgstr "" #| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " #| "Attribution, by Zech Nelson." msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " @@ -329,7 +329,7 @@ msgstr "" #| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " #| "— Attribution, by Zech Nelson." msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " @@ -341,7 +341,7 @@ msgstr "" #| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " #| "Attribution, by Wilson Joseph." msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " @@ -353,7 +353,7 @@ msgstr "" #| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " #| "Attribution, by Richard de Vos." msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " @@ -366,7 +366,7 @@ msgstr "" #| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " "— Attribuzione, di Diego Naive." @@ -378,7 +378,7 @@ msgstr "" #| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " "Commons — Attribuzione, di Pham Thi Dieu Linh." @@ -397,7 +397,7 @@ msgstr "" #| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " #| "Attribution, by Thomas Helbig." msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " @@ -410,7 +410,7 @@ msgstr "" #| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " "— Attribuzione, di unlimicon." @@ -421,7 +421,7 @@ msgstr "" #| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " #| "Attribution, by icongeek." msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " diff --git a/wiki/src/doc/about/license.pt.po b/wiki/src/doc/about/license.pt.po index f683557d8b6..f193d688941 100644 --- a/wiki/src/doc/about/license.pt.po +++ b/wiki/src/doc/about/license.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -150,19 +150,25 @@ msgstr "" "Bazaar, Inc." #. type: Bullet: '- ' +#, fuzzy +#| msgid "" +#| "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" +#| "about/warnings]] pages are licensed under the [Creative Commons " +#| "Attribution-ShareAlike 4.0 International License](https://creativecommons." +#| "org/licenses/by-sa/4.0/), copyright [Andrés Fernández Cordón](https://" +#| "anhdr.es/) ([[source|lib/drawings.zip]] for Adobe Illustrator)." msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" -"Os desenhos nas nossas páginas [[Inicial|index]], [[Como Tails " -"funciona|about]], e [[Avisos|doc/about/warnings]] são licenciados sob a " -"licença [Creative Commons Attribution-ShareAlike 4.0 " -"International](https://creativecommons.org/licenses/by-sa/4.0/), copyright [" -"Andrés Fernández Cordón](https://anhdr.es/) ([[source|lib/drawings.zip]] " -"for Adobe Illustrator)." +"Os desenhos nas nossas páginas [[Inicial|index]], [[Como Tails funciona|" +"about]], e [[Avisos|doc/about/warnings]] são licenciados sob a licença " +"[Creative Commons Attribution-ShareAlike 4.0 International](https://" +"creativecommons.org/licenses/by-sa/4.0/), copyright [Andrés Fernández Cordón]" +"(https://anhdr.es/) ([[source|lib/drawings.zip]] for Adobe Illustrator)." #. type: Bullet: '- ' msgid "" @@ -206,16 +212,24 @@ msgstr "" "Commons - Attribução, por Olivier Guin." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +#| "Attribution, by Azis." msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" "[[Código|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Atribuição, por Azis." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +#| "Attribution, by factor[e] design initiative." msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" "[[Caneta|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " @@ -230,33 +244,49 @@ msgstr "" "Rohith M S." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +#| "Attribution, by Edward Boatman." msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" "[[Usuário|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Atribuição, por Edward Boatman." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Translation|http://thenounproject.com/term/translation/5735/]]: " +#| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" "[[Tradução|http://thenounproject.com/term/translation/5735/]]: Creative " "Commons — Atribuição, por Joe Mortell." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +#| "Attribution, by Cris Dobbins." msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Atribuição, por Cris Dobbins." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " +#| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" "[[Projeto Gráfico|http://thenounproject.com/term/graphic_design/9198/]]: " "Creative Commons — Atribuição, por Cornelius Danger." @@ -270,57 +300,85 @@ msgstr "" "por Julian Norton." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " +#| "Commons — Attribution, by Kervin Markle." msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Atribuição, por Kervin Markle." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +#| "Attribution, by Zech Nelson." msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Atribuição, por Zech Nelson." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " +#| "— Attribution, by Zech Nelson." msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Atribuição, por Zech Nelson." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +#| "Attribution, by Wilson Joseph." msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Atribuição, por Wilson Joseph." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +#| "Attribution, by Richard de Vos." msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" "[[Tempo|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Atribuição, por Richard de Vos." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative " +#| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" "[[Impressora|https://thenounproject.com/term/printer/146674]]: Creative " "Commons — Atribuição, por Diego Naive." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: " +#| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " "Commons — Atribuição, por Pham Thi Dieu Linh." @@ -334,24 +392,36 @@ msgstr "" "Jean Yashu." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +#| "Attribution, by Thomas Helbig." msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" "[[Amor|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Atribuição, por Thomas Helbig." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative " +#| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" "[[Pesquisa|https://thenounproject.com/term/survey/1296072]]: Creative " "Commons — Atribuição, por unlimicon." #. type: Bullet: ' - ' +#, fuzzy +#| msgid "" +#| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +#| "Attribution, by icongeek." msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" "[[Informação|https://thenounproject.com/term/info/808461]]: Creative Commons " diff --git a/wiki/src/doc/about/license.ru.po b/wiki/src/doc/about/license.ru.po index e18c739c50a..903cabaf2a5 100644 --- a/wiki/src/doc/about/license.ru.po +++ b/wiki/src/doc/about/license.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-16 19:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -177,7 +177,7 @@ msgid "" "The drawings on our [[Home|index]], [[About|about]], and [[Warnings|doc/" "about/warnings]] pages are licensed under the [Creative Commons Attribution-" "ShareAlike 4.0 International License](https://creativecommons.org/licenses/" -"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " +"by-sa/4.0/), copyright [Andrés Fernández Cordón](https://anhdr.es/) " "([[source|lib/drawings.zip]] for Adobe Illustrator)." msgstr "" "ИллюÑтрации на наших Ñтраницах [[ГлавнаÑ|index]] и [[О наÑ|about]] " @@ -240,7 +240,7 @@ msgstr "" #| "[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " #| "Attribution, by Azis." msgid "" -"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " +"[[Code|http://thenounproject.com/term/code/18033/]]: Creative Commons — " "Attribution, by Azis." msgstr "" "[[Код|https://thenounproject.com/term/code/18033/]]: Creative Commons – " @@ -252,7 +252,7 @@ msgstr "" #| "[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " #| "Attribution, by factor[e] design initiative." msgid "" -"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " +"[[Pen|http://thenounproject.com/term/pen/18907/]]: Creative Commons — " "Attribution, by factor[e] design initiative." msgstr "" "[[Перо|https://thenounproject.com/term/pen/18907/]]: Creative Commons – " @@ -272,7 +272,7 @@ msgstr "" #| "[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " #| "Attribution, by Edward Boatman." msgid "" -"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " +"[[User|http://thenounproject.com/term/user/419/]]: Creative Commons — " "Attribution, by Edward Boatman." msgstr "" "[[Пользователь|https://thenounproject.com/term/user/419/]]: Creative Commons " @@ -285,7 +285,7 @@ msgstr "" #| "Creative Commons — Attribution, by Joe Mortell." msgid "" "[[Translation|http://thenounproject.com/term/translation/5735/]]: Creative " -"Commons — Attribution, by Joe Mortell." +"Commons — Attribution, by Joe Mortell." msgstr "" "[[Перевод|https://thenounproject.com/term/translation/5735/]]: Creative " "Commons – Attribution, Joe Mortell." @@ -296,7 +296,7 @@ msgstr "" #| "[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " #| "Attribution, by Cris Dobbins." msgid "" -"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " +"[[Gears|http://thenounproject.com/term/gears/8949/]]: Creative Commons — " "Attribution, by Cris Dobbins." msgstr "" "[[ШеÑтерни|https://thenounproject.com/term/gears/8949/]]: Creative Commons – " @@ -309,7 +309,7 @@ msgstr "" #| "Creative Commons — Attribution, by Cornelius Danger." msgid "" "[[Graphic Design|http://thenounproject.com/term/graphic_design/9198/]]: " -"Creative Commons — Attribution, by Cornelius Danger." +"Creative Commons — Attribution, by Cornelius Danger." msgstr "" "[[ГрафичеÑкий дизайн|https://thenounproject.com/term/graphic_design/9198/]]: " "Creative Commons – Attribution, Cornelius Danger." @@ -328,7 +328,7 @@ msgstr "" #| "[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative " #| "Commons — Attribution, by Kervin Markle." msgid "" -"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " +"[[Delete|https://thenounproject.com/term/delete/49691/]]: Creative Commons — " "Attribution, by Kervin Markle." msgstr "" "[[Удаление|https://thenounproject.com/term/delete/49691/]]: Creative Commons " @@ -340,7 +340,7 @@ msgstr "" #| "[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " #| "Attribution, by Zech Nelson." msgid "" -"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " +"[[Play|https://thenounproject.com/term/play/152052]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[ПуÑк|https://thenounproject.com/term/play/152052]]: Creative Commons – " @@ -352,7 +352,7 @@ msgstr "" #| "[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons " #| "— Attribution, by Zech Nelson." msgid "" -"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " +"[[Pause|https://thenounproject.com/term/pause/152046]]: Creative Commons — " "Attribution, by Zech Nelson." msgstr "" "[[Пауза|https://thenounproject.com/term/pause/152046]]: Creative Commons – " @@ -364,7 +364,7 @@ msgstr "" #| "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " #| "Attribution, by Wilson Joseph." msgid "" -"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " +"[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons — " "Attribution, by Wilson Joseph." msgstr "" "[[USB|https://thenounproject.com/term/usb/28901]]: Creative Commons – " @@ -376,7 +376,7 @@ msgstr "" #| "[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " #| "Attribution, by Richard de Vos." msgid "" -"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " +"[[Time|https://thenounproject.com/term/time/6732]]: Creative Commons — " "Attribution, by Richard de Vos." msgstr "" "[[ВремÑ|https://thenounproject.com/term/time/6732]]: Creative Commons – " @@ -389,7 +389,7 @@ msgstr "" #| "Commons — Attribution, by Diego Naive." msgid "" "[[Printer|https://thenounproject.com/term/printer/146674]]: Creative Commons " -"— Attribution, by Diego Naive." +"— Attribution, by Diego Naive." msgstr "" "[[Принтер|https://thenounproject.com/term/printer/146674]]: Creative Commons " "– Attribution, Diego Naive." @@ -401,7 +401,7 @@ msgstr "" #| "Creative Commons — Attribution, by Pham Thi Dieu Linh." msgid "" "[[Smart Phones|https://thenounproject.com/term/smartphone/25790]]: Creative " -"Commons — Attribution, by Pham Thi Dieu Linh." +"Commons — Attribution, by Pham Thi Dieu Linh." msgstr "" "[[Смартфоны|https://thenounproject.com/term/smartphone/25790]]: Creative " "Commons – Attribution, Pham Thi Dieu Linh." @@ -420,7 +420,7 @@ msgstr "" #| "[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " #| "Attribution, by Thomas Helbig." msgid "" -"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " +"[[Love|https://thenounproject.com/term/love/218846/]]: Creative Commons — " "Attribution, by Thomas Helbig." msgstr "" "[[Любовь|https://thenounproject.com/term/love/218846/]]: Creative Commons – " @@ -433,7 +433,7 @@ msgstr "" #| "Commons — Attribution, by unlimicon." msgid "" "[[Survey|https://thenounproject.com/term/survey/1296072]]: Creative Commons " -"— Attribution, by unlimicon." +"— Attribution, by unlimicon." msgstr "" "[[ОпроÑ|https://thenounproject.com/term/survey/1296072]]: Creative Commons – " "Attribution, unlimicon." @@ -444,7 +444,7 @@ msgstr "" #| "[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " #| "Attribution, by icongeek." msgid "" -"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " +"[[Info|https://thenounproject.com/term/info/808461]]: Creative Commons — " "Attribution, by icongeek." msgstr "" "[[ИнформациÑ|https://thenounproject.com/term/info/808461]]: Creative Commons " diff --git a/wiki/src/doc/about/warnings.de.po b/wiki/src/doc/about/warnings.de.po index a3ca8e38d43..d95c12e3752 100644 --- a/wiki/src/doc/about/warnings.de.po +++ b/wiki/src/doc/about/warnings.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-28 16:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -30,7 +30,7 @@ msgstr "" #. type: Content of: <div><p> msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" diff --git a/wiki/src/doc/about/warnings.es.po b/wiki/src/doc/about/warnings.es.po index 00c4887268b..09300891a2c 100644 --- a/wiki/src/doc/about/warnings.es.po +++ b/wiki/src/doc/about/warnings.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-28 16:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,7 +35,7 @@ msgstr "" #| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" "Tails es más seguro que cualquier sistema operativo normal. Pero Tails, o " diff --git a/wiki/src/doc/about/warnings.fr.po b/wiki/src/doc/about/warnings.fr.po index 18a44ca5d1e..2617581e25d 100644 --- a/wiki/src/doc/about/warnings.fr.po +++ b/wiki/src/doc/about/warnings.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-03 09:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,7 +35,7 @@ msgstr "" #| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" "Tails est plus sûr que n'importe quel autre système d'exploitation " diff --git a/wiki/src/doc/about/warnings.it.po b/wiki/src/doc/about/warnings.it.po index 2b83fa08c6b..b2465f19480 100644 --- a/wiki/src/doc/about/warnings.it.po +++ b/wiki/src/doc/about/warnings.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-28 16:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,7 +35,7 @@ msgstr "" #| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" "Tails è più sicuro di qualsiasi sistema operativo normale. Ma Tails, o " diff --git a/wiki/src/doc/about/warnings.pt.po b/wiki/src/doc/about/warnings.pt.po index 5c5460010b5..5df425a8a73 100644 --- a/wiki/src/doc/about/warnings.pt.po +++ b/wiki/src/doc/about/warnings.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,9 +28,14 @@ msgstr "" "[[!meta stylesheet=\"doc/about/warnings\" rel=\"stylesheet\" title=\"\"]]" #. type: Content of: <div><p> +#, fuzzy +#| msgid "" +#| "Tails is safer than any regular operating system. But Tails, or any " +#| "software or operating system, cannot protect you from everything—even if " +#| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" "Tails é mais seguro do que qualquer sistema operacional comum. Apesar disso, " diff --git a/wiki/src/doc/about/warnings.ru.po b/wiki/src/doc/about/warnings.ru.po index 98ed9571010..7e4269baa19 100644 --- a/wiki/src/doc/about/warnings.ru.po +++ b/wiki/src/doc/about/warnings.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-28 16:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -42,7 +42,7 @@ msgstr "" #| "they pretend to." msgid "" "Tails is safer than any regular operating system. But Tails, or any software " -"or operating system, cannot protect you from everything—even if they pretend " +"or operating system, cannot protect you from everything—even if they pretend " "to." msgstr "" "Tails безопаÑнее любой популÑрной операционной ÑиÑтемы. Ðо Ð½Ð¸ÐºÐ°ÐºÐ°Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð¼Ð° " diff --git a/wiki/src/doc/about/warnings/computer.de.po b/wiki/src/doc/about/warnings/computer.de.po index 46d2838305f..d9d2fdfaf7a 100644 --- a/wiki/src/doc/about/warnings/computer.de.po +++ b/wiki/src/doc/about/warnings/computer.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-21 09:28+0000\n" "Last-Translator: Fabian Schuler <schulerfabian327@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -120,7 +120,7 @@ msgstr "" #. type: Content of: <p> msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" @@ -163,7 +163,7 @@ msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" diff --git a/wiki/src/doc/about/warnings/computer.es.po b/wiki/src/doc/about/warnings/computer.es.po index 749f10b04b3..3011ba6b29c 100644 --- a/wiki/src/doc/about/warnings/computer.es.po +++ b/wiki/src/doc/about/warnings/computer.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -128,7 +128,7 @@ msgstr "" #| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" "Intente mantener su computadora en un lugar seguro. Las alteraciones de " @@ -177,7 +177,7 @@ msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" diff --git a/wiki/src/doc/about/warnings/computer.fr.po b/wiki/src/doc/about/warnings/computer.fr.po index e0e455075e5..3c4c83974e9 100644 --- a/wiki/src/doc/about/warnings/computer.fr.po +++ b/wiki/src/doc/about/warnings/computer.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-04 21:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -131,7 +131,7 @@ msgstr "" #| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" "Essayez de garder votre ordinateur dans un endroit sûr. Les modifications " @@ -187,7 +187,7 @@ msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" "D'autres modifications matérielles sont beaucoup plus compliquées et " diff --git a/wiki/src/doc/about/warnings/computer.it.po b/wiki/src/doc/about/warnings/computer.it.po index 0df8897cb66..04dd41ed16e 100644 --- a/wiki/src/doc/about/warnings/computer.it.po +++ b/wiki/src/doc/about/warnings/computer.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -126,7 +126,7 @@ msgstr "" #| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" "Cerca di tenere il computer in un luogo sicuro. Le manomissioni hardware " @@ -182,7 +182,7 @@ msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" "Altre manomissioni dell'hardware sono molto più complicate e costose da " diff --git a/wiki/src/doc/about/warnings/computer.pt.po b/wiki/src/doc/about/warnings/computer.pt.po index 85680d30f79..3dae060697f 100644 --- a/wiki/src/doc/about/warnings/computer.pt.po +++ b/wiki/src/doc/about/warnings/computer.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -117,9 +117,14 @@ msgstr "" "pessoas, mesmo que você esteja usando Tails." #. type: Content of: <p> +#, fuzzy +#| msgid "" +#| "Try to keep your computer in a safe location. Hardware alterations are " +#| "more likely on public computers, in internet cafés or libraries, and on " +#| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" "Tente manter seu computador em um local seguro. Alterações de hardware são " @@ -164,18 +169,25 @@ msgstr "" "(em inglês)." #. type: Content of: <div><p> +#, fuzzy +#| msgid "" +#| "Other hardware alterations are much more complicated and expensive to " +#| "install. For an example, see <a href=\"https://arstechnica.com/tech-" +#| "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" +#| "implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +#| "router getting implant</a>." msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" "Outras alterações de hardware são muito mais complicadas e caras de " -"instalar. Por exemplo, veja <a href=\"https://arstechnica.com/tech-policy/" -"2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-implant/\"" -">Ars Technica: Fotos de uma \"atualização\" de um NSA, fábrica mostra " -"roteador Cisco recebendo um implante</a> (em inglês)." +"instalar. Por exemplo, veja <a href=\"https://arstechnica.com/tech-" +"policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" +"implant/\">Ars Technica: Fotos de uma \"atualização\" de um NSA, fábrica " +"mostra roteador Cisco recebendo um implante</a> (em inglês)." #. type: Content of: <h2> msgid "No operating system can protect against BIOS and firmware attacks" diff --git a/wiki/src/doc/about/warnings/computer.ru.po b/wiki/src/doc/about/warnings/computer.ru.po index 61bb06870b9..8848020a1ef 100644 --- a/wiki/src/doc/about/warnings/computer.ru.po +++ b/wiki/src/doc/about/warnings/computer.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-19 06:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -128,7 +128,7 @@ msgstr "" #| "desktop computers, where a device is easier to hide." msgid "" "Try to keep your computer in a safe location. Hardware alterations are more " -"likely on public computers, in internet cafés or libraries, and on desktop " +"likely on public computers, in internet cafés or libraries, and on desktop " "computers, where a device is easier to hide." msgstr "" "Ðайдите Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¿ÑŒÑŽÑ‚ÐµÑ€Ð° безопаÑное меÑто. Ðппаратные «жучки» Ñкорее можно " @@ -182,7 +182,7 @@ msgid "" "Other hardware alterations are much more complicated and expensive to " "install. For an example, see <a href=\"https://arstechnica.com/tech-" "policy/2014/05/photos-of-an-nsa-upgrade-factory-show-cisco-router-getting-" -"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " +"implant/\">Ars Technica: Photos of an NSA “upgrade†factory show Cisco " "router getting implant</a>." msgstr "" "Прочие аппаратные «жучки» обладают более выÑокой ценой и Ñложной " diff --git a/wiki/src/doc/about/warnings/tor.de.po b/wiki/src/doc/about/warnings/tor.de.po index 2491337ef9b..8291721afc7 100644 --- a/wiki/src/doc/about/warnings/tor.de.po +++ b/wiki/src/doc/about/warnings/tor.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -195,6 +195,6 @@ msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" diff --git a/wiki/src/doc/about/warnings/tor.es.po b/wiki/src/doc/about/warnings/tor.es.po index 9a834badc0e..aa34eb34a39 100644 --- a/wiki/src/doc/about/warnings/tor.es.po +++ b/wiki/src/doc/about/warnings/tor.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-09 14:39+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -217,6 +217,6 @@ msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" diff --git a/wiki/src/doc/about/warnings/tor.fr.po b/wiki/src/doc/about/warnings/tor.fr.po index e1dbe265c2a..18d379dd374 100644 --- a/wiki/src/doc/about/warnings/tor.fr.po +++ b/wiki/src/doc/about/warnings/tor.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-19 22:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -263,7 +263,7 @@ msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" "Les attaques par corrélation de bout en bout ont été étudiées dans des " diff --git a/wiki/src/doc/about/warnings/tor.it.po b/wiki/src/doc/about/warnings/tor.it.po index 5e275732b80..d23df257b6c 100644 --- a/wiki/src/doc/about/warnings/tor.it.po +++ b/wiki/src/doc/about/warnings/tor.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -264,7 +264,7 @@ msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" "I correlation attacks/attacchi di correlazione end-to-end sono stati oggetto " diff --git a/wiki/src/doc/about/warnings/tor.pt.po b/wiki/src/doc/about/warnings/tor.pt.po index 0f55569a6e0..d390171b0b7 100644 --- a/wiki/src/doc/about/warnings/tor.pt.po +++ b/wiki/src/doc/about/warnings/tor.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -261,16 +261,23 @@ msgstr "" "retransmissores independentes." #. type: Content of: <div><p> +#, fuzzy +#| msgid "" +#| "End-to-end correlation attacks have been studied in research papers, but " +#| "we don't know of any actual use to deanonymize Tor users. For an example, " +#| "see <a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." +#| "pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-" +#| "Exchange-Level Adversaries</a>." msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" "Ataques de correlação ponta-a-ponta foram estudados em artigos de pesquisa, " "mas nós não temos conhecimento de que tenham sido de fato usados para " -"desanonimizar usuários da rede Tor. Para um exemplo, veja <a href=\"https" -"://www.freehaven.net/anonbib/cache/murdoch-pet2007.pdf\">Murdoch e ZieliÅ„ski:" -" Sampled Traffic Analysis by Internet-Exchange-Level Adversaries</a> (em " +"desanonimizar usuários da rede Tor. Para um exemplo, veja <a href=\"https://" +"www.freehaven.net/anonbib/cache/murdoch-pet2007.pdf\">Murdoch e ZieliÅ„ski: " +"Sampled Traffic Analysis by Internet-Exchange-Level Adversaries</a> (em " "inglês)." diff --git a/wiki/src/doc/about/warnings/tor.ru.po b/wiki/src/doc/about/warnings/tor.ru.po index cb59ff90498..b91bd771233 100644 --- a/wiki/src/doc/about/warnings/tor.ru.po +++ b/wiki/src/doc/about/warnings/tor.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-19 12:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -266,7 +266,7 @@ msgid "" "End-to-end correlation attacks have been studied in research papers, but we " "don't know of any actual use to deanonymize Tor users. For an example, see " "<a href=\"https://www.freehaven.net/anonbib/cache/murdoch-pet2007." -"pdf\">Murdoch and Zieliński: Sampled Traffic Analysis by Internet-Exchange-" +"pdf\">Murdoch and ZieliÅ„ski: Sampled Traffic Analysis by Internet-Exchange-" "Level Adversaries</a>." msgstr "" "Ðтаки коррелÑции трафика изучены и опиÑаны. Однако мы не знаем ÑлучаÑ, когда " diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.de.po b/wiki/src/doc/advanced_topics/virtualization/boxes.de.po index fb360c54591..158d82aaf08 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.de.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -153,7 +153,7 @@ msgstr "Um die gemeinsame Zwischenablage zu deaktivieren:" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.es.po b/wiki/src/doc/advanced_topics/virtualization/boxes.es.po index ecb58a00933..0652ccd531e 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.es.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-03-03 14:25+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -141,7 +141,7 @@ msgstr "Para inhabilitar el portapapeles compartido:" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.fr.po b/wiki/src/doc/advanced_topics/virtualization/boxes.fr.po index 03c813b2e5e..57212556d7a 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.fr.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-19 22:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -150,7 +150,7 @@ msgstr "Pour désactiver le presse-papier partagé :" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" " 1. Choisir\n" diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.it.po b/wiki/src/doc/advanced_topics/virtualization/boxes.it.po index 5c848162351..bdf36d48ed5 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.it.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 13:07+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -143,7 +143,7 @@ msgstr "Per disabilitare la clipboard condivisa:" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" " 1. Seleziona\n" diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.pt.po b/wiki/src/doc/advanced_topics/virtualization/boxes.pt.po index 8127590fb4b..b01ecfa3a08 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -129,7 +129,7 @@ msgstr "" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/advanced_topics/virtualization/boxes.ru.po b/wiki/src/doc/advanced_topics/virtualization/boxes.ru.po index 619a5ca3016..fa597be4389 100644 --- a/wiki/src/doc/advanced_topics/virtualization/boxes.ru.po +++ b/wiki/src/doc/advanced_topics/virtualization/boxes.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-24 18:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -148,7 +148,7 @@ msgstr "Ð”Ð»Ñ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð¾Ð±Ñ‰ÐµÐ³Ð¾ буфера обмена:" msgid "" " 1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> â–¸\n" " <span class=\"guisubmenu\">Properties</span></span>.\n" msgstr "" " 1. Выберите\n" diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po index 341140c07f7..b006417f680 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -213,8 +213,8 @@ msgstr "" #| "the configuration of the virtual machine." msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Ansicht</" "span> â–¸ <span class=\"guimenuitem\">Details</span></span>, um die " @@ -301,7 +301,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -487,8 +487,8 @@ msgstr "Tun Sie anschließend folgendes:" #| "class=\"guimenuitem\">Force Off</span></span> to shut down the virtual " #| "machine." msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" "Wählen Sie von dem Fenster der virtuellen Maschine <span " "class=\"menuchoice\"> <span class=\"guimenu\">Virtuelle Maschine</span> " @@ -513,7 +513,7 @@ msgstr "" #| "span> â–¸ <span class=\"guimenuitem\">Details</span></span> to edit " #| "the configuration of the virtual machine." msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Ansicht</" @@ -598,8 +598,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po index 5d4f77aaec9..b5698e38905 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.es.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-03-03 14:25+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -205,8 +205,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" #. type: Bullet: '1. ' @@ -273,7 +273,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -424,8 +424,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" #. type: Bullet: ' 1. ' @@ -434,7 +434,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" @@ -501,8 +501,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po index a3479058319..4e97163da47 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-10 00:27+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -204,8 +204,8 @@ msgstr "" #| "Virtual Machine</span></span>." msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" "Pour créer une nouvelle machine virtuelle, choisir <span " "class=\"menuchoice\"> <span class=\"guimenu\">Fichier</span> â–¸ <span " @@ -297,7 +297,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -476,8 +476,8 @@ msgstr "Puis faire ce qui suit :" #| "From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " #| "Down** â–¸ **Force Off** to shut down the virtual machine." msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" "Dans la fenêtre de la machine virtuelle, choisir **Machine virtuelle** " "â–¸ **Éteindre** â–¸ **Forcer l'extinction** pour éteindre la machine " @@ -493,7 +493,7 @@ msgstr "Brancher la clé USB depuis laquelle vous voulez démarrer Tails." #| "Choose **View** â–¸ **Details** to edit the configuration of the " #| "virtual machine." msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" "Choisir **Afficher â–¸ **Détails** pour modifier la configuration de la " @@ -573,8 +573,8 @@ msgstr "" #| "To start the virtual machine choose **View** â–¸ **Console** and then " #| "**Virtual Machine** â–¸ **Run**." msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" "Pour démarrer la machine virtuelle choisir **Afficher** â–¸ **Console** " "et ensuite **Machine virtuelle** â–¸ **Démarrer**." diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po index bad296230d0..2aadcfe7972 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.it.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -178,8 +178,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" #. type: Bullet: '1. ' @@ -241,7 +241,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -381,8 +381,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" #. type: Bullet: ' 1. ' @@ -391,7 +391,7 @@ msgstr "Inserite la chiavetta USB su cui volete avviare Tails." #. type: Bullet: ' 1. ' msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" @@ -458,8 +458,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po index f10bcdcc2a3..123cc2d12fb 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-05 23:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -178,8 +178,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" #. type: Bullet: '1. ' @@ -241,7 +241,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -381,8 +381,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" #. type: Bullet: ' 1. ' @@ -391,7 +391,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" @@ -454,8 +454,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virt-manager.ru.po b/wiki/src/doc/advanced_topics/virtualization/virt-manager.ru.po index dac6a2e9443..525e5808c7a 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virt-manager.ru.po +++ b/wiki/src/doc/advanced_topics/virtualization/virt-manager.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-25 13:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -204,8 +204,8 @@ msgstr "" #| "Virtual Machine</span></span>." msgid "" "To create a new virtual machine, choose <span class=\"menuchoice\"> <span " -"class=\"guimenu\">File</span> ▸ <span class=\"guimenuitem\">New " -"Virtual Machine</span></span>." +"class=\"guimenu\">File</span> â–¸ <span class=\"guimenuitem\">New Virtual " +"Machine</span></span>." msgstr "" "Ð”Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð½Ð¾Ð²Ð¾Ð¹ виртуальной машины выберите в меню <span " "class=\"menuchoice\"> <span class=\"guimenu\">Файл</span> â–¸ <span " @@ -300,7 +300,7 @@ msgid "" "<ol>\n" "<li>Click on <span class=\"guilabel\">QEMU/KVM - Not Connected</span>.</li>\n" "<li>Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Edit</span> ▸\n" +" <span class=\"guimenu\">Edit</span> â–¸\n" " <span class=\"guimenuitem\">Connection details</span></span> to\n" " administer the connection to your local\n" " <span class=\"application\">QEMU</span> system.</li>\n" @@ -497,8 +497,8 @@ msgstr "Затем Ñделайте Ñледующее:" #| "class=\"guimenuitem\">Force Off</span></span> to shut down the virtual " #| "machine." msgid "" -"From the virtual machine window, choose **Virtual Machine** ▸ **Shut " -"Down** ▸ **Force Off** to shut down the virtual machine." +"From the virtual machine window, choose **Virtual Machine** â–¸ **Shut " +"Down** â–¸ **Force Off** to shut down the virtual machine." msgstr "" "Ð’ окне виртуальной машины выберите <span class=\"menuchoice\"> <span " "class=\"guimenu\">Ð’Ð¸Ñ€Ñ‚ÑƒÐ°Ð»ÑŒÐ½Ð°Ñ Ð¼Ð°ÑˆÐ¸Ð½Ð°</span> â–¸ <span " @@ -517,7 +517,7 @@ msgstr "Подключите USB-флешку, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ хотите з #| "span> â–¸ <span class=\"guimenuitem\">Details</span></span> to edit " #| "the configuration of the virtual machine." msgid "" -"Choose **View** ▸ **Details** to edit the configuration of the virtual " +"Choose **View** â–¸ **Details** to edit the configuration of the virtual " "machine." msgstr "" "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">Вид</span> " @@ -593,8 +593,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"To start the virtual machine choose **View** ▸ **Console** and then " -"**Virtual Machine** ▸ **Run**." +"To start the virtual machine choose **View** â–¸ **Console** and then " +"**Virtual Machine** â–¸ **Run**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.de.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.de.po index 132080527d9..29e6ce83d13 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.de.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -203,7 +203,7 @@ msgid "To create a new virtual machine:" msgstr "Um eine neue virtuelle Maschine zu erstellen:" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "" #. type: Bullet: ' 1. ' @@ -272,7 +272,7 @@ msgid "Select the new virtual machine in the left pane." msgstr "Wählen Sie die neue virtuelle Maschine im linken Fensterbereich aus." #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "" #. type: Bullet: ' 1. ' @@ -380,7 +380,7 @@ msgstr "" #, no-wrap msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.es.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.es.po index aed48cfcbb1..8404c169718 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.es.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -182,7 +182,7 @@ msgid "To create a new virtual machine:" msgstr "Para crear una nueva máquina virtual:" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "" #. type: Bullet: ' 1. ' @@ -249,7 +249,7 @@ msgid "Select the new virtual machine in the left pane." msgstr "Elige la nueva máquina virtual desde el panel izquierdo." #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "" #. type: Bullet: ' 1. ' @@ -338,7 +338,7 @@ msgstr "" #, no-wrap msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.fr.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.fr.po index c4e1bbe9195..657b98e1348 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.fr.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-21 09:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -201,7 +201,7 @@ msgstr "Pour créer une nouvelle machine virtuelle :" #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Machine** â–¸**New...**." -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "Choisir **Machine** â–¸**Nouvelle...**." #. type: Bullet: ' 1. ' @@ -269,7 +269,7 @@ msgstr "Sélectionner la machine virtuelle dans la partie gauche." #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Machine** â–¸ **Settings...**." -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "Choisir **Machine** â–¸ **Paramètres...**." #. type: Bullet: ' 1. ' @@ -374,7 +374,7 @@ msgstr "" #| "<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" "<p>Pour changer la résolution depuis Tails, choisir\n" "<b>Applications â–¸ Outils système â–¸ Paramètres â–¸ Écrans â–¸ Définition</b>.</p>\n" diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.it.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.it.po index db3be9876db..c3805acbfed 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.it.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -187,7 +187,7 @@ msgid "To create a new virtual machine:" msgstr "Per creare una nuova macchina virtuale:" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "" #. type: Bullet: ' 1. ' @@ -255,7 +255,7 @@ msgid "Select the new virtual machine in the left pane." msgstr "Seleziona la nuova macchina virtuale nel riquadro a sinistra." #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "" #. type: Bullet: ' 1. ' @@ -360,7 +360,7 @@ msgstr "" #, no-wrap msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.pt.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.pt.po index 5268a6fc4ff..adf59af3edd 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.pt.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-27 16:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -166,7 +166,7 @@ msgid "To create a new virtual machine:" msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "" #. type: Bullet: ' 1. ' @@ -229,7 +229,7 @@ msgid "Select the new virtual machine in the left pane." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "" #. type: Bullet: ' 1. ' @@ -316,7 +316,7 @@ msgstr "" #, no-wrap msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/advanced_topics/virtualization/virtualbox.ru.po b/wiki/src/doc/advanced_topics/virtualization/virtualbox.ru.po index ce325cfb945..fc74f04af13 100644 --- a/wiki/src/doc/advanced_topics/virtualization/virtualbox.ru.po +++ b/wiki/src/doc/advanced_topics/virtualization/virtualbox.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -191,7 +191,7 @@ msgid "To create a new virtual machine:" msgstr "Ð”Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð½Ð¾Ð²Ð¾Ð¹ виртуальной машины:" #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸**New...**." +msgid "Choose **Machine** â–¸**New...**." msgstr "" #. type: Bullet: ' 1. ' @@ -258,7 +258,7 @@ msgid "Select the new virtual machine in the left pane." msgstr "Выберите новую виртуальную машину в левой панели." #. type: Bullet: ' 1. ' -msgid "Choose **Machine** ▸ **Settings...**." +msgid "Choose **Machine** â–¸ **Settings...**." msgstr "" #. type: Bullet: ' 1. ' @@ -361,7 +361,7 @@ msgstr "" #, no-wrap msgid "" "<p>To change the screen resolution from inside Tails, choose\n" -"<b>Applications ▸ System Tools ▸ Settings ▸ Displays ▸ Resolution</b>.</p>\n" +"<b>Applications â–¸ System Tools â–¸ Settings â–¸ Displays â–¸ Resolution</b>.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.de.po b/wiki/src/doc/anonymous_internet/Tor_Browser.de.po index 587cecc66cd..21dd3dde3ee 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.de.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Translation <tails-l10n@boum.org>\n" @@ -602,7 +602,7 @@ msgstr "<span class=\"guilabel\">Neue Identität</span>-Funktion\n" msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.es.po b/wiki/src/doc/anonymous_internet/Tor_Browser.es.po index 0899ff879dd..945a7fb0db0 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.es.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-03 22:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -571,7 +571,7 @@ msgstr "<h1 id=\"new-identity\">Funcionalidad <span class=\"guilabel\">Nueva ide msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" "Para cambiar a una nueva idenetidad, elige\n" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po b/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po index 312de45049e..6dd3f7d5f7e 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-03 12:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -608,7 +608,7 @@ msgstr "<h1 id=\"new-identity\">Fonctionnalité <span class=\"guilabel\">Nouvell msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" "Pour passer à une nouvelle identité, choisir\n" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.it.po b/wiki/src/doc/anonymous_internet/Tor_Browser.it.po index 04830f2ab34..d99f1b58172 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.it.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -519,7 +519,7 @@ msgstr "" msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" "Per passare a una nuova identità , seleziona\n" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po b/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po index f00ecc4150c..a9f1ca618b3 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.pt.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-12 11:31+0000\n" "Last-Translator: Lucas710 <lucaspb710@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -511,7 +511,7 @@ msgstr "É por isto queo **JavaScript está habilitado por padrão** no Tails." msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/Tor_Browser.ru.po b/wiki/src/doc/anonymous_internet/Tor_Browser.ru.po index eeb2bd82b61..dbda4d66a13 100644 --- a/wiki/src/doc/anonymous_internet/Tor_Browser.ru.po +++ b/wiki/src/doc/anonymous_internet/Tor_Browser.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-24 19:20+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -563,7 +563,7 @@ msgstr "<h1 id=\"new-identity\"><span class=\"guilabel\">ÐÐ¾Ð²Ð°Ñ Ð»Ð¸Ñ‡Ð½Ð¾Ñ msgid "" "To switch to a new identity, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">New Identity</span></span>.\n" msgstr "" "Чтобы Ñменить личноÑть, выберите\n" diff --git a/wiki/src/doc/anonymous_internet/electrum.de.po b/wiki/src/doc/anonymous_internet/electrum.de.po index 58820ca2601..666dae81951 100644 --- a/wiki/src/doc/anonymous_internet/electrum.de.po +++ b/wiki/src/doc/anonymous_internet/electrum.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-11 22:39+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -82,8 +82,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -109,7 +109,7 @@ msgstr "" #. type: Plain text msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" @@ -154,7 +154,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" "Um <span class=\"application\">Electrum</span> zu starten wählen Sie\n" diff --git a/wiki/src/doc/anonymous_internet/electrum.es.po b/wiki/src/doc/anonymous_internet/electrum.es.po index 8e5920c7157..6ef5472bd1b 100644 --- a/wiki/src/doc/anonymous_internet/electrum.es.po +++ b/wiki/src/doc/anonymous_internet/electrum.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -79,8 +79,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #| "vpnmentor.com/blog/ultimate-guide-bitcoin/)." msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" "Para obtener una explicación de cómo funciona Bitcoin en términos simples, " @@ -168,7 +168,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" "<p><span class=\"aplicación\">Electrum</span> usada <em>mBTC</em> como la\n" diff --git a/wiki/src/doc/anonymous_internet/electrum.fr.po b/wiki/src/doc/anonymous_internet/electrum.fr.po index 3c04aca04cf..ff6f0297f89 100644 --- a/wiki/src/doc/anonymous_internet/electrum.fr.po +++ b/wiki/src/doc/anonymous_internet/electrum.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 20:27+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -73,8 +73,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -101,7 +101,7 @@ msgstr "" #| "vpnmentor.com/blog/ultimate-guide-bitcoin/)." msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" "Pour une explication de comment fonctionne Bitcoin avec des termes simples, " @@ -157,7 +157,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" "<p><span class=\"application\">Electrum</span> utilise <em>mBTC</em> comme\n" diff --git a/wiki/src/doc/anonymous_internet/electrum.it.po b/wiki/src/doc/anonymous_internet/electrum.it.po index bbb3b62f3fe..8ec4a27c16a 100644 --- a/wiki/src/doc/anonymous_internet/electrum.it.po +++ b/wiki/src/doc/anonymous_internet/electrum.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -78,8 +78,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -105,7 +105,7 @@ msgstr "" #. type: Plain text msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" @@ -153,7 +153,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" "Per avviare <span class=\"application\">Electrum</span> seleziona\n" diff --git a/wiki/src/doc/anonymous_internet/electrum.pt.po b/wiki/src/doc/anonymous_internet/electrum.pt.po index 48cc04eae0d..151161ef83d 100644 --- a/wiki/src/doc/anonymous_internet/electrum.pt.po +++ b/wiki/src/doc/anonymous_internet/electrum.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-10 14:39+0000\n" "Last-Translator: Lucas710 <lucaspb710@protonmail.com>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -58,8 +58,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -73,7 +73,7 @@ msgstr "" #. type: Plain text msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" @@ -114,7 +114,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/electrum.ru.po b/wiki/src/doc/anonymous_internet/electrum.ru.po index ac3eaf4dd8e..f067f7ce6bb 100644 --- a/wiki/src/doc/anonymous_internet/electrum.ru.po +++ b/wiki/src/doc/anonymous_internet/electrum.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -77,8 +77,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Electrum</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Electrum Bitcoin Wallet</span>\n" "</span>.\n" msgstr "" @@ -109,7 +109,7 @@ msgstr "" #| "vpnmentor.com/blog/ultimate-guide-bitcoin/)." msgid "" "For an explanation of how Bitcoin works in simple terms, read [The In-Depth " -"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" +"Guide to Bitcoin That Won’t Leave You Frustrated](https://www.vpnmentor.com/" "blog/ultimate-guide-bitcoin/)." msgstr "" "О том, как вообще работает биткоин, можно прочеÑть в [Ñтом руководÑтве]" @@ -164,7 +164,7 @@ msgid "" "<p><span class=\"application\">Electrum</span> uses <em>mBTC</em> as the\n" "default base unit. 1 mBTC = 0.001 BTC. To change the base unit, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Tools</span> ▸\n" +" <span class=\"guimenu\">Tools</span> â–¸\n" " <span class=\"guimenuitem\">Preferences</span></span>.</p>\n" msgstr "" "<p>Ð’ качеÑтве базовой единицы по умолчанию <span class=\"application\">Electrum</span> иÑпользует <em>mBTC</em>. 1 mBTC = 0,001 BTC. Чтобы изменить базовую единицу измерениÑ, выберите\n" diff --git a/wiki/src/doc/anonymous_internet/networkmanager.de.po b/wiki/src/doc/anonymous_internet/networkmanager.de.po index b08d4486afe..a229e39a6f3 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.de.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 03:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Translations <tails-l10n@boum.org>\n" @@ -173,8 +173,8 @@ msgstr "" #| "to automatically connect to a Wi-Fi network, do the following:" msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Tun sie folgendes, um Ihre Netzwerkeinstellungen zu verändern, " "beispielsweise um zu konfigurieren, ob automatisch eine Verbindung mit einem " diff --git a/wiki/src/doc/anonymous_internet/networkmanager.es.po b/wiki/src/doc/anonymous_internet/networkmanager.es.po index ad321874bff..c2b8b7f1ecf 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.es.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-30 10:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -176,8 +176,8 @@ msgstr "Modificar tus configuraciones de red" #| "to automatically connect to a Wi-Fi network, do the following:" msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Para modificar tu configuración de red, por ejemplo para decidir si te " "conectas automáticamente o no a una red, haz lo siguiente:" diff --git a/wiki/src/doc/anonymous_internet/networkmanager.fr.po b/wiki/src/doc/anonymous_internet/networkmanager.fr.po index 63395aec7e1..a3a3c67004f 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.fr.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-19 23:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -171,8 +171,8 @@ msgstr "Modifier vos paramètres réseau" #| "System Tools â–¸ Settings â–¸ Network**." msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Pour modifier vos paramètres réseau, par exemple pour configurer si Tails " "doit se connecter automatiquement ou non aux réseau Wi-Fi, choisir " diff --git a/wiki/src/doc/anonymous_internet/networkmanager.it.po b/wiki/src/doc/anonymous_internet/networkmanager.it.po index 34e4a6c86d7..25b5f027df7 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.it.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-30 10:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -177,8 +177,8 @@ msgstr "Modifica le tue impostazioni di rete" #| "System Tools â–¸ Settings â–¸ Network**." msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Per modificare le tue impostazioni di rete, ad esempio per configurare se " "Tails debba o meno connettersi automaticamente a una rete Wi-Fi, vai in " diff --git a/wiki/src/doc/anonymous_internet/networkmanager.pt.po b/wiki/src/doc/anonymous_internet/networkmanager.pt.po index 4a4789c3fae..5b34ab84ead 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.pt.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-27 13:28+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -171,8 +171,8 @@ msgstr "Modificando suas configurações de rede" #| "System Tools â–¸ Settings â–¸ Network**." msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Para modificar suas configurações de rede, por exemplo, para configurar " "quando se conectar ou não automaticamente à uma rede Wi-Fi, escolha " diff --git a/wiki/src/doc/anonymous_internet/networkmanager.ru.po b/wiki/src/doc/anonymous_internet/networkmanager.ru.po index babbae57272..94e7f1b8cb2 100644 --- a/wiki/src/doc/anonymous_internet/networkmanager.ru.po +++ b/wiki/src/doc/anonymous_internet/networkmanager.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-30 10:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -171,8 +171,8 @@ msgstr "Как изменить наÑтройки Ñети" #| "to automatically connect to a Wi-Fi network, do the following:" msgid "" "To modify your network settings, for example, to configure whether or not to " -"automatically connect to a Wi-Fi network, choose **Applications ▸ " -"System Tools ▸ Settings ▸ Network**." +"automatically connect to a Wi-Fi network, choose **Applications â–¸ " +"System Tools â–¸ Settings â–¸ Network**." msgstr "" "Чтобы изменить Ñетевые наÑтройки, например, включить или отключить " "автоматичеÑкий вход в Ñеть wi-fi, выполните три шага." diff --git a/wiki/src/doc/anonymous_internet/pidgin.de.po b/wiki/src/doc/anonymous_internet/pidgin.de.po index 5090703b1de..4d36ccc0266 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.de.po +++ b/wiki/src/doc/anonymous_internet/pidgin.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -81,8 +81,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/pidgin.es.po b/wiki/src/doc/anonymous_internet/pidgin.es.po index 5bfe114d6ea..01262a53a78 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.es.po +++ b/wiki/src/doc/anonymous_internet/pidgin.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-07-11 20:05+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -73,8 +73,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/pidgin.fr.po b/wiki/src/doc/anonymous_internet/pidgin.fr.po index fe143068654..24dae689465 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.fr.po +++ b/wiki/src/doc/anonymous_internet/pidgin.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-02-08 20:27+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -87,8 +87,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/pidgin.it.po b/wiki/src/doc/anonymous_internet/pidgin.it.po index 46a82b98567..9c551c20ec0 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.it.po +++ b/wiki/src/doc/anonymous_internet/pidgin.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -81,8 +81,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/pidgin.pt.po b/wiki/src/doc/anonymous_internet/pidgin.pt.po index d76f8d275de..ee4994412f3 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.pt.po +++ b/wiki/src/doc/anonymous_internet/pidgin.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-05-21 11:39+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,8 +81,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/pidgin.ru.po b/wiki/src/doc/anonymous_internet/pidgin.ru.po index 80d7a3af4a0..65251464756 100644 --- a/wiki/src/doc/anonymous_internet/pidgin.ru.po +++ b/wiki/src/doc/anonymous_internet/pidgin.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-12-24 19:19+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -79,8 +79,8 @@ msgstr "" msgid "" "To start <span class=\"application\">Pidgin</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Pidgin Instant Messenger</span>\n" "</span> or click on the <span class=\"application\">Pidgin</span> icon in\n" "the [[<span class=\"guilabel\">Favorites</span> submenu|doc/first_steps/desktop#favorites]].\n" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.de.po b/wiki/src/doc/anonymous_internet/thunderbird.de.po index 2e589525a80..08dc9d14294 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.de.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -52,8 +52,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Um <span class=\"application\">Thunderbird</span> zu starten, wählen Sie\n" @@ -132,10 +132,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" " <div class=\"tip\">\n" @@ -437,7 +437,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" #. type: Bullet: '1. ' @@ -492,7 +492,7 @@ msgid "From the desktop:" msgstr "Vom Desktop:" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "" #. type: Bullet: '1. ' @@ -507,8 +507,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -527,7 +527,7 @@ msgstr "In *Thunderbird*:" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" #. type: Bullet: '1. ' @@ -539,7 +539,7 @@ msgstr "" "importeiren möchtest gehört und **Ende-zu-Ende-Verschlüsselung** auswählen." #. type: Bullet: '1. ' -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" #. type: Bullet: '1. ' @@ -556,7 +556,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" @@ -651,7 +651,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.es.po b/wiki/src/doc/anonymous_internet/thunderbird.es.po index 8d88b44d8ad..4633a9ed8e8 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.es.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -55,8 +55,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Para iniciar <span class=\"application\">Thunderbird</span> elige\n" @@ -137,10 +137,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" " <p>Para iniciar otra vez este asistente en el futuro desde la ventana principal de\n" @@ -435,7 +435,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Elige **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Configuración de cuenta**." @@ -495,7 +495,7 @@ msgstr "Desde el escritorio:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Utilities â–¸ Passwords and Keys**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Elige **Aplicaciones â–¸ Utilidades â–¸ Contraseñas y claves**." #. type: Bullet: '1. ' @@ -510,8 +510,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -534,7 +534,7 @@ msgstr "En *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Elige **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Configuración de cuenta**." @@ -550,7 +550,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "En el panel derecho, haz clic en el botón **Agregar clave ...**." #. type: Bullet: '1. ' @@ -571,7 +571,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" "Haz clic en el botón **Seleccionar archivo para importar ...** y elige la " @@ -676,7 +676,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.fr.po b/wiki/src/doc/anonymous_internet/thunderbird.fr.po index 36bf98ada2d..518f5f8929c 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.fr.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-24 17:37+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -53,8 +53,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Pour démarrer <span class=\"application\">Thunderbird</span> choisissez\n" @@ -133,10 +133,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" " <p>Pour plus tard démarrer à nouveau l'assistant, depuis la fenêtre principale\n" @@ -477,7 +477,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Paramètres de comptes**." @@ -541,7 +541,7 @@ msgstr "Depuis le bureau :" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Utilities â–¸ Passwords and Keys**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "" "Choisir **Applications â–¸ Utilitaires â–¸ Mots de passe et clés**." @@ -551,8 +551,8 @@ msgstr "Sélectionner la clé privée que vous voulez migrer vers *Thunderbird*. #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -575,7 +575,7 @@ msgstr "Dans *Thunderbird* :" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Paramètres de comptes**." @@ -591,7 +591,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" "Dans le panneau de droite, cliquer sur le bouton **Ajouter une clé...**." @@ -613,7 +613,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" "Cliquer sur le bouton **Sélectionner le fichier à importer...** et choisir " @@ -734,7 +734,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.it.po b/wiki/src/doc/anonymous_internet/thunderbird.it.po index d56ffc89655..fe9ac3d839b 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.it.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-13 17:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -53,8 +53,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Per avviare <span class=\"application\">Thunderbird</span> seleziona\n" @@ -138,10 +138,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" " <p>Per avviare questo assistente in futuro dalla finestra principale di\n" @@ -481,7 +481,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Seleziona **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Impostazioni dell'Account**." @@ -544,7 +544,7 @@ msgstr "Dal desktop:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Utilities â–¸ Passwords and Keys**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Scegli **Applicationi â–¸ Utilità ▸ Password e Chiavi**." #. type: Bullet: '1. ' @@ -559,8 +559,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -583,7 +583,7 @@ msgstr "Da *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Seleziona **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Impostazioni dell'Account**." @@ -599,7 +599,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "Nel riquadro a destra fai clic sul pulsante **Aggiungi chiave...**." #. type: Bullet: '1. ' @@ -621,7 +621,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" "Fai clic su **Seleziona file da importare...** e scegli la chiave privata " @@ -740,7 +740,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.pt.po b/wiki/src/doc/anonymous_internet/thunderbird.pt.po index 39a9eb64049..4257e9a1781 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.pt.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 18:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,8 +52,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Para iniciar o <span class=\"application\">Thunderbird</span> escolha\n" @@ -127,10 +127,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" @@ -455,7 +455,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" #. type: Bullet: '1. ' @@ -502,7 +502,7 @@ msgid "From the desktop:" msgstr "" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "" #. type: Bullet: '1. ' @@ -511,8 +511,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -531,7 +531,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" #. type: Bullet: '1. ' @@ -541,7 +541,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" #. type: Bullet: '1. ' @@ -552,7 +552,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" @@ -634,7 +634,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird.ru.po b/wiki/src/doc/anonymous_internet/thunderbird.ru.po index fab64132412..7964d6b8931 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird.ru.po +++ b/wiki/src/doc/anonymous_internet/thunderbird.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-11 19:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,8 +54,8 @@ msgstr "[[!toc levels=2]]\n" msgid "" "To start <span class=\"application\">Thunderbird</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Internet</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Internet</span> â–¸\n" " <span class=\"guimenuitem\">Thunderbird</span></span>.\n" msgstr "" "Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка <span class=\"application\">Thunderbird</span> выберите\n" @@ -133,10 +133,10 @@ msgid "" " <p>To start this assistant again in the future from the main window of\n" " <span class=\"application\">Thunderbird</span>, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> ▸\n" +" <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> â–¸\n" " <span class=\"guimenuitem\">Account Settings</span>\n" " </span> and then, from the <span class=\"guilabel\">Account Settings</span>\n" -" dialog, choose <span class=\"guilabel\">Account Actions</span> ▸\n" +" dialog, choose <span class=\"guilabel\">Account Actions</span> â–¸\n" " <span class=\"guilabel\">Add Mail Account…</span>.</p>\n" msgstr "" " <p>Чтобы в будущем выполнить наÑтройки из главного окна \n" @@ -445,7 +445,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Выберите **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Параметры учётной запиÑи**." @@ -507,7 +507,7 @@ msgstr "Ð’ Tails:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Utilities â–¸ Passwords and Keys**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Выберите **ÐŸÑ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ â–¸ Утилиты â–¸ Пароли и ключи**." #. type: Bullet: '1. ' @@ -522,8 +522,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -546,7 +546,7 @@ msgstr "Ð’ *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Выберите **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Параметры учётной запиÑи**." @@ -562,7 +562,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "Ð’ правой панели нажмите кнопку **Добавить ключ…**." #. type: Bullet: '1. ' @@ -583,7 +583,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra* utility." msgstr "" "Ðажмите кнопку **Выбор файла Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°...** и выберите Ñекретный ключ, " @@ -701,7 +701,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -" Choose **Security** ▸ **Key Assistant** to see the keys of the\n" +" Choose **Security** â–¸ **Key Assistant** to see the keys of the\n" " receipts and solve any issue.\n" msgstr "" diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.de.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.de.po index 1e44ffb0028..4f590f26cef 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.de.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-07-04 10:07+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -70,7 +70,7 @@ msgid "From the desktop:" msgstr "Vom Desktop:" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "" #. type: Bullet: '1. ' @@ -83,8 +83,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -103,7 +103,7 @@ msgstr "In *Thunderbird*:" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" #. type: Bullet: '1. ' @@ -115,7 +115,7 @@ msgstr "" "importeiren möchtest gehört und **Ende-zu-Ende-Verschlüsselung** auswählen." #. type: Bullet: '1. ' -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" #. type: Bullet: '1. ' @@ -132,7 +132,7 @@ msgstr "" #| "Choose the file containing the public keys that you exported from the " #| "*Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" "Die Datei, welche die öffentlichen Schlüssel die zuvor aus *Passwörter und " @@ -211,7 +211,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" #. type: Bullet: '1. ' @@ -263,7 +263,7 @@ msgstr " Du kannst mit **Umsch+Klick** und **Strg+Klick** mehrere Schlüssel a #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" @@ -275,12 +275,12 @@ msgstr "<h2 id=\"import-public\">Die öffentlichen Schlüssel in <em>Thunderbird #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" #. type: Bullet: '1. ' msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" @@ -351,7 +351,7 @@ msgstr "" "von GnuPG im persistenten Speicher ausschalten:" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.es.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.es.po index a6834923e82..dd61c9ed2a6 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.es.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-09 14:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,7 +73,7 @@ msgstr "Desde el escritorio:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Elige **Aplicaciones â–¸ Configurar almacenamiento persistente**." #. type: Bullet: '1. ' @@ -88,8 +88,8 @@ msgstr "Seleccione las claves públicas que deseas migrar a *Thunderbird*." #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" "Elija **Archivo â–¸ Exportar…** y guarda estas claves públicas en " "el directorio *Home*." @@ -114,7 +114,7 @@ msgstr "En *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Elige **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Configuración de cuenta**." @@ -130,7 +130,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "En el panel derecho, haz clic en el botón **Agregar clave ...**." #. type: Bullet: '1. ' @@ -147,7 +147,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" "Haz clic en el botón **Seleccionar archivo para importar ...** y elige la " @@ -233,7 +233,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Elige **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Configuración de cuenta**." @@ -290,7 +290,7 @@ msgstr " Puedes usar **Shift+click** y **Ctrl+click** para seleccionar múltip #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" "Elija **Archivo â–¸ Exportar…** y guarda estas claves públicas en " @@ -308,7 +308,7 @@ msgstr "<h2 id=\"import-public\">Importa las claves públicas en <em>Thunderbird #| "link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" "Elige **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Herramientas â–¸ OpenPGP Key Manager**." @@ -319,7 +319,7 @@ msgstr "" #| "In the **OpenPGP Key Manager**, choose **File â–¸ Import Public " #| "Key(s) From File.**" msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" "En el **OpenPGP Key Manager**, elige **File â–¸ Importar Claves " @@ -395,7 +395,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "Elige **Aplicaciones â–¸ Configurar almacenamiento persistente**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.fr.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.fr.po index f98c72f3964..8fa071ade76 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.fr.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-24 17:37+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,7 +73,7 @@ msgstr "Depuis le bureau :" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Persistent Storage**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Choisir **Applications â–¸ Stockage persistant**." #. type: Bullet: '1. ' @@ -86,8 +86,8 @@ msgstr "Sélectionner la clé privée que vous voulez migrer vers *Thunderbird*. #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" "Choisir **Fichier â–¸ Exporter…** et enregistrez ces clés " "publiques dans votre *Dossier personnel*." @@ -112,7 +112,7 @@ msgstr "Dans *Thunderbird* :" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Paramètres de comptes**." @@ -128,7 +128,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" "Dans le panneau de droite, cliquer sur le bouton **Ajouter une clé...**." @@ -146,7 +146,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" "Cliquer sur le bouton **Sélectionner le fichier à importer...** et choisir " @@ -221,7 +221,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Paramètres de comptes**." @@ -279,7 +279,7 @@ msgstr " Vous pouvez utiliser **Majuscule+clic** et **Ctrl+clic** pour sélect #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" "Choisir **Fichier â–¸ Exporter…** et enregistrez ces clés " @@ -297,7 +297,7 @@ msgstr "<h2 id=\"import-public\">Importer les clés publiques dans <em>Thunderbi #| "link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Outils â–¸ Gestionnaire de clés OpenPGP**." @@ -308,7 +308,7 @@ msgstr "" #| "In the **OpenPGP Key Manager**, choose **File â–¸ Import Public " #| "Key(s) From File.**" msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" "Dans le **Gestionnaire de clés OpenPGP**, choisir **Fichier â–¸ Importer " @@ -385,7 +385,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Persistent Storage**." -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "Choisir **Applications â–¸ Stockage persistant**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.it.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.it.po index d4bd0ee7e44..21e88bec00f 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.it.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-03-17 21:06+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -72,7 +72,7 @@ msgstr "Dal desktop:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Scegli **Applicazioni - Configurare il volume persistente**." #. type: Bullet: '1. ' @@ -87,8 +87,8 @@ msgstr "Seleziona le chiavi pubbliche che desideri spostare su *Thunderbird*." #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" "Seleziona **File â–¸ Export…** e salva queste chiavi pubbliche " "nella tua cartella *Home*." @@ -113,7 +113,7 @@ msgstr "Da *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Seleziona **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Impostazioni dell'Account**." @@ -129,7 +129,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "Nel riquadro a destra fai clic sul pulsante **Aggiungi chiave...**." #. type: Bullet: '1. ' @@ -147,7 +147,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" "Fai clic su **Seleziona file da importare...** e scegli la chiave privata " @@ -232,7 +232,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Seleziona **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Impostazioni dell'Account**." @@ -289,7 +289,7 @@ msgstr " Puoi usare **Shift+click** e **Ctrl+click** per selezionare più tast #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" "Seleziona **File â–¸ Export…** e salva queste chiavi pubbliche " @@ -307,7 +307,7 @@ msgstr "<h2 id=\"import-public\">Importa le chiavi publiche su <em>Thunderbird</ #| "link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" "Scegli **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] - Tools - OpenPGP Key Manager**." @@ -318,7 +318,7 @@ msgstr "" #| "In the **OpenPGP Key Manager**, choose **File â–¸ Import Public " #| "Key(s) From File.**" msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" "Nell' **OpenPGP Key Manager**, seleziona **File â–¸ Importa Chiave(i) " @@ -395,7 +395,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "Scegli **Applicazioni - Configurare il volume persistente**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.pt.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.pt.po index 77ef7400a29..3288a47139c 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.pt.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-05-24 07:40+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgid "From the desktop:" msgstr "" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "" #. type: Bullet: '1. ' @@ -73,8 +73,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" #. type: Bullet: '1. ' @@ -93,7 +93,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" #. type: Bullet: '1. ' @@ -103,7 +103,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "" #. type: Bullet: '1. ' @@ -114,7 +114,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" @@ -164,7 +164,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" #. type: Bullet: '1. ' @@ -203,7 +203,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" @@ -215,12 +215,12 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" #. type: Bullet: '1. ' msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" @@ -275,7 +275,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.ru.po b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.ru.po index c4601cb0ce2..55601ba6101 100644 --- a/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.ru.po +++ b/wiki/src/doc/anonymous_internet/thunderbird/openpgp_migration.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-12-25 15:09+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "Ð’ Tails:" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Accessories ▸ Kleopatra**." +msgid "Choose **Applications â–¸ Accessories â–¸ Kleopatra**." msgstr "Выберите **ÐŸÑ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ â–¸ Configure persistent volume**." #. type: Bullet: '1. ' @@ -89,8 +89,8 @@ msgstr "Выберите открытые ключи Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ½Ð¾Ñа в #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export Secret Keys…** and save this private key to " -"your *Home* directory." +"Choose **File â–¸ Export Secret Keys…** and save this private key to your " +"*Home* directory." msgstr "" "Выберите в меню **Файл â–¸ **ÐкÑпортировать…** и Ñохраните " "открытые ключи в Ñвоей *Домашней папке*." @@ -115,7 +115,7 @@ msgstr "Ð’ *Thunderbird*:" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Account Settings**." +"link=\"no\"]] â–¸ Account Settings**." msgstr "" "Выберите **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Параметры учётной запиÑи**." @@ -131,7 +131,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the right pane, click the **Add Key…** button." -msgid "In the right pane, click the **Add Key…** button." +msgid "In the right pane, click the **Add Key…** button." msgstr "Ð’ правой панели нажмите кнопку **Добавить ключ…**." #. type: Bullet: '1. ' @@ -148,7 +148,7 @@ msgstr "" #| "Click the **Select File to Import…** button and choose the private key " #| "that your exported from the *Passwords and Keys* utility." msgid "" -"Click the **Select File to Import…** button and choose the private key that " +"Click the **Select File to Import…** button and choose the private key that " "your exported from *Kleopatra*." msgstr "" "Ðажмите кнопку **Выбор файла Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð°...** и выберите Ñекретный ключ, " @@ -231,7 +231,7 @@ msgstr "" #| "link=\"no\"]] â–¸ Account Settings**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Settings**." +"link=\"no\"]] â–¸ Settings**." msgstr "" "Выберите **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " "link=\"no\"]] â–¸ Параметры учётной запиÑи**." @@ -286,7 +286,7 @@ msgstr " Можно иÑпользовать **Shift** и **Ctrl** однов #| "Choose **File â–¸ Export…** and save these public keys to your " #| "*Home* directory." msgid "" -"Choose **File ▸ Export…** and save these public keys to your *Home* " +"Choose **File â–¸ Export…** and save these public keys to your *Home* " "directory." msgstr "" "Выберите в меню **Файл â–¸ **ÐкÑпортировать…** и Ñохраните " @@ -304,7 +304,7 @@ msgstr "<h2 id=\"import-public\">Импорт открытых ключей в < #| "link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgid "" "Choose **[[!img lib/open-menu.png alt=\"Menu\" class=\"symbolic\" " -"link=\"no\"]] ▸ Tools ▸ OpenPGP Key Manager**." +"link=\"no\"]] â–¸ Tools â–¸ OpenPGP Key Manager**." msgstr "" "Выбери **[[!img lib/open-menu.png alt=\"Меню\" class=\"symbolic\" " "link=\"no\"]] â–¸ ИнÑтрументы â–¸ Менеджер ключей OpenPGP**." @@ -315,7 +315,7 @@ msgstr "" #| "In the **OpenPGP Key Manager**, choose **File â–¸ Import Public " #| "Key(s) From File.**" msgid "" -"In the **OpenPGP Key Manager**, choose **File ▸ Import Public Key(s) " +"In the **OpenPGP Key Manager**, choose **File â–¸ Import Public Key(s) " "From File.**" msgstr "" "Ð’ **Менеджере ключей OpenPGP** выберите в меню **Файл â–¸ Импорт открытых " @@ -391,7 +391,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Applications â–¸ Configure persistent volume**." -msgid "Choose **Applications ▸ Persistent Storage**." +msgid "Choose **Applications â–¸ Persistent Storage**." msgstr "Выберите **ÐŸÑ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ â–¸ Configure persistent volume**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.de.po b/wiki/src/doc/anonymous_internet/unsafe_browser.de.po index 95285422f9d..ba5b8e61f90 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.de.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-29 17:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -76,8 +76,7 @@ msgid "To start the *Unsafe Browser*:" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.es.po b/wiki/src/doc/anonymous_internet/unsafe_browser.es.po index 749e411805d..a9773443e2e 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.es.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-29 17:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -81,8 +81,7 @@ msgstr "Para iniciar el *Navegador No seguro*:" #| msgid "" #| "In Tails, choose **Applications** â–¸ **Internet** â–¸ **Unsafe " #| "Browser**." -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" "En Tails, selecciona **Aplicaciones** â–¸ **Internet** â–¸ **Navegador " "No seguro**." diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po b/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po index a3d6811ed7f..305a73c066b 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -80,8 +80,7 @@ msgstr "Pour démarrer le *Navigateur non sécurisé* :" #, fuzzy #| msgid "" #| "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" "Choisir **Applications** â–¸ **Internet** â–¸ **Navigateur non " "sécurisé**." diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.it.po b/wiki/src/doc/anonymous_internet/unsafe_browser.it.po index 220ef9518c3..b7db33d8b75 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.it.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-29 17:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -85,8 +85,7 @@ msgstr "Per avviare Browser *Non Sicuro*:" #| msgid "" #| "In Tails, choose **Applications** â–¸ **Internet** â–¸ **Unsafe " #| "Browser**." -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" "In Tails, vai in **Applicazioni** â–¸ **Internet** â–¸ **Browser Non " "Sicuro**." diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po b/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po index 1b35ebc3525..bb5dc2f03d9 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.pt.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-29 17:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -81,8 +81,7 @@ msgstr "Para iniciar o *Navegador não-confiável*:" #, fuzzy #| msgid "" #| "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" "Selecione **Aplicativos** â–¸ **Internet** â–¸ **Navegador Inseguro**." diff --git a/wiki/src/doc/anonymous_internet/unsafe_browser.ru.po b/wiki/src/doc/anonymous_internet/unsafe_browser.ru.po index 2bc085664d2..24d0aa16de5 100644 --- a/wiki/src/doc/anonymous_internet/unsafe_browser.ru.po +++ b/wiki/src/doc/anonymous_internet/unsafe_browser.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-29 17:22+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,8 +82,7 @@ msgstr "Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка *ÐебезопаÑного браузера* ну #| msgid "" #| "In Tails, choose **Applications** â–¸ **Internet** â–¸ **Unsafe " #| "Browser**." -msgid "" -"Choose **Applications** ▸ **Internet** ▸ **Unsafe Browser**." +msgid "Choose **Applications** â–¸ **Internet** â–¸ **Unsafe Browser**." msgstr "" "Ð’ Tails выберите **ПриложениÑ** â–¸ **Интернет** â–¸ **Unsafe " "Browser**. Ð’ открывшемÑÑ Ð¾ÐºÐ½Ðµ Ð´Ð»Ñ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ Ð½Ð°Ð¶Ð¼Ð¸Ñ‚Ðµ **Launch**." diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po index eef71da2163..6ca1bf60349 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -103,8 +103,8 @@ msgstr "<h2 class=\"bullet-number-three\">Erstellen Sie eine neue, verschlüssel #. type: Plain text msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" #. type: Plain text @@ -157,7 +157,7 @@ msgstr "<h2 class=\"bullet-number-two\">Formatieren Sie das Medium</h2>\n" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" "An diesem Punkt können Sie, wenn Sie möchten, weitere Partitionen in dem " "restlichen freien Speicherplatz erstellen, indem Sie darauf klicken und " @@ -182,7 +182,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr " Klicken Sie anschließend auf die <span class=\"bold\">Erstellen</span>-Schaltfläche.\n" #. type: Bullet: ' 1. ' @@ -419,7 +419,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -523,8 +523,8 @@ msgstr "Öffnen Sie eine bestehende, verschlüsselte Partition\n" msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" "Um die GNOME <span class=\"application\">Laufwerksverwaltung</span> zu öffnen, wählen Sie\n" @@ -579,7 +579,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po index 20217474315..1526a0d4546 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.es.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -107,8 +107,8 @@ msgstr "Crea una partición cifrada" #. type: Plain text msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" #. type: Plain text @@ -155,7 +155,7 @@ msgstr "" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" #. type: Bullet: ' 1. ' @@ -194,7 +194,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " Then click <span class=\"bold\">Format…</span>.\n" -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr " Entonces haz click en el botón <span class=\"bold\">Format…</span>.\n" #. type: Bullet: ' 1. ' @@ -401,7 +401,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -495,8 +495,8 @@ msgstr "Cambia la frase contraseña de una partición cifrada existente" msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" "Para abrir <span class=\"application\">GNOME Disks</span> elige\n" @@ -546,7 +546,7 @@ msgstr " [[!img lib/system-run.png alt=\"Opciones adicionales de partición\" #. type: Plain text #, no-wrap -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr "" #, no-wrap 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 35d2165263b..8ac3045b546 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-24 17:37+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -115,8 +115,8 @@ msgstr "<h1 id=\"creating\">Créer une partition chiffrée</h1>\n" #| "Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open " #| "*GNOME Disks*." msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" "Choisir **Applications** â–¸ **Utilitaires** â–¸ **Disques** pour " "ouvrir *Disques*." @@ -174,7 +174,7 @@ msgstr "<h2 id=\"formatting\">Formater le périphérique</h2>\n" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" "Cliquer sur le bouton [[!img lib/view-more.png alt=\"Options du disque\" " "class=\"symbolic\" link=\"no\"]] dans la barre de titre et choisir " @@ -220,7 +220,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " Then click <span class=\"bold\">Format…</span>.\n" -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr " Cliquez ensuite sur <span class=\"bold\">Formater...</span>.\n" #. type: Bullet: ' 1. ' @@ -475,7 +475,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -581,8 +581,8 @@ msgstr "<h1 id=\"changing\">Changer la phrase de passe d'une partition chiffrée msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" "Pour ouvrir l'utilitaire <span class=\"application\">Disques</span> de GNOME, choisir\n" @@ -642,7 +642,7 @@ msgstr " [[!img lib/system-run.png alt=\"Options de partition supplémentaires #. type: Plain text #, fuzzy, no-wrap #| msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr " </span> bouton et choisir <span class=\"guimenu\">Modifier la phrase de passe…</span>\n" #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.it.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.it.po index ea2d9608964..fe279bfc364 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.it.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -119,8 +119,8 @@ msgstr "Creare una partizione criptata\n" #. type: Plain text msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" #. type: Plain text @@ -177,7 +177,7 @@ msgstr "" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" "Clicca sul bottone <span class=\"guimenu\">[[!img lib/open-menu.png " "alt=\"Menu\" class=\"symbolic\" link=\"no\"]]</span> nella barra del titolo " @@ -222,7 +222,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " Then click <span class=\"bold\">Format…</span>.\n" -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr " Dopodiché clicca su <span class=\"bold\">Formatta...</span>.\n" #. type: Bullet: ' 1. ' @@ -494,7 +494,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -600,8 +600,8 @@ msgstr "Cambiare la frase d'accesso di una partizione cifrata esistente\n" msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" "Per aprire <span class=\"application\">Dischi GNOME</span> selezionate\n" @@ -661,7 +661,7 @@ msgstr " [[!img lib/system-run.png alt=\"Additional partition options\" class= #. type: Plain text #, fuzzy, no-wrap #| msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr " </span> bottone e selezionate <span class=\"guimenu\">Modifica frase d'accesso...</span>\n" #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po index d30a2b66b39..f7a7d73d923 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.pt.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -98,8 +98,8 @@ msgstr "" #. type: Plain text msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" #. type: Plain text @@ -143,7 +143,7 @@ msgstr "" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" #. type: Bullet: ' 1. ' @@ -166,7 +166,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "In the <span class=\"guilabel\">Format Disk</span> dialog:" -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr "Na caixa de diálogo <span class=\"guilabel\">Formatar disco</span>:" #. type: Bullet: ' 1. ' @@ -361,7 +361,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -439,8 +439,8 @@ msgstr "" msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" @@ -485,7 +485,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr "" #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.ru.po b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.ru.po index f3ccb71eb47..aede0b4bf26 100644 --- a/wiki/src/doc/encryption_and_privacy/encrypted_volumes.ru.po +++ b/wiki/src/doc/encryption_and_privacy/encrypted_volumes.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -111,8 +111,8 @@ msgstr "<h2 class=\"bullet-number-three\">Erstellen Sie eine neue, verschlüssel #. type: Plain text msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Disks** to open " -"*GNOME Disks*." +"Choose **Applications** â–¸ **Utilities** â–¸ **Disks** to open *GNOME " +"Disks*." msgstr "" #. type: Plain text @@ -163,7 +163,7 @@ msgstr "<h2 class=\"bullet-number-two\">Formatieren Sie das Medium</h2>\n" msgid "" "Click on the [[!img lib/view-more.png alt=\"Drive Options\" " "class=\"symbolic\" link=\"no\"]] button in the titlebar and choose **Format " -"Disk…** to erase all the existing partitions on the device." +"Disk…** to erase all the existing partitions on the device." msgstr "" "Ðажмите кнопку <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Меню\" " "class=\"symbolic\" link=\"no\"]]</span> в заголовке окна. Выберите <span " @@ -206,7 +206,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " Then click <span class=\"bold\">Format…</span>.\n" -msgid " Then click <span class=\"bold\">Format…</span>.\n" +msgid " Then click <span class=\"bold\">Format…</span>.\n" msgstr " Затем нажмите <span class=\"bold\">Форматировать…</span>.\n" #. type: Bullet: ' 1. ' @@ -458,7 +458,7 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guisubmenu\">Computer</span></span>\n" " to open the file browser.\n" msgstr "" @@ -562,8 +562,8 @@ msgstr "Öffnen Sie eine bestehende, verschlüsselte Partition\n" msgid "" "To open <span class=\"application\">GNOME Disks</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" msgstr "" "Чтобы открыть утилиту <span class=\"application\">ДиÑки</span>, иÑпользуйте\n" @@ -620,7 +620,7 @@ msgstr " кнопке [[!img lib/system-run.png alt=\"Дополнительн #. type: Plain text #, fuzzy, no-wrap #| msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" -msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" +msgid " </span> button and choose <span class=\"guimenu\">Change Passphrase…</span>\n" msgstr " </span> и выберите <span class=\"guimenu\">Изменить пароль…</span>\n" #, no-wrap diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.de.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.de.po index f90bbc1b467..a139ca60217 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.de.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,9 +46,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\n" diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.es.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.es.po index b0969e44a0b..610d0f2239f 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.es.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-05-11 15:09+0000\n" "Last-Translator: Weblate Admin <tails-weblate@boum.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,9 +46,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\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 2ca64de9342..efd19762b9c 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 @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-05 21:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -62,9 +62,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\n" diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.it.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.it.po index ce2d7dcfafa..447fa5933cb 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.it.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,9 +49,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\n" diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.pt.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.pt.po index bc3955bf08c..22bdc52ac94 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.pt.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-10-06 14:00+0000\n" "Last-Translator: Omar Carlos Furtado <omar.furtado@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,9 +50,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\n" diff --git a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.ru.po b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.ru.po index 2161d412042..0878be5390d 100644 --- a/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.ru.po +++ b/wiki/src/doc/encryption_and_privacy/luks_vs_veracrypt.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-17 05:59+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -63,9 +63,9 @@ msgid "" "<tr><td>Compatibility</td><td>Linux</td><td>Windows + macOS + Linux</td></tr>\n" "<tr><td>Create new volumes</td><td class=\"check\"><span class=\"check\">Yes</span></td><td class=\"cross\">Outside of Tails</td></tr>\n" "<tr><td>Open and modify existing volumes</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" -"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" -"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted partitions (or entire disks) ¹</td><td class=\"check\">Yes</td><td class=\"check\">Yes</td></tr>\n" +"<tr><td>Encrypted file containers ¹</td><td class=\"cross\">Complicated </td><td class=\"check\">Easy</td></tr>\n" +"<tr><td>Plausible deniability ²</td><td class=\"cross\">No</td><td class=\"check\">Yes</td></tr>\n" "<tr><td>Ease of use</td><td class=\"check\">Easier</td><td class=\"cross\">More complicated</td></tr>\n" "<tr><td>Speed</td><td class=\"check\">Faster</td><td class=\"cross\">Slower</td></tr>\n" "</table>\n" diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.de.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.de.po index bc52e87819a..e8f7d1e16c3 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.de.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -100,7 +100,7 @@ msgstr "" "use]] beim Start von Tails." #. type: Bullet: '0. ' -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '0. ' @@ -116,8 +116,8 @@ msgstr "" #| "class=\"guimenuitem\">KeePassXC</span></span>." msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" "Um <span class=\"application\">KeePassXC</span> zu starten, wählen Sie <span " @@ -188,7 +188,7 @@ msgstr "" #. type: Bullet: '0. ' msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" @@ -271,7 +271,7 @@ msgid "In the Welcome Screen, unlock the Persistent Storage." msgstr "" #. type: Bullet: '1. ' -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.es.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.es.po index 9315e7bf796..81442c689fb 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.es.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -93,7 +93,7 @@ msgstr "" "persistence/use]]." #. type: Bullet: '0. ' -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '0. ' @@ -109,8 +109,8 @@ msgstr "" #| "class=\"guimenuitem\">KeePassXC</span></span>." msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" "Para arrancar <span class=\"application\">KeePassXC</span>, elige <span " @@ -174,7 +174,7 @@ msgstr "" #. type: Bullet: '0. ' msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" @@ -248,7 +248,7 @@ msgid "In the Welcome Screen, unlock the Persistent Storage." msgstr "" #. type: Bullet: '1. ' -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.fr.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.fr.po index a19ab75e1ff..9aac79380f4 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.fr.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -85,7 +85,7 @@ msgstr "Au démarrage de Tails, déverrouillez le stockage persistant." #. type: Bullet: '0. ' #, fuzzy #| msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "Dans Tails, choisir **Applications** â–¸ **Stockage persistant**." #. type: Bullet: '0. ' @@ -101,8 +101,8 @@ msgstr "Vérifier que la fonctionnalité du dossier persistant est activée." #| "class=\"guimenuitem\">KeePassXC</span></span>." msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" "Pour lancer <span class=\"application\">KeePassXC</span>, choisir <span " @@ -182,7 +182,7 @@ msgstr "" #| "In Tails, choose **Applications** â–¸ **Accessories** â–¸ " #| "**KeePassXC**." msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" "Dans Tails, choisir **Applications** â–¸ **Accessoires** â–¸ " @@ -270,7 +270,7 @@ msgstr "Dans l’Écran de bienvenue, déverrouiller le stockage persistant." #. type: Bullet: '1. ' #, fuzzy #| msgid "In Tails, choose **Places** â–¸ **Dotfiles**." -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "Dans Tails, choisir **Emplacements** â–¸ **Dotfiles**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.it.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.it.po index 0eb88433a15..858c9a78470 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.it.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -79,7 +79,7 @@ msgid "When starting Tails, unlock the Persistent Storage." msgstr "" #. type: Bullet: '0. ' -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '0. ' @@ -89,8 +89,8 @@ msgstr "" #. type: Bullet: '0. ' msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" @@ -157,7 +157,7 @@ msgstr "" #. type: Bullet: '0. ' msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" @@ -227,7 +227,7 @@ msgid "In the Welcome Screen, unlock the Persistent Storage." msgstr "" #. type: Bullet: '1. ' -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.pt.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.pt.po index 60ec176a90f..a7ef75f9ae7 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.pt.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-27 16:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -74,7 +74,7 @@ msgid "When starting Tails, unlock the Persistent Storage." msgstr "" #. type: Bullet: '0. ' -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '0. ' @@ -84,8 +84,8 @@ msgstr "" #. type: Bullet: '0. ' msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" @@ -141,7 +141,7 @@ msgstr "" #. type: Bullet: '0. ' msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" @@ -211,7 +211,7 @@ msgid "In the Welcome Screen, unlock the Persistent Storage." msgstr "" #. type: Bullet: '1. ' -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/manage_passwords.ru.po b/wiki/src/doc/encryption_and_privacy/manage_passwords.ru.po index 4633b3d5741..bcb5e7f45a2 100644 --- a/wiki/src/doc/encryption_and_privacy/manage_passwords.ru.po +++ b/wiki/src/doc/encryption_and_privacy/manage_passwords.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -95,7 +95,7 @@ msgstr "" #| msgid "" #| "Choose **Database** â–¸ **Import** â–¸ **Import KeePass 1 " #| "Database**." -msgid "In Tails, choose **Applications** ▸ **Persistent Storage**." +msgid "In Tails, choose **Applications** â–¸ **Persistent Storage**." msgstr "" "Выберите **База данных** â–¸ **Импорт** â–¸ **База данных KeePass 1..." "**" @@ -113,8 +113,8 @@ msgstr "" #| "class=\"guimenuitem\">KeePassXC</span></span>." msgid "" "To start <span class=\"application\">KeePassXC</span>, choose <span " -"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> ▸ " -"<span class=\"guisubmenu\">Accessories</span> ▸ <span " +"class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ " +"<span class=\"guisubmenu\">Accessories</span> â–¸ <span " "class=\"guimenuitem\">KeePassXC</span></span>." msgstr "" "Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка <span class=\"application\">KeePassXC</span> выберите <span " @@ -184,7 +184,7 @@ msgstr "" #| "Choose **Database** â–¸ **Import** â–¸ **Import KeePass 1 " #| "Database**." msgid "" -"In Tails, choose **Applications** ▸ **Accessories** ▸ " +"In Tails, choose **Applications** â–¸ **Accessories** â–¸ " "**KeePassXC**." msgstr "" "Выберите **База данных** â–¸ **Импорт** â–¸ **База данных KeePass 1..." @@ -272,7 +272,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Choose **Places** â–¸ **Dotfiles**." -msgid "In Tails, choose **Places** ▸ **Dotfiles**." +msgid "In Tails, choose **Places** â–¸ **Dotfiles**." msgstr "Выберите **МеÑта** â–¸ **Dotfiles**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.de.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.de.po index d0cb428e424..4aa5748e4e9 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.de.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -56,7 +56,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" "Stattdessen werden die Einträge der Datei im Verzeichnis des Dateisystems " @@ -225,7 +225,7 @@ msgstr "Bestätigen Sie." #| " according to the size of the files. Be patient…\n" msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" " 1. Das Löschen wird beginnen. Es kann, je nach Größe der Dateien,\n" " von wenigen Sekunden bis zu einigen Minuten hin dauern. Seien Sie geduldig…\n" @@ -297,7 +297,7 @@ msgstr "" #| "according to the size of the available diskspace. Be patient…" msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" "Die Bereinigung beginnt. Dies kann von einigen Minuten bis zu einigen " "Stunden hin dauern, je nachdem wie groß der verfügbare Speicherplatz ist. " @@ -355,7 +355,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" @@ -376,7 +376,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.es.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.es.po index d8a12e9448b..1f4bc2e684a 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.es.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2019-12-01 14:56+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -46,7 +46,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" @@ -172,7 +172,7 @@ msgstr "" #, no-wrap msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" #. type: Plain text @@ -229,7 +229,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" #. type: Plain text @@ -285,7 +285,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" "Haz click en el botón <span class=\"guimenu\">[[!img lib/pan-down.png " @@ -327,7 +327,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the <span class=\"guilabel\">Format Disk</span> dialog:" -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "En el diálogo <span class=\"guilabel\">Formatea Disco</span>:" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po index 00c648e2c94..ea6c958c5d9 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-23 10:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -55,7 +55,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" "À la place, ils effacent simplement l'entrée du fichier du système de " @@ -209,7 +209,7 @@ msgstr "Confirmez." #| " according to the size of the files. Be patient…\n" msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" " 1. La suppression commence. Elle peut durer de quelques secondes à plusieurs minutes,\n" " selon la taille des fichiers. Patience…\n" @@ -279,7 +279,7 @@ msgstr "" #| "according to the size of the available diskspace. Be patient…" msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" "L'écrasement commence. Il peut durer de quelques minutes à quelques heures, " "selon l'espace libre présent sur le disque. Patience…" @@ -345,7 +345,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" "Cliquez sur le bouton <span class=\"guimenu\">[[!img lib/open-menu.png " @@ -389,7 +389,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Click <span class=\"bold\">Format…</span>." -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "Cliquez sur <span class=\"bold\">Formater…</span>." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.it.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.it.po index be5e55f570d..83923bf8432 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.it.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-05-23 23:40+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -55,7 +55,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" "Rimuovono semplicemente la voce del file dalla directory del file system, " @@ -197,7 +197,7 @@ msgstr "Conferma." #| " according to the size of the files. Be patient…\n" msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" " 1. Si avvierà la cancellazione che potrebbe richiedere da pochi secondi ad alcuni minuti\n" " in base alle dimensioni dei files. Siate pazienti...\n" @@ -265,7 +265,7 @@ msgstr "" #| "according to the size of the available diskspace. Be patient…" msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" "Inizia la pulizia. Potrebbe richiedere da alcuni minuti ad alcune ore in " "base alle dimensione dello spazio disco disponibile. Sii paziente…" @@ -323,7 +323,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" "Clicca sul bottone <span class=\"guimenu\">[[!img lib/open-menu.png " @@ -367,7 +367,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Click <span class=\"bold\">Format…</span>." -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "Clicca <span class=\"bold\">Formatta...</span>." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.pt.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.pt.po index f05b1253da1..be61bbe51a1 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.pt.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-05-22 16:39+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -46,7 +46,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" @@ -172,7 +172,7 @@ msgstr "" #, no-wrap msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" #. type: Plain text @@ -229,7 +229,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" #. type: Plain text @@ -283,7 +283,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" "Clique no botão <span class=\"guimenu\">[[!img lib/pan-down.png alt=\"menu " @@ -309,7 +309,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "In the <span class=\"guilabel\">Format Disk</span> dialog:" -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "Na caixa de diálogo <span class=\"guilabel\">Formatar disco</span>:" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/secure_deletion.ru.po b/wiki/src/doc/encryption_and_privacy/secure_deletion.ru.po index 13b1e0cf39f..8e3827ebb2b 100644 --- a/wiki/src/doc/encryption_and_privacy/secure_deletion.ru.po +++ b/wiki/src/doc/encryption_and_privacy/secure_deletion.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-24 19:20+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -57,7 +57,7 @@ msgstr "" msgid "" "Instead, they simply remove the file's entry from the file system directory, " "because this requires less work and is therefore faster. The contents of the " -"file—the actual data—remain on the storage medium. The data will remain " +"file—the actual data—remain on the storage medium. The data will remain " "there until the operating system reuses the space for new data." msgstr "" "Они проÑто удалÑÑŽÑ‚ запиÑÑŒ о файле из каталога файловой ÑиÑтемы. Ðто требует " @@ -217,7 +217,7 @@ msgstr "Подтвердите." #| " according to the size of the files. Be patient…\n" msgid "" " 1. The deletion will start. It can last from a few seconds to several minutes,\n" -" according to the size of the files. Be patient…\n" +" according to the size of the files. Be patient…\n" msgstr "" " 1. ÐачнетÑÑ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ðµ. Оно может длитьÑÑ Ð¾Ñ‚ неÑкольких Ñекунд до неÑкольких минут в\n" "завиÑимоÑти от размера файла (-ов). Будьте терпеливы…\n" @@ -299,7 +299,7 @@ msgstr "" #| "according to the size of the available diskspace. Be patient…" msgid "" "The cleaning starts. It can last from a few minutes to a few hours, " -"according to the size of the available diskspace. Be patient…" +"according to the size of the available diskspace. Be patient…" msgstr "" "ÐачинаетÑÑ Ð¾Ñ‡Ð¸Ñтка. Она может длитьÑÑ Ð¾Ñ‚ неÑкольких минут до неÑкольких " "чаÑов в завиÑимоÑти от объёма доÑтупного диÑкового проÑтранÑтва. Будьте " @@ -361,7 +361,7 @@ msgstr "" msgid "" "Click on the <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" " "class=\"symbolic\" link=\"no\"]]</span> button in the titlebar and choose " -"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " +"<span class=\"guilabel\">Format Disk…</span> to erase all the existing " "partitions on the device." msgstr "" "Ðажмите кнопку <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Меню\" " @@ -403,7 +403,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "Click <span class=\"bold\">Format…</span>." -msgid "Click <span class=\"bold\">Format…</span>." +msgid "Click <span class=\"bold\">Format…</span>." msgstr "Ðажмите <span class=\"bold\">Форматировать…</span>." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po b/wiki/src/doc/encryption_and_privacy/veracrypt.de.po index a344057198c..08c119bdb2a 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.de.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-01-15 21:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -230,8 +230,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" @@ -293,8 +293,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -302,7 +302,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po b/wiki/src/doc/encryption_and_privacy/veracrypt.es.po index db8f4ad674f..8788577bf15 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.es.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -232,8 +232,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" @@ -294,8 +294,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -303,7 +303,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po b/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po index fb3b3bbea52..18ccccdb1e3 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-12 19:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -278,8 +278,8 @@ msgstr "Déverrouiller un fichier conteneur sans fichiers clés" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" "1. Choisissez\n" @@ -364,8 +364,8 @@ msgstr "Déverrouiller un fichier conteneur avec fichiers clés" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -384,7 +384,7 @@ msgstr "" #| "bar." msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" "Choisir **[[!img lib/open-menu.png alt=\"\" class=symbolic " "link=\"no\"]] â–¸ Attacher l'image disque…** dans la barre de " diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.it.po b/wiki/src/doc/encryption_and_privacy/veracrypt.it.po index f6788d788ba..f22af663700 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.it.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-03-15 23:06+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: \n" @@ -279,8 +279,8 @@ msgstr "Sbloccare un file container senza keyfiles" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" "1. Selezionare\n" @@ -364,8 +364,8 @@ msgstr "Sbloccare un file container con keyfiles" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -379,7 +379,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po b/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po index 491503c046c..a15e4932b11 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.pt.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-05-24 07:39+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -230,8 +230,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" @@ -292,8 +292,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -301,7 +301,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po b/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po index 8e93c08c4c0..961655bc9b8 100644 --- a/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po +++ b/wiki/src/doc/encryption_and_privacy/veracrypt.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-11-07 18:24+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -260,8 +260,8 @@ msgstr "Разблокирование файлового контейнера msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Unlock VeraCrypt Volumes</span></span>.\n" msgstr "" "1. Выберите\n" @@ -342,8 +342,8 @@ msgstr "Разблокирование файлового контейнера msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guisubmenuitem\">Disks</span></span>\n" " to start the <span class=\"application\">Disks</span> utility.\n" msgstr "" @@ -357,7 +357,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose **[[!img lib/open-menu.png alt=\"\" class=symbolic link=\"no\"]] " -"▸ Attach Disk Image…** from the top navigation bar." +"â–¸ Attach Disk Image…** from the top navigation bar." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/first_steps/bug_reporting.de.po b/wiki/src/doc/first_steps/bug_reporting.de.po index 1cbbc419782..389ffa4495c 100644 --- a/wiki/src/doc/first_steps/bug_reporting.de.po +++ b/wiki/src/doc/first_steps/bug_reporting.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Language Team <tails@boum.org>\n" @@ -167,8 +167,8 @@ msgstr "Starten Sie WhisperBack\n" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Um <span class=\"application\">WhisperBack</span> zu starten, wählen Sie\n" @@ -294,8 +294,8 @@ msgstr "Falls Sie <span class=\"application\">WhisperBack</span> nicht benutzen msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Um <span class=\"application\">WhisperBack</span> zu starten, wählen Sie\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.es.po b/wiki/src/doc/first_steps/bug_reporting.es.po index 5d36c8f9cf3..dc9d3dc7fe8 100644 --- a/wiki/src/doc/first_steps/bug_reporting.es.po +++ b/wiki/src/doc/first_steps/bug_reporting.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -155,8 +155,8 @@ msgstr "Inicia WhisperBack" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Para arrancar <span class=\"application\">WhisperBack</span>, elige\n" @@ -288,8 +288,8 @@ msgstr "Si no puedes usar <span class=\"application\">GNOME Screenshot</span>\n" msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Para arrancar <span class=\"application\">GNOME Screenshot</span>, elige\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.fr.po b/wiki/src/doc/first_steps/bug_reporting.fr.po index 03e4a6579a7..17fbb1e96c0 100644 --- a/wiki/src/doc/first_steps/bug_reporting.fr.po +++ b/wiki/src/doc/first_steps/bug_reporting.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-04-03 23:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -158,8 +158,8 @@ msgstr "Lancer WhisperBack" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Pour lancer <span class=\"application\">WhisperBack</span>, choisir\n" @@ -299,8 +299,8 @@ msgstr "" msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Pour lancer l'application de <span class=\"application\">Capture d'écran de GNOME</span>, choisir\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.it.po b/wiki/src/doc/first_steps/bug_reporting.it.po index eafcdace109..6f0e2d86128 100644 --- a/wiki/src/doc/first_steps/bug_reporting.it.po +++ b/wiki/src/doc/first_steps/bug_reporting.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -156,8 +156,8 @@ msgstr "Avvia WhisperBack" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Per avviare <span class=\"application\">WhisperBack</span>, scegli\n" @@ -294,8 +294,8 @@ msgstr "" msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Per avviare <span class=\"application\">GNOME Screenshot</span>, seleziona\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.pt.po b/wiki/src/doc/first_steps/bug_reporting.pt.po index 4832ef74ccf..1209ca3bf8e 100644 --- a/wiki/src/doc/first_steps/bug_reporting.pt.po +++ b/wiki/src/doc/first_steps/bug_reporting.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-18 16:20+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -157,8 +157,8 @@ msgstr "Inicie o WhisperBack" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Para iniciar o <span class=\"application\">WhisperBack</span>, selecione\n" @@ -294,8 +294,8 @@ msgstr "" msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Para iniciar o <span class=\"application\">GNOME Screenshot</span>, selecione\n" diff --git a/wiki/src/doc/first_steps/bug_reporting.ru.po b/wiki/src/doc/first_steps/bug_reporting.ru.po index ffe5ee0f267..e15995fc6f0 100644 --- a/wiki/src/doc/first_steps/bug_reporting.ru.po +++ b/wiki/src/doc/first_steps/bug_reporting.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -151,8 +151,8 @@ msgstr "ЗапуÑк WhisperBack" msgid "" "To start <span class=\"application\">WhisperBack</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">WhisperBack Error Reporting</span></span>.\n" msgstr "" "Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка <span class=\"application\">WhisperBack</span> выберите\n" @@ -285,8 +285,8 @@ msgstr "Снимок Ñкрана можно Ñделать также Ñ Ð¿Ð¾Ð¼ msgid "" "To start <span class=\"application\">GNOME Screenshot</span>, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Screenshot</span></span>.\n" msgstr "" "Чтобы запуÑтить программу <span class=\"application\">Снимок Ñкрана</span>, выберите\n" diff --git a/wiki/src/doc/first_steps/desktop.de.po b/wiki/src/doc/first_steps/desktop.de.po index 4263ef82737..5b7def7b8c6 100644 --- a/wiki/src/doc/first_steps/desktop.de.po +++ b/wiki/src/doc/first_steps/desktop.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -150,7 +150,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -184,7 +184,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -255,7 +255,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -426,7 +426,7 @@ msgstr "[[!img utilities-terminal.png link=no]]\n" #| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -832,8 +832,8 @@ msgstr "das <span class=\"guimenu\">Anwendungen</span>-Menü" #, fuzzy, no-wrap msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" " - <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/desktop.es.po b/wiki/src/doc/first_steps/desktop.es.po index 28679087255..441f812e751 100644 --- a/wiki/src/doc/first_steps/desktop.es.po +++ b/wiki/src/doc/first_steps/desktop.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -150,7 +150,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -186,7 +186,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -264,7 +264,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -435,7 +435,7 @@ msgstr "[[!img lib/apps/tails-installer.png link=no]]\n" #| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -850,8 +850,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Files</span></span>.\n" msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" "- Escoge <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/desktop.fr.po b/wiki/src/doc/first_steps/desktop.fr.po index 71a84249513..95ef2aea560 100644 --- a/wiki/src/doc/first_steps/desktop.fr.po +++ b/wiki/src/doc/first_steps/desktop.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -142,7 +142,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -173,7 +173,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -239,7 +239,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -377,10 +377,15 @@ msgid "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" msgstr "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<div class=\"text\">\n" +#| "<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +#| "</div>\n" +#| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -769,8 +774,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Files</span></span>.\n" msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" "- Choisir <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/desktop.it.po b/wiki/src/doc/first_steps/desktop.it.po index a7273c98ff6..8f7bc82f592 100644 --- a/wiki/src/doc/first_steps/desktop.it.po +++ b/wiki/src/doc/first_steps/desktop.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -149,7 +149,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -180,7 +180,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -247,7 +247,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -390,10 +390,15 @@ msgid "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" msgstr "[[!img lib/apps/tails-installer.png link=no]]\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<div class=\"text\">\n" +#| "<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +#| "</div>\n" +#| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -787,8 +792,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Files</span></span>.\n" msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" "- Selezionare <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/desktop.pt.po b/wiki/src/doc/first_steps/desktop.pt.po index f0918b2239b..e9e36cd9f45 100644 --- a/wiki/src/doc/first_steps/desktop.pt.po +++ b/wiki/src/doc/first_steps/desktop.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-15 09:20+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -142,7 +142,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -173,7 +173,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -242,7 +242,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -374,10 +374,15 @@ msgid "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" msgstr "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<div class=\"text\">\n" +#| "<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +#| "</div>\n" +#| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -762,8 +767,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Files</span></span>.\n" msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" "- Choose <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/desktop.ru.po b/wiki/src/doc/first_steps/desktop.ru.po index e62ad85cd85..026854b0121 100644 --- a/wiki/src/doc/first_steps/desktop.ru.po +++ b/wiki/src/doc/first_steps/desktop.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -151,7 +151,7 @@ msgid "" "<div class=\"text\">\n" " <span class=\"guimenuitem\">Help</span>: to access the <span class=\"application\">GNOME Desktop Help</span> choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Help</span></span>\n" " </div>\n" "</div>\n" @@ -187,7 +187,7 @@ msgid "" "<div class=\"text\">\n" " <b>Settings</b>:\n" " to change various system settings such as keyboard, mouse and touchpad,\n" -" or displays, choose <b>System Tools ▸ Settings</b>.\n" +" or displays, choose <b>System Tools â–¸ Settings</b>.\n" " </div>\n" "</div>\n" msgstr "" @@ -261,7 +261,7 @@ msgid "" " <span class=\"guimenuitem\">About Tails</span>:\n" " to know the version of Tails that you are currently running, choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>\n" " </div>\n" "</div>\n" @@ -402,10 +402,15 @@ msgid "[[!img lib/apps/tails-installer.png link=\"no\" alt=\"\"]]\n" msgstr "[[!img lib/apps/tails-installer.png link=no]]\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<div class=\"text\">\n" +#| "<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +#| "</div>\n" +#| "</div>\n" msgid "" "<div class=\"text\">\n" -"<strong>Tails Installer</strong> to clone Tails to another USB stick<br/>\n" +"<strong>Tails Cloner</strong> to clone Tails to another USB stick<br/>\n" "</div>\n" "</div>\n" msgstr "" @@ -788,8 +793,8 @@ msgstr "Ð”Ð»Ñ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚Ð¸Ñ Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ€Ð° <span class=\"application\"> #| " <span class=\"guimenuitem\">Files</span></span>.\n" msgid "" "- Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Accessories</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Accessories</span> â–¸\n" " <span class=\"guimenuitem\">Files</span></span>.\n" msgstr "" "- Выбрать <span class=\"menuchoice\">\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po index e641389ac81..8fbaca52851 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Translators <tails-l10n@boum.org>\n" @@ -209,8 +209,8 @@ msgstr "" msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Wählen Sie\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po index 1380de344e2..e04a384617a 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -204,8 +204,8 @@ msgstr "" msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Choose\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po index 2865c0b2320..d0910c3f5a0 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-03 12:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -214,8 +214,8 @@ msgstr "" msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Cliquez sur\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po index edd6cde6b0a..96b98ca5ce2 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails Italiano\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -212,8 +212,8 @@ msgstr "" msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Selezionare\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po index 36ddc991f39..01c677e246b 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -214,8 +214,8 @@ msgstr "" msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Escolha\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po b/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po index 8f46906f132..9c191f63b60 100644 --- a/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po +++ b/wiki/src/doc/first_steps/welcome_screen/administration_password.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -208,8 +208,8 @@ msgstr "Открыть терминал Ñ Ð¿Ñ€Ð°Ð²Ð°Ð¼Ð¸ Ñуперпользо msgid "" " - Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>.\n" msgstr "" " - Выбрать\n" diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po index b344920de82..3b2eca7046d 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -43,7 +43,7 @@ msgstr "Was ist eine MAC-Adresse?" #| "factory by its vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -309,7 +309,7 @@ msgstr "" #| "suspicious** to the network administrators to see an unknown MAC address " #| "being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po index 3a6db149f55..00de31a42a2 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-04-16 03:22+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -43,7 +43,7 @@ msgstr "¿Qué es una dirección MAC?" #| "factory by its vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -302,7 +302,7 @@ msgstr "" #| "suspicious** to the network administrators to see an unknown MAC address " #| "being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po index 7110daeb3f3..20b7b4ce6c9 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -41,7 +41,7 @@ msgstr "Qu'est-ce que l'adresse MAC ?" #| "factory by the vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -260,7 +260,7 @@ msgstr "" #| "**look suspicious** to the network administrators to see an unknown MAC " #| "address being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po index 1a03f24ebf4..334a4cb0425 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Team italiano\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -41,7 +41,7 @@ msgstr "Che cosa è l'indirizzo MAC?" #| "factory by the vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -259,7 +259,7 @@ msgstr "" #| "**look suspicious** to the network administrators to see an unknown MAC " #| "address being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po index 1188102cf1d..300ce9c5431 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.pt.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-11 14:39+0000\n" "Last-Translator: Lucas710 <lucaspb710@protonmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -41,7 +41,7 @@ msgstr "O que é um endereço MAC?" #| "factory by the vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -259,7 +259,7 @@ msgstr "" #| "**look suspicious** to the network administrators to see an unknown MAC " #| "address being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po index f088799001c..f1a9856e8ad 100644 --- a/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po +++ b/wiki/src/doc/first_steps/welcome_screen/mac_spoofing.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -42,7 +42,7 @@ msgstr "Что такое MAC-адреÑ?" #| "factory by the vendor. MAC addresses are used on the local network to " #| "identify the communications of each network interface." msgid "" -"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]], " "which is a serial number assigned to each interface at the factory by the " "vendor. MAC addresses are used on the local network to identify the " "communications of each network interface." @@ -241,7 +241,7 @@ msgstr "" #| "**look suspicious** to the network administrators to see an unknown MAC " #| "address being used on that network." msgid "" -"**Using a public computer**, for example in an Internet café or a library. " +"**Using a public computer**, for example in an Internet café or a library. " "This computer is regularly used on this local network, and its MAC address " "is not associated with your identity. In this case, MAC address " "anonymization can make it impossible to connect. It can even **look " diff --git a/wiki/src/doc/persistent_storage/additional_software.de.po b/wiki/src/doc/persistent_storage/additional_software.de.po index 782841a88a5..04b78f0e8b5 100644 --- a/wiki/src/doc/persistent_storage/additional_software.de.po +++ b/wiki/src/doc/persistent_storage/additional_software.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-14 08:08+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -81,7 +81,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</" @@ -317,8 +317,8 @@ msgstr "" #| msgid "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</span> â–¸ <span class=\"guisubmenu\">Systemprogramme</span> â–¸ <span class=\"guimenuitem\">Synaptic Paket Manager</span></span>." @@ -575,8 +575,8 @@ msgstr "Für das Installieren zusätzlicher Softwarepakete:" msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</span> â–¸ <span class=\"guisubmenu\">Systemprogramme</span> â–¸ <span class=\"guimenuitem\">Synaptic Paket Manager</span></span>." @@ -627,7 +627,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendung</" @@ -691,7 +691,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/additional_software.es.po b/wiki/src/doc/persistent_storage/additional_software.es.po index 50880340dc4..80b3c5d8b98 100644 --- a/wiki/src/doc/persistent_storage/additional_software.es.po +++ b/wiki/src/doc/persistent_storage/additional_software.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -79,7 +79,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</" @@ -310,8 +310,8 @@ msgstr "" #| msgid "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</span> â–¸ <span class=\"guisubmenu\">Herramientas del sistema</span> â–¸ <span class=\"guimenuitem\">Synaptic Package Manager</span></span>." @@ -568,8 +568,8 @@ msgstr "Verificando tu lista de software adicional\n" msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</span> â–¸ <span class=\"guisubmenu\">Herramientas del sistema</span> â–¸ <span class=\"guimenuitem\">Synaptic Package Manager</span></span>." @@ -620,7 +620,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</" @@ -684,7 +684,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/additional_software.fr.po b/wiki/src/doc/persistent_storage/additional_software.fr.po index bb1ddf00c5d..426f4cd5628 100644 --- a/wiki/src/doc/persistent_storage/additional_software.fr.po +++ b/wiki/src/doc/persistent_storage/additional_software.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-09 20:27+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -77,7 +77,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" "Choisir <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" @@ -343,8 +343,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "" "1. Choisir <span class=\"menuchoice\">\n" @@ -650,8 +650,8 @@ msgstr "Vérifier votre liste de logiciels supplémentaires" msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "" "Pour voir quels paquets sont installés automatiquement\n" @@ -715,7 +715,7 @@ msgstr "" #| "class=\"guimenuitem\">Additional Software</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" "Choisir <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" @@ -792,7 +792,7 @@ msgstr "" #| "class=\"application\">Root Terminal</span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/additional_software.it.po b/wiki/src/doc/persistent_storage/additional_software.it.po index 231bc423a70..eb2cab73452 100644 --- a/wiki/src/doc/persistent_storage/additional_software.it.po +++ b/wiki/src/doc/persistent_storage/additional_software.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:35+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -75,7 +75,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" "Seleziona <span class=\"menuchoice\"> <span class=\"guimenu\">Applicazioni</" @@ -323,8 +323,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "" "1. Seleziona <span class=\"menuchoice\">\n" @@ -593,8 +593,8 @@ msgstr "Verifica la tua lista di programmi addizionali" msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "" "Per vedere quali pacchetti vengono installati automaticamente\n" @@ -649,7 +649,7 @@ msgstr "Usando <span class=\"application\">Software aggiuntivo</span>:" #| "class=\"guimenuitem\">Additional Software</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" "Seleziona <span class=\"menuchoice\"> <span class=\"guimenu\">Applicazioni</" @@ -720,7 +720,7 @@ msgstr "" #| "class=\"application\">Root Terminal</span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/additional_software.pt.po b/wiki/src/doc/persistent_storage/additional_software.pt.po index ee1c4e00c66..9f5cb8a733f 100644 --- a/wiki/src/doc/persistent_storage/additional_software.pt.po +++ b/wiki/src/doc/persistent_storage/additional_software.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-11-03 23:32+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -65,7 +65,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" @@ -275,8 +275,8 @@ msgstr "" #, no-wrap msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "" @@ -527,8 +527,8 @@ msgstr "" msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "" @@ -573,7 +573,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" @@ -629,7 +629,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/additional_software.ru.po b/wiki/src/doc/persistent_storage/additional_software.ru.po index da204fd596a..f53ba88abb0 100644 --- a/wiki/src/doc/persistent_storage/additional_software.ru.po +++ b/wiki/src/doc/persistent_storage/additional_software.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-24 19:20+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -78,7 +78,7 @@ msgstr "" #| "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Synaptic Package Manager</span></span>." msgstr "" "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">ПриложениÑ</" @@ -336,8 +336,8 @@ msgstr "" #| " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgid "" "1. Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Synaptic Package Manager</span></span>.\n" msgstr "" "1. Выберите <span class=\"menuchoice\">\n" @@ -642,8 +642,8 @@ msgstr "Проверка вашего ÑпиÑка дополнительных msgid "" "To see which packages are installed automatically\n" "every time you start Tails, choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Additional Software</span></span>.\n" msgstr "" "Ð”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, чтобы увидеть, какие пакеты уÑтанавливаютÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡ÐµÑки\n" @@ -706,7 +706,7 @@ msgstr "Через <span class=\"application\">Additional Software</span>:" #| "class=\"guimenuitem\">Additional Software</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Additional Software</span></span>." msgstr "" "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">ПриложениÑ</" @@ -783,7 +783,7 @@ msgstr "" #| "class=\"application\">Root Terminal</span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">System Tools</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">System Tools</span> â–¸ <span " "class=\"guimenuitem\">Root Terminal</span> </span> to open a <span " "class=\"application\">Root Terminal</span>." msgstr "" diff --git a/wiki/src/doc/persistent_storage/backup.de.po b/wiki/src/doc/persistent_storage/backup.de.po index 8d3e781df06..bc6496c3d20 100644 --- a/wiki/src/doc/persistent_storage/backup.de.po +++ b/wiki/src/doc/persistent_storage/backup.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -77,7 +77,7 @@ msgstr "" "sichern möchten." #. type: Bullet: '1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: '1. ' @@ -164,8 +164,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Wählen Sie\n" @@ -192,8 +192,8 @@ msgstr "" msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" #. type: Title = @@ -218,8 +218,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/backup.es.po b/wiki/src/doc/persistent_storage/backup.es.po index 0cc303e2625..e3185ababe8 100644 --- a/wiki/src/doc/persistent_storage/backup.es.po +++ b/wiki/src/doc/persistent_storage/backup.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -93,7 +93,7 @@ msgstr "" "información." #. type: Bullet: '1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: '1. ' @@ -194,8 +194,8 @@ msgstr "Inserta tu memoria USB Tails de respaldo." msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Elige\n" @@ -229,8 +229,8 @@ msgstr "" msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" "Si tu Tails de respaldo está desactualizado, deberÃas actualizarlo clonando " "tu Tails actual usando <span class=\"application\">Tails Installer</span>. " @@ -266,8 +266,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/backup.fr.po b/wiki/src/doc/persistent_storage/backup.fr.po index 4aa691aa127..70cb109e0cd 100644 --- a/wiki/src/doc/persistent_storage/backup.fr.po +++ b/wiki/src/doc/persistent_storage/backup.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-19 23:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -88,7 +88,7 @@ msgstr "" #| msgid "" #| "Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open " #| "the *Files* browser." -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" "Choisir **Applications** â–¸ **Accessoires** â–¸ **Fichiers** pour " "ouvrir le navigateur de *Fichiers*." @@ -190,8 +190,8 @@ msgstr "Branchez votre clé USB Tails de sauvegarde." msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Choisir\n" @@ -215,11 +215,17 @@ msgstr "" " sont copiés.</p>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "If your backup Tails has an outdated version of Tails, we recommend you " +#| "upgrade it by cloning your current Tails using <span " +#| "class=\"application\">Tails Installer</span>. For detailed instructions, " +#| "see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" "Si votre Tails de sauvegarde contient une version qui n'est pas à jour, nous " "vous recommandons de le mettre à jour en clonant votre Tails actuel en " @@ -253,8 +259,8 @@ msgstr "" #| "Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open " #| "the *Files* browser." msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" "Choisir **Applications** â–¸ **Accessoires** â–¸ **Fichiers** pour " "ouvrir le navigateur de *Fichiers*." diff --git a/wiki/src/doc/persistent_storage/backup.it.po b/wiki/src/doc/persistent_storage/backup.it.po index 2f85b4277aa..451ba8589b9 100644 --- a/wiki/src/doc/persistent_storage/backup.it.po +++ b/wiki/src/doc/persistent_storage/backup.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -83,7 +83,7 @@ msgid "" msgstr "Inserisci la tua chiavetta USB Tails di backup." #. type: Bullet: '1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: '1. ' @@ -177,8 +177,8 @@ msgstr "Inserisci la tua chiavetta USB Tails di backup." msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Scegli\n" @@ -200,11 +200,17 @@ msgid "" msgstr " <p>Ogni volta che aggiorni il backup, vengono copiati solo i file modificati..</p>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "If your backup Tails has an outdated version of Tails, we recommend you " +#| "upgrade it by cloning your current Tails using <span " +#| "class=\"application\">Tails Installer</span>. For detailed instructions, " +#| "see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" "Se il tuo Tails col backup ha una versione obsoleta di Tails, ti consigliamo " "di aggiornarlo clonando il tuo Tails attuale usando <span " @@ -232,8 +238,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/backup.pt.po b/wiki/src/doc/persistent_storage/backup.pt.po index f5b7a3d9898..ca018c8d651 100644 --- a/wiki/src/doc/persistent_storage/backup.pt.po +++ b/wiki/src/doc/persistent_storage/backup.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -90,7 +90,7 @@ msgstr "" "seus dados." #. type: Bullet: '1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: '1. ' @@ -186,8 +186,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Escolha\n" @@ -214,8 +214,8 @@ msgstr "" msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" #. type: Title = @@ -242,8 +242,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/backup.ru.po b/wiki/src/doc/persistent_storage/backup.ru.po index 59e58ff2821..c32dadbbcd4 100644 --- a/wiki/src/doc/persistent_storage/backup.ru.po +++ b/wiki/src/doc/persistent_storage/backup.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 10:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "" "sichern möchten." #. type: Bullet: '1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: '1. ' @@ -181,8 +181,8 @@ msgstr "Подключите флешку Ð´Ð»Ñ Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð¾Ð¹ копии T msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Back Up Persistent Storage</span></span>.\n" msgstr "" "1. Выберите\n" @@ -204,11 +204,17 @@ msgid "" msgstr " <p>При каждом обновлении резервной копии обновлÑÑŽÑ‚ÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ изменённые файлы.</p>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "If your backup Tails has an outdated version of Tails, we recommend you " +#| "upgrade it by cloning your current Tails using <span " +#| "class=\"application\">Tails Installer</span>. For detailed instructions, " +#| "see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgid "" "If your backup Tails has an outdated version of Tails, we recommend you " "upgrade it by cloning your current Tails using <span " -"class=\"application\">Tails Installer</span>. For detailed instructions, " -"see how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." +"class=\"application\">Tails Cloner</span>. For detailed instructions, see " +"how to [[manually upgrade from another Tails|upgrade/clone#upgrade]]." msgstr "" "ЕÑли ваша Ñ€ÐµÐ·ÐµÑ€Ð²Ð½Ð°Ñ ÐºÐ¾Ð¿Ð¸Ñ Tails уÑтарела, Ñоветуем обновитьÑÑ. Клонируйте " "дейÑтвующую копию Tails Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ <span class=\"application\">Tails " @@ -238,8 +244,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/check.de.po b/wiki/src/doc/persistent_storage/check.de.po index d8d168f555c..8f77e1a9058 100644 --- a/wiki/src/doc/persistent_storage/check.de.po +++ b/wiki/src/doc/persistent_storage/check.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-05-26 20:17+0200\n" "Last-Translator: Tails translators\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -67,8 +67,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -175,8 +175,8 @@ msgstr "Das Dateisystem im Terminal überprüfen\n" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/check.es.po b/wiki/src/doc/persistent_storage/check.es.po index f40592d684d..2b3af7fd16c 100644 --- a/wiki/src/doc/persistent_storage/check.es.po +++ b/wiki/src/doc/persistent_storage/check.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-07 16:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -58,8 +58,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -157,8 +157,8 @@ msgstr "Comprobar el sistema de archivos usando la terminal" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/check.fr.po b/wiki/src/doc/persistent_storage/check.fr.po index 794b5f44950..9b834721a1d 100644 --- a/wiki/src/doc/persistent_storage/check.fr.po +++ b/wiki/src/doc/persistent_storage/check.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-04-03 20:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -59,8 +59,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -152,8 +152,8 @@ msgstr "Vérifier le système de fichiers en utilisant le terminal" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/check.it.po b/wiki/src/doc/persistent_storage/check.it.po index 604e8f882a8..a0259581869 100644 --- a/wiki/src/doc/persistent_storage/check.it.po +++ b/wiki/src/doc/persistent_storage/check.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 16:08+0000\n" "Last-Translator: la_r_go* <largo@tracciabi.li>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -59,8 +59,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -151,8 +151,8 @@ msgstr "Controllare il file system utilizzando il terminale" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/check.pt.po b/wiki/src/doc/persistent_storage/check.pt.po index d6e41537769..05415c44e44 100644 --- a/wiki/src/doc/persistent_storage/check.pt.po +++ b/wiki/src/doc/persistent_storage/check.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -43,8 +43,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -104,8 +104,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/check.ru.po b/wiki/src/doc/persistent_storage/check.ru.po index 932ba1bf404..6bb9b1cc29f 100644 --- a/wiki/src/doc/persistent_storage/check.ru.po +++ b/wiki/src/doc/persistent_storage/check.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-22 18:59+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,8 +60,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to open <span class=\"application\">GNOME Disks</span>.\n" @@ -153,8 +153,8 @@ msgstr "Проверка файловой ÑиÑтемы в терминале" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span></span>\n" " and enter your administration password to open a root terminal.\n" msgstr "" diff --git a/wiki/src/doc/persistent_storage/configure.de.po b/wiki/src/doc/persistent_storage/configure.de.po index b00568d61e6..03dcd84080b 100644 --- a/wiki/src/doc/persistent_storage/configure.de.po +++ b/wiki/src/doc/persistent_storage/configure.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-29 20:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Translators <tails-l10n@boum.org>\n" @@ -25,8 +25,8 @@ msgstr "[[!meta title=\"Aktivierung und Benutzung des beständigen Speicherberei #. type: Plain text msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Plain text @@ -66,7 +66,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" @@ -118,7 +118,7 @@ msgstr "" msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Um den <span class=\"filename\">Persistent</span>-Ordner zu öffnen, wählen Sie\n" @@ -632,12 +632,12 @@ msgstr "" #, fuzzy, no-wrap msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── datei_a\n" @@ -658,11 +658,11 @@ msgstr "" #, fuzzy, no-wrap msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── datei_a → /live/persistence/TailsData_unlocked/dotfiles/datei_a\n" @@ -739,8 +739,8 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" #. type: Bullet: '1. ' @@ -754,7 +754,7 @@ msgstr "Konfigurieren Sie Ihre Bildschirme." #. type: Bullet: '1. ' #, fuzzy msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -815,7 +815,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/doc/persistent_storage/configure.es.po b/wiki/src/doc/persistent_storage/configure.es.po index 3ae9a406c96..e230a626118 100644 --- a/wiki/src/doc/persistent_storage/configure.es.po +++ b/wiki/src/doc/persistent_storage/configure.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-29 20:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -30,8 +30,8 @@ msgstr "[[!meta title=\"Crear y usar el Almacenamiento Persistente\"]]\n" #| "To configure the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Para configurar el almacenamiento persistente, elige **Aplicaciones** â–¸ " "**Tails** â–¸ **Configure persistent volume**." @@ -84,7 +84,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" "<p>A menudo nos piden que implementemos nuevas funcionalidades \n" @@ -156,7 +156,7 @@ msgstr "" msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Para abrir la carpeta <span class=\"filename\">Persistente</span>, escoge\n" @@ -742,12 +742,12 @@ msgstr "" #| " └── emptyfolder\n" msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── file_a\n" @@ -772,11 +772,11 @@ msgstr "Produce el siguiente resultado en */home/amnesia*:" #| "   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" @@ -850,8 +850,8 @@ msgstr "Activa la funcionalidad *Dotfiles* y reinicia Tails." #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" #. type: Bullet: '1. ' @@ -869,7 +869,7 @@ msgstr "Configura tus pantallas." #| "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> " #| "folder in the <span class=\"application\">Files</span> browser." msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -933,7 +933,7 @@ msgstr "" #| "**Places** â–¸ **Persistent**." msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" "Tus archivos personales en el directorio *Persistent* se pueden acceder " "desde **Lugares** â–¸ **Persistent**." diff --git a/wiki/src/doc/persistent_storage/configure.fr.po b/wiki/src/doc/persistent_storage/configure.fr.po index 5984aac7251..ada5c88c7f3 100644 --- a/wiki/src/doc/persistent_storage/configure.fr.po +++ b/wiki/src/doc/persistent_storage/configure.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-29 20:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -29,8 +29,8 @@ msgstr "[[!meta title=\"Configurer le stockage persistant\"]]\n" #| "To configure the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Persistent Storage**." msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Pour configurer le stockage persistant, choisir **Applications** â–¸ " "**Tails** â–¸ **Stockage persistant**." @@ -85,7 +85,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" "<p>On nous demande souvent de mettre en place de nouvelles options dans\n" @@ -147,7 +147,7 @@ msgstr "" msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Pour ouvrir le dossier <span class=\"filename\">Persistent</span>, choisir\n" @@ -673,12 +673,12 @@ msgstr "" #| " └── emptyfolder\n" msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── fichier_a\n" @@ -703,11 +703,11 @@ msgstr "Produit le résultat suivant dans */home/amnesia* :" #| "   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── fichier_a → /live/persistence/TailsData_unlocked/dotfiles/fichier_a\n" @@ -799,8 +799,8 @@ msgstr "Activer l'option *Dotfiles* et redémarrer Tails." #| "Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to " #| "open the *Settings* utility." msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" "Choisir **Applications** â–¸ **Outils système** â–¸ **Paramètres** " "pour ouvrir l'utilitaire *Paramètres*." @@ -820,7 +820,7 @@ msgstr "Configurer vos écrans." #| "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> " #| "folder in the <span class=\"application\">Files</span> browser." msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -882,7 +882,7 @@ msgstr "" #, fuzzy msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" "Vos fichiers personnels du dossier **Persistant** sont accessible depuis " "**Emplacements** â–¸ **Persistant**." diff --git a/wiki/src/doc/persistent_storage/configure.it.po b/wiki/src/doc/persistent_storage/configure.it.po index 8deb51de50c..0e0f23c7b6d 100644 --- a/wiki/src/doc/persistent_storage/configure.it.po +++ b/wiki/src/doc/persistent_storage/configure.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-29 20:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -30,8 +30,8 @@ msgstr "[[!meta title=\"Sbloccare e usare l'Archivio Persistente\"]]\n" #| "To configure the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Per configurare l'Archivio Persistente, scegli **Applicazioni** - " "**Tails** - **Configurare volume persistente**." @@ -84,7 +84,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" "<p>Spesso ci viene chiesto di implementare nuove funzionalità dell'\n" @@ -157,7 +157,7 @@ msgstr "" msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Per aprire la cartella <span class=\"filename\">Persistente</span>, seleziona\n" @@ -738,12 +738,12 @@ msgstr "" #| " └── emptyfolder\n" msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── file_a\n" @@ -768,11 +768,11 @@ msgstr "Produce il seguente risultato in */home/amnesia*:" #| "   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" @@ -854,8 +854,8 @@ msgstr "Attiva la funzione *Dotfiles* e riavvia Tails." #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" #. type: Bullet: '1. ' @@ -873,7 +873,7 @@ msgstr "Configura i tuoi schermi." #| "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> " #| "folder in the <span class=\"application\">Files</span> browser." msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -938,7 +938,7 @@ msgstr "" #| "**Places** â–¸ **Persistent**." msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" "I tuoi dati personali nella cartella *Persistente* sono accessibili da " "**Luoghi** â–¸ **Persistente**." diff --git a/wiki/src/doc/persistent_storage/configure.pt.po b/wiki/src/doc/persistent_storage/configure.pt.po index dd366fa70ec..319b8e4842c 100644 --- a/wiki/src/doc/persistent_storage/configure.pt.po +++ b/wiki/src/doc/persistent_storage/configure.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,8 +29,8 @@ msgstr "[[!meta title=\"Configurando o Armazenamento Persistente\"]]\n" #| "To configure the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Persistent Storage**." msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Para configurar o Armazenamento Persistente, escolha **Aplicativos** â–¸ " "**Tails** â–¸ **Armazenamento Persistente**." @@ -87,7 +87,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" "<p>Recebemos pedidos frequentes para implementação de novos recursos do\n" @@ -153,7 +153,7 @@ msgstr "" msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Para abrir a pasta <span class=\"filename\">Persistent</span>, escolha\n" @@ -672,12 +672,12 @@ msgstr "" #| " └── emptyfolder\n" msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── arquivo_a\n" @@ -702,11 +702,11 @@ msgstr "Produz o seguinte resultado em */home/amnesia*:" #| "   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── arquivo_a → /live/persistence/TailsData_unlocked/dotfiles/arquivo_a\n" @@ -800,8 +800,8 @@ msgstr "Ative as funcionalidades *Dotfiles* e reinicie o Tails." #| "Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to " #| "open the *Settings* utility." msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" "Escolha **Aplicativos** â–¸ **Ferramentas de sistema** â–¸ " "Configurações para abrir a aplicação de *Configurações*." @@ -821,7 +821,7 @@ msgstr "Configure seus monitores." #| "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> " #| "folder in the <span class=\"application\">Files</span> browser." msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -883,7 +883,7 @@ msgstr " Por exemplo:\n" #| "**Places** â–¸ **Persistent** are not available anymore." msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" "Se você desliga a funcionalidade de Pasta Persistente, os documentos salvos " "em **Locais** â–¸ **Persistent** não ficam mais disponÃveis." diff --git a/wiki/src/doc/persistent_storage/configure.ru.po b/wiki/src/doc/persistent_storage/configure.ru.po index db66c998602..754e89e3f98 100644 --- a/wiki/src/doc/persistent_storage/configure.ru.po +++ b/wiki/src/doc/persistent_storage/configure.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-29 20:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,8 +31,8 @@ msgstr "[[!meta title=\"Разблокирование и иÑпользован #| "To configure the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To configure the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To configure the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Ð”Ð»Ñ Ð½Ð°Ñтройки ПоÑтоÑнного хранилища выберите **ПриложениÑ** â–¸ " "**Tails** â–¸ **Configure persistent volume**." @@ -83,7 +83,7 @@ msgid "" "<p>We are often asked to implement new features of the Persistent Storage: Tor\n" "Browser preferences, Tor configuration, desktop background, mouse and touchpad\n" "settings, and so on. See the [[!tails_gitlab\n" -"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" +"groups/tails/-/issues?scope=all&utf8=✓&state=opened&label_name%5B%5D=C%3APersistence\n" "desc=\"list of issues about the Persistent Storage in our GitLab\"]].<p>\n" msgstr "" "<p>ÐÐ°Ñ Ñ‡Ð°Ñто проÑÑÑ‚ добавить к ПоÑтоÑнному хранилищу новые опции: \n" @@ -147,7 +147,7 @@ msgstr "Когда включена Ð¾Ð¿Ñ†Ð¸Ñ ÐŸÐµÑ€Ñональных данн msgid "" "To open the <span class=\"filename\">Persistent</span> folder, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Places</span> ▸\n" +" <span class=\"guimenu\">Places</span> â–¸\n" " <span class=\"guimenuitem\">Persistent</span></span>.\n" msgstr "" "Чтобы открыть папку <span class=\"filename\">Persistent</span>, выберите в меню\n" @@ -717,12 +717,12 @@ msgstr "" #| " └── emptyfolder\n" msgid "" " /live/persistence/TailsData_unlocked/dotfiles\n" -" ├── file_a\n" -" ├── folder\n" -" │  ├── file_b\n" -" │  └── subfolder\n" -" │  └── file_c\n" -" └── emptyfolder\n" +" ├── file_a\n" +" ├── folder\n" +" │  ├── file_b\n" +" │  └── subfolder\n" +" │  └── file_c\n" +" └── emptyfolder\n" msgstr "" " /live/persistence/TailsData_unlocked/dotfiles\n" " ├── file_a\n" @@ -747,11 +747,11 @@ msgstr "Ð’ */home/amnesia* будет Ñледующее:" #| "   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgid "" " /home/amnesia\n" -" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" -" └── folder\n" -"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" -"   └── subfolder\n" -"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" +" ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" +" └── folder\n" +"   ├── file_b → /live/persistence/TailsData_unlocked/dotfiles/folder/file_b\n" +"   └── subfolder\n" +"   └── file_c → /live/persistence/TailsData_unlocked/dotfiles/folder/subfolder/file_c\n" msgstr "" " /home/amnesia\n" " ├── file_a → /live/persistence/TailsData_unlocked/dotfiles/file_a\n" @@ -829,8 +829,8 @@ msgstr "Включите функцию *Dotfiles* и перезапуÑтите #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Settings** to " -"open the *Settings* utility." +"Choose **Applications** â–¸ **System Tools** â–¸ **Settings** to open " +"the *Settings* utility." msgstr "" #. type: Bullet: '1. ' @@ -848,7 +848,7 @@ msgstr "ÐаÑтройте диÑплеи." #| "class=\"filename\">/live/persistence/TailsData_unlocked/dotfiles</span> " #| "folder in the <span class=\"application\">Files</span> browser." msgid "" -"Choose **Places** ▸ **Dotfiles** to open the <span class=\"filename\">/" +"Choose **Places** â–¸ **Dotfiles** to open the <span class=\"filename\">/" "live/persistence/TailsData_unlocked/dotfiles</span> folder in the <span " "class=\"application\">Files</span> browser." msgstr "" @@ -912,7 +912,7 @@ msgstr "" #| "**Places** â–¸ **Persistent**." msgid "" "If you turn off the Persistent Folder feature, the documents saved in " -"**Places** ▸ **Persistent** are not available anymore." +"**Places** â–¸ **Persistent** are not available anymore." msgstr "" "Ð’ чаÑтноÑти, ваши перÑональные файлы в ÑоответÑтвующей папке *Persistent* " "будут доÑтупны из меню **МеÑта** â–¸ **Persistent**." diff --git a/wiki/src/doc/persistent_storage/create.de.po b/wiki/src/doc/persistent_storage/create.de.po index 66cb57435f5..93e0a7b2112 100644 --- a/wiki/src/doc/persistent_storage/create.de.po +++ b/wiki/src/doc/persistent_storage/create.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:43+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails Translators <tails-l10n@boum.org>\n" @@ -25,8 +25,8 @@ msgstr "[[!meta title=\"Verschlüsselter beständiger Speicherbereich\"]]\n" #. type: Plain text msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/persistent_storage/create.es.po b/wiki/src/doc/persistent_storage/create.es.po index 943dace29b0..dc11df1be7d 100644 --- a/wiki/src/doc/persistent_storage/create.es.po +++ b/wiki/src/doc/persistent_storage/create.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:43+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -30,8 +30,8 @@ msgstr "[[!meta title=\"Almacenamiento Persistente\"]]\n" #| "To create the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Para crear el almacenamiento persistente, elige **Aplicaciones** â–¸ " "**Tails** â–¸ **Configure persistent volume**." diff --git a/wiki/src/doc/persistent_storage/create.fr.po b/wiki/src/doc/persistent_storage/create.fr.po index 219e7dbcf6e..1c45bf03cbc 100644 --- a/wiki/src/doc/persistent_storage/create.fr.po +++ b/wiki/src/doc/persistent_storage/create.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -29,8 +29,8 @@ msgstr "[[!meta title=\"Créer le stockage persistant\"]]\n" #| "To create the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Persistent Storage**." msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Pour créer le stockage persistant, choisir **Applications** â–¸ " "**Tails** â–¸ **Stockage persistant**." diff --git a/wiki/src/doc/persistent_storage/create.it.po b/wiki/src/doc/persistent_storage/create.it.po index 0b51c794472..5d13a64202c 100644 --- a/wiki/src/doc/persistent_storage/create.it.po +++ b/wiki/src/doc/persistent_storage/create.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -30,8 +30,8 @@ msgstr "[[!meta title=\"Archivio Persistente\"]]\n" #| "To create the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Per creare l'Archivio Persistente, scegli **Applicazioni** - " "**Tails** - **Configure persistent volume**." diff --git a/wiki/src/doc/persistent_storage/create.pt.po b/wiki/src/doc/persistent_storage/create.pt.po index 811224ab374..144ef7826aa 100644 --- a/wiki/src/doc/persistent_storage/create.pt.po +++ b/wiki/src/doc/persistent_storage/create.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,8 +29,8 @@ msgstr "[[!meta title=\"Criando o Armazenamento Persistente\"]]\n" #| "To create the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Persistent Storage**." msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Para criar o Armazenamento Persistente, escolha **Aplicativos** â–¸ " "**Tails** â–¸ **Armazenamento Persistente**." diff --git a/wiki/src/doc/persistent_storage/create.ru.po b/wiki/src/doc/persistent_storage/create.ru.po index dbda3cb1af3..638b8444db3 100644 --- a/wiki/src/doc/persistent_storage/create.ru.po +++ b/wiki/src/doc/persistent_storage/create.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:40+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,8 +31,8 @@ msgstr "[[!meta title=\"ПоÑтоÑнное хранилище\"]]\n" #| "To create the Persistent Storage, choose **Applications** â–¸ " #| "**Tails** â–¸ **Configure persistent volume**." msgid "" -"To create the Persistent Storage, choose **Applications** ▸ " -"**Tails** ▸ **Persistent Storage**." +"To create the Persistent Storage, choose **Applications** â–¸ " +"**Tails** â–¸ **Persistent Storage**." msgstr "" "Ð”Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÐŸÐ¾ÑтоÑнного хранилища выберите **ПриложениÑ** â–¸ " "**Tails** â–¸ **Configure persistent volume**." diff --git a/wiki/src/doc/persistent_storage/delete.de.po b/wiki/src/doc/persistent_storage/delete.de.po index 36e760fc1dd..40bae9b042f 100644 --- a/wiki/src/doc/persistent_storage/delete.de.po +++ b/wiki/src/doc/persistent_storage/delete.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tals translators <tails@boum.org>\n" @@ -41,8 +41,7 @@ msgid "In the Welcome Screen, keep the Persistent Storage locked." msgstr "" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/persistent_storage/delete.es.po b/wiki/src/doc/persistent_storage/delete.es.po index f9045395bd1..65674a8465c 100644 --- a/wiki/src/doc/persistent_storage/delete.es.po +++ b/wiki/src/doc/persistent_storage/delete.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -40,8 +40,7 @@ msgstr "" "cerrado.\n" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/persistent_storage/delete.fr.po b/wiki/src/doc/persistent_storage/delete.fr.po index b99856b9457..69e6f4a07d3 100644 --- a/wiki/src/doc/persistent_storage/delete.fr.po +++ b/wiki/src/doc/persistent_storage/delete.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -40,8 +40,7 @@ msgstr "" #, fuzzy #| msgid "" #| "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" "Choisir **Applications** â–¸ **Tails** â–¸ **Stockage persistant**." diff --git a/wiki/src/doc/persistent_storage/delete.it.po b/wiki/src/doc/persistent_storage/delete.it.po index e5b6348b9f7..c8706f7f081 100644 --- a/wiki/src/doc/persistent_storage/delete.it.po +++ b/wiki/src/doc/persistent_storage/delete.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: sPACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 13:08+0000\n" "Last-Translator: Noisy Coil <noisycoil@tutanota.com>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -40,8 +40,7 @@ msgstr "" "Persistente.\n" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/persistent_storage/delete.pt.po b/wiki/src/doc/persistent_storage/delete.pt.po index b9b0c01b59a..b79a8656a36 100644 --- a/wiki/src/doc/persistent_storage/delete.pt.po +++ b/wiki/src/doc/persistent_storage/delete.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-07 12:40+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,8 +39,7 @@ msgstr "" " Na Tela de Boas-vindas, não destrave o Armazenamento Persistente.\n" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/persistent_storage/delete.ru.po b/wiki/src/doc/persistent_storage/delete.ru.po index 557bae6ff45..9e50ae6b7e1 100644 --- a/wiki/src/doc/persistent_storage/delete.ru.po +++ b/wiki/src/doc/persistent_storage/delete.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-21 21:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,8 +39,7 @@ msgstr "" " Ðа Ñкране приветÑÑ‚Ð²Ð¸Ñ Ð¾Ñтавьте ПоÑтоÑнное хранилище заблокированным.\n" #. type: Bullet: '1. ' -msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/persistent_storage/passphrase.de.po b/wiki/src/doc/persistent_storage/passphrase.de.po index f4492e7621f..42beece3615 100644 --- a/wiki/src/doc/persistent_storage/passphrase.de.po +++ b/wiki/src/doc/persistent_storage/passphrase.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -33,7 +33,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" diff --git a/wiki/src/doc/persistent_storage/passphrase.es.po b/wiki/src/doc/persistent_storage/passphrase.es.po index 457eac91087..7626f850c16 100644 --- a/wiki/src/doc/persistent_storage/passphrase.es.po +++ b/wiki/src/doc/persistent_storage/passphrase.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -33,7 +33,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" diff --git a/wiki/src/doc/persistent_storage/passphrase.fr.po b/wiki/src/doc/persistent_storage/passphrase.fr.po index 070d95b1749..096bb461798 100644 --- a/wiki/src/doc/persistent_storage/passphrase.fr.po +++ b/wiki/src/doc/persistent_storage/passphrase.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-14 18:33+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -33,7 +33,7 @@ msgstr "Pour changer la phrase de passe de votre stockage persistant :" #| "Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " #| "open the Persistent Storage settings." msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" "Choisir **Applications** â–¸ **Tails** â–¸ **Stockage persistant** " diff --git a/wiki/src/doc/persistent_storage/passphrase.it.po b/wiki/src/doc/persistent_storage/passphrase.it.po index 5845bb90d97..597b66eb046 100644 --- a/wiki/src/doc/persistent_storage/passphrase.it.po +++ b/wiki/src/doc/persistent_storage/passphrase.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -32,7 +32,7 @@ msgstr "[[!meta title=\"Cambiare la password dell' Archivio Persistente\"]]\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" diff --git a/wiki/src/doc/persistent_storage/passphrase.pt.po b/wiki/src/doc/persistent_storage/passphrase.pt.po index 8667f358399..f2f4ce39abe 100644 --- a/wiki/src/doc/persistent_storage/passphrase.pt.po +++ b/wiki/src/doc/persistent_storage/passphrase.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,7 +31,7 @@ msgstr "Altere a senha do volume persistente\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" diff --git a/wiki/src/doc/persistent_storage/passphrase.ru.po b/wiki/src/doc/persistent_storage/passphrase.ru.po index 8c775d6cdff..9fcd762039f 100644 --- a/wiki/src/doc/persistent_storage/passphrase.ru.po +++ b/wiki/src/doc/persistent_storage/passphrase.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-11 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -33,7 +33,7 @@ msgstr "[[!meta title=\"Изменение Ð¿Ð°Ñ€Ð¾Ð»Ñ ÐŸÐ¾ÑтоÑнного #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Tails** ▸ **Persistent Storage** to " +"Choose **Applications** â–¸ **Tails** â–¸ **Persistent Storage** to " "open the Persistent Storage settings." msgstr "" diff --git a/wiki/src/doc/persistent_storage/rescue.de.po b/wiki/src/doc/persistent_storage/rescue.de.po index 328c77e2d6e..5c445bb6d66 100644 --- a/wiki/src/doc/persistent_storage/rescue.de.po +++ b/wiki/src/doc/persistent_storage/rescue.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -107,8 +107,8 @@ msgstr " </div>\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Bullet: '1. ' @@ -155,8 +155,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/rescue.es.po b/wiki/src/doc/persistent_storage/rescue.es.po index f867102c289..1f89e122436 100644 --- a/wiki/src/doc/persistent_storage/rescue.es.po +++ b/wiki/src/doc/persistent_storage/rescue.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -108,8 +108,8 @@ msgstr " </div>\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Bullet: '1. ' @@ -156,8 +156,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/rescue.fr.po b/wiki/src/doc/persistent_storage/rescue.fr.po index 4df20270274..abad8729ef4 100644 --- a/wiki/src/doc/persistent_storage/rescue.fr.po +++ b/wiki/src/doc/persistent_storage/rescue.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-19 23:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -134,8 +134,8 @@ msgstr " </div>\n" #| "Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open " #| "the *Files* browser." msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" "Choisir **Applications** â–¸ **Accessoires** â–¸ **Fichiers** pour " "ouvrir le navigateur de *Fichiers*." @@ -191,8 +191,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/rescue.it.po b/wiki/src/doc/persistent_storage/rescue.it.po index a3cb8fbd4d1..5a18b6a752e 100644 --- a/wiki/src/doc/persistent_storage/rescue.it.po +++ b/wiki/src/doc/persistent_storage/rescue.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-13 17:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -148,8 +148,8 @@ msgstr " </div>\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Bullet: '1. ' @@ -210,8 +210,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/rescue.pt.po b/wiki/src/doc/persistent_storage/rescue.pt.po index 972088f2852..617b0ddad14 100644 --- a/wiki/src/doc/persistent_storage/rescue.pt.po +++ b/wiki/src/doc/persistent_storage/rescue.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-15 21:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -106,8 +106,8 @@ msgstr " </div>\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Bullet: '1. ' @@ -146,8 +146,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/rescue.ru.po b/wiki/src/doc/persistent_storage/rescue.ru.po index be3449a9c65..008bd100521 100644 --- a/wiki/src/doc/persistent_storage/rescue.ru.po +++ b/wiki/src/doc/persistent_storage/rescue.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-12-24 18:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -153,8 +153,8 @@ msgstr " </div>\n" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Accessories** ▸ **Files** to open " -"the *Files* browser." +"Choose **Applications** â–¸ **Accessories** â–¸ **Files** to open the " +"*Files* browser." msgstr "" #. type: Bullet: '1. ' @@ -215,8 +215,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" " <span class=\"guimenuitem\">Root Terminal</span>\n" " </span>\n" " to open a terminal with administration rights.\n" diff --git a/wiki/src/doc/persistent_storage/use.de.po b/wiki/src/doc/persistent_storage/use.de.po index bafefe5fd3c..87086edc13a 100644 --- a/wiki/src/doc/persistent_storage/use.de.po +++ b/wiki/src/doc/persistent_storage/use.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,7 +54,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" diff --git a/wiki/src/doc/persistent_storage/use.es.po b/wiki/src/doc/persistent_storage/use.es.po index c2e152b9667..d297a012030 100644 --- a/wiki/src/doc/persistent_storage/use.es.po +++ b/wiki/src/doc/persistent_storage/use.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,7 +54,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" diff --git a/wiki/src/doc/persistent_storage/use.fr.po b/wiki/src/doc/persistent_storage/use.fr.po index 2f685386a50..c6af40cd8fb 100644 --- a/wiki/src/doc/persistent_storage/use.fr.po +++ b/wiki/src/doc/persistent_storage/use.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgstr "" #| "configure#persistent_folder]] feature is turned on." msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" "Vos fichiers personnels dans le dossier *Persistent* sont accessibles " diff --git a/wiki/src/doc/persistent_storage/use.it.po b/wiki/src/doc/persistent_storage/use.it.po index bcb993ece20..da34697d590 100644 --- a/wiki/src/doc/persistent_storage/use.it.po +++ b/wiki/src/doc/persistent_storage/use.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,7 +54,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" diff --git a/wiki/src/doc/persistent_storage/use.pt.po b/wiki/src/doc/persistent_storage/use.pt.po index f78805fa1a5..cbb61ac0d60 100644 --- a/wiki/src/doc/persistent_storage/use.pt.po +++ b/wiki/src/doc/persistent_storage/use.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgstr "" #| "configure#persistent_folder]] feature is turned on." msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" "Seus arquivos pessoais armazenados na pasta *Persistent* ficam acessÃveis a " diff --git a/wiki/src/doc/persistent_storage/use.ru.po b/wiki/src/doc/persistent_storage/use.ru.po index b9e9f80f1eb..01b04b9f473 100644 --- a/wiki/src/doc/persistent_storage/use.ru.po +++ b/wiki/src/doc/persistent_storage/use.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -55,7 +55,7 @@ msgstr "" #. type: Bullet: ' - ' msgid "" "Your personal files in the *Persistent* folder are accessible from " -"**Places** ▸ **Persistent**, if the [[Persistent Folder|" +"**Places** â–¸ **Persistent**, if the [[Persistent Folder|" "configure#persistent_folder]] feature is turned on." msgstr "" diff --git a/wiki/src/doc/reset/linux.de.po b/wiki/src/doc/reset/linux.de.po index 539b91d0b13..3d1c34b35e4 100644 --- a/wiki/src/doc/reset/linux.de.po +++ b/wiki/src/doc/reset/linux.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-06-10 19:40+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: Tails localization <tails-l10n@boum.org>\n" @@ -81,8 +81,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -142,7 +142,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Um den USB-Stick zurückzusetzen, klicken Sie in der oberen Leiste auf die " "Schaltfläche <span class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menü\" " @@ -183,7 +183,7 @@ msgstr "" " aus.\n" #. type: Bullet: ' 3. ' -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "" #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/linux.es.po b/wiki/src/doc/reset/linux.es.po index 4971b45ae80..70c1271c1ad 100644 --- a/wiki/src/doc/reset/linux.es.po +++ b/wiki/src/doc/reset/linux.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -80,8 +80,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -135,7 +135,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Para resetear la memoria USB, selecciona el <span class=\"guimenu\">[[!img " "lib/open-menu.png alt=\"Menú\" class=symbolic link=no]]</span> botón en la " @@ -175,7 +175,7 @@ msgstr "" #. type: Bullet: ' 3. ' #, fuzzy #| msgid "Click on the **Format…** button." -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "Haz click en el botón **Formatear…**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/linux.fr.po b/wiki/src/doc/reset/linux.fr.po index 1fc5a26337c..6f7e13e9e1e 100644 --- a/wiki/src/doc/reset/linux.fr.po +++ b/wiki/src/doc/reset/linux.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-01-08 17:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -80,8 +80,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -135,7 +135,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Pour réinitialiser la clé USB, cliquez sur le bouton <span " "class=\"guimenu\">[[!img lib/open-menu.png alt=\"Menu\" class=symbolic " @@ -178,7 +178,7 @@ msgstr "" #. type: Bullet: ' 3. ' #, fuzzy #| msgid "Click on the **Format…** button." -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "Cliquer sur le bouton **Formater…**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/linux.it.po b/wiki/src/doc/reset/linux.it.po index d94dc9012e4..e6f1c03a980 100644 --- a/wiki/src/doc/reset/linux.it.po +++ b/wiki/src/doc/reset/linux.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian Tails translation\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: la_r_go* <largo@tracciabi.li>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -80,8 +80,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -136,7 +136,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Per ripristinare la chiavetta USB, fai clic sul pulsante <span " "class=\"guimenu\">[!img lib/open-menu.png alt=\"Menu\" class=symbolic " @@ -178,7 +178,7 @@ msgstr "" #. type: Bullet: ' 3. ' #, fuzzy #| msgid "Click on the **Format…** button." -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "Clicca sul tasto **Formatta…** ." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/linux.pt.po b/wiki/src/doc/reset/linux.pt.po index 05aba1ca84b..e2abc23e132 100644 --- a/wiki/src/doc/reset/linux.pt.po +++ b/wiki/src/doc/reset/linux.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,8 +81,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -134,7 +134,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Para resetar o pendrive USB, clique no botão <span class=\"guimenu\">[[!img " "lib/open-menu.png alt=\"Menu\" class=symbolic link=no]]</span> na barra de " @@ -167,7 +167,7 @@ msgstr "" #. type: Bullet: ' 3. ' #, fuzzy #| msgid "Click on the **Format…** button." -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "Clique no botão **Formatar...**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/linux.ru.po b/wiki/src/doc/reset/linux.ru.po index e1208321998..2e2a11e1046 100644 --- a/wiki/src/doc/reset/linux.ru.po +++ b/wiki/src/doc/reset/linux.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-07-22 06:05+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -79,8 +79,8 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span>\n" " </span>\n" " to start <span class=\"application\">GNOME Disks</span>.\n" @@ -129,7 +129,7 @@ msgstr "" msgid "" "To reset the USB stick, click on the <span class=\"guimenu\">[[!img lib/open-" "menu.png alt=\"Menu\" class=symbolic link=no]]</span> button in the titlebar " -"and choose <span class=\"guilabel\">Format Disk…</span>." +"and choose <span class=\"guilabel\">Format Disk…</span>." msgstr "" "Ð”Ð»Ñ ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ñ„Ð»ÐµÑˆÐºÐ¸ нажмите кнопку «бутерброда» <span class=\"guimenu\">[[!" "img lib/open-menu.png alt=\"Кнопка-бутерброд\" class=symbolic link=no]]</" @@ -165,7 +165,7 @@ msgstr " 2. Ð’ поле **Разметка** выберите вариант * #. type: Bullet: ' 3. ' #, fuzzy #| msgid "Click on the **Format…** button." -msgid "Click on the **Format…** button." +msgid "Click on the **Format…** button." msgstr "Ðажмите кнопку **Форматировать...**." #. type: Bullet: '1. ' diff --git a/wiki/src/doc/reset/mac.de.po b/wiki/src/doc/reset/mac.de.po index adf68bd72a2..46df99f554a 100644 --- a/wiki/src/doc/reset/mac.de.po +++ b/wiki/src/doc/reset/mac.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -181,8 +181,8 @@ msgstr "" msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Öffnen Sie das <span class=\"application\">Terminal</span> über\n" diff --git a/wiki/src/doc/reset/mac.es.po b/wiki/src/doc/reset/mac.es.po index 832cc064263..904bf561e6e 100644 --- a/wiki/src/doc/reset/mac.es.po +++ b/wiki/src/doc/reset/mac.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -177,8 +177,8 @@ msgstr "Desconecta la memoria USB del ordenador." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Abre <span class=\"application\">Terminal</span> desde\n" diff --git a/wiki/src/doc/reset/mac.fr.po b/wiki/src/doc/reset/mac.fr.po index 807b4db84e6..89a137e1550 100644 --- a/wiki/src/doc/reset/mac.fr.po +++ b/wiki/src/doc/reset/mac.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-23 10:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -175,8 +175,8 @@ msgstr "Débranchez la clé USB de votre ordinateur." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Ouvrir <span class=\"application\">Terminal</span> depuis\n" diff --git a/wiki/src/doc/reset/mac.it.po b/wiki/src/doc/reset/mac.it.po index 8df01c0efd6..4ec547cb375 100644 --- a/wiki/src/doc/reset/mac.it.po +++ b/wiki/src/doc/reset/mac.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -178,8 +178,8 @@ msgstr "Disinserisci la chiavetta USB dal computer." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Apri <span class=\"application\">Terminale</span> da\n" diff --git a/wiki/src/doc/reset/mac.pt.po b/wiki/src/doc/reset/mac.pt.po index 276697623ec..cc2147449d0 100644 --- a/wiki/src/doc/reset/mac.pt.po +++ b/wiki/src/doc/reset/mac.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -174,8 +174,8 @@ msgstr "Desconecte o pendrive USB do computador." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Abra o <span class=\"application\">Terminal</span> a partir de\n" diff --git a/wiki/src/doc/reset/mac.ru.po b/wiki/src/doc/reset/mac.ru.po index d0ccfe76cb5..502523d3ac8 100644 --- a/wiki/src/doc/reset/mac.ru.po +++ b/wiki/src/doc/reset/mac.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 13:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -167,8 +167,8 @@ msgstr "Отключите флешку от компьютера." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Откройте <span class=\"application\">Терминал</span> из меню \n" diff --git a/wiki/src/doc/reset/windows.de.po b/wiki/src/doc/reset/windows.de.po index 40ff83e08b4..61c69589ef3 100644 --- a/wiki/src/doc/reset/windows.de.po +++ b/wiki/src/doc/reset/windows.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-10 17:40+0000\n" "Last-Translator: Benjamin Held <Benjamin.Held@protonmail.com>\n" "Language-Team: Tails localization <tails-l10n@boum.org>\n" @@ -81,8 +81,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Klicken Sie auf den <span class=\"bold\">Start</span>-Button und wählen Sie " diff --git a/wiki/src/doc/reset/windows.es.po b/wiki/src/doc/reset/windows.es.po index bc494e79ad5..4f57a821cce 100644 --- a/wiki/src/doc/reset/windows.es.po +++ b/wiki/src/doc/reset/windows.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -80,8 +80,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Haz click en el botón <span class=\"bold\">Inicio</span>, y elige <span " diff --git a/wiki/src/doc/reset/windows.fr.po b/wiki/src/doc/reset/windows.fr.po index 0a85b729e07..a7378342b01 100644 --- a/wiki/src/doc/reset/windows.fr.po +++ b/wiki/src/doc/reset/windows.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-23 17:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -80,8 +80,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Cliquer sur le bouton <span class=\"bold\">Démarrer</span>, et choisir <span " diff --git a/wiki/src/doc/reset/windows.it.po b/wiki/src/doc/reset/windows.it.po index 6d86fff3f88..4518fe71f41 100644 --- a/wiki/src/doc/reset/windows.it.po +++ b/wiki/src/doc/reset/windows.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-07-09 16:08+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -80,8 +80,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Clicca su<span class=\"bold\">Avvio</span>, e scegli<span " diff --git a/wiki/src/doc/reset/windows.pt.po b/wiki/src/doc/reset/windows.pt.po index f590dcca38e..fdbd2b5067d 100644 --- a/wiki/src/doc/reset/windows.pt.po +++ b/wiki/src/doc/reset/windows.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -82,8 +82,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Clique no botão <span class=\"bold\">Iniciar</span>, e escolha <span " diff --git a/wiki/src/doc/reset/windows.ru.po b/wiki/src/doc/reset/windows.ru.po index 235c6368156..5f808304fa6 100644 --- a/wiki/src/doc/reset/windows.ru.po +++ b/wiki/src/doc/reset/windows.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-17 19:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -81,8 +81,8 @@ msgstr "" #| "exe desc=\"Command Prompt\"]]</span>," msgid "" "Click on the <span class=\"bold\">Start</span> button, and choose <span " -"class=\"menuchoice\">All Programs ▸ Accessories ▸ Command " -"Prompt</span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " +"class=\"menuchoice\">All Programs â–¸ Accessories â–¸ Command Prompt</" +"span>, to open the <span class=\"application\">[[!wikipedia cmd.exe " "desc=\"Command Prompt\"]]</span>," msgstr "" "Ðажмите кнопку <span class=\"bold\">ПуÑк</span> и выберите <span " diff --git a/wiki/src/doc/sensitive_documents/graphics.de.po b/wiki/src/doc/sensitive_documents/graphics.de.po index 3cf2fb45be1..2e605c8ef56 100644 --- a/wiki/src/doc/sensitive_documents/graphics.de.po +++ b/wiki/src/doc/sensitive_documents/graphics.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -91,7 +91,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" "Diese Anwendungen können aus dem Menü\n" diff --git a/wiki/src/doc/sensitive_documents/graphics.es.po b/wiki/src/doc/sensitive_documents/graphics.es.po index 41e3bb8ef29..7bad0b3162f 100644 --- a/wiki/src/doc/sensitive_documents/graphics.es.po +++ b/wiki/src/doc/sensitive_documents/graphics.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -92,7 +92,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" "Estos programas se pueden iniciar desde el menú\n" diff --git a/wiki/src/doc/sensitive_documents/graphics.fr.po b/wiki/src/doc/sensitive_documents/graphics.fr.po index fde9edfce48..36f613e3614 100644 --- a/wiki/src/doc/sensitive_documents/graphics.fr.po +++ b/wiki/src/doc/sensitive_documents/graphics.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" "Ces applications peuvent être lancées depuis le menu\n" diff --git a/wiki/src/doc/sensitive_documents/graphics.it.po b/wiki/src/doc/sensitive_documents/graphics.it.po index 8a009517e19..cea725c2cf6 100644 --- a/wiki/src/doc/sensitive_documents/graphics.it.po +++ b/wiki/src/doc/sensitive_documents/graphics.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-21 11:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -84,7 +84,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" "Queste applicazioni possono essere avviate dal menù\n" diff --git a/wiki/src/doc/sensitive_documents/graphics.pt.po b/wiki/src/doc/sensitive_documents/graphics.pt.po index b74b59e2034..70a1d05e744 100644 --- a/wiki/src/doc/sensitive_documents/graphics.pt.po +++ b/wiki/src/doc/sensitive_documents/graphics.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -71,7 +71,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" diff --git a/wiki/src/doc/sensitive_documents/graphics.ru.po b/wiki/src/doc/sensitive_documents/graphics.ru.po index 496fb47442d..46a2f02f2f1 100644 --- a/wiki/src/doc/sensitive_documents/graphics.ru.po +++ b/wiki/src/doc/sensitive_documents/graphics.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-22 11:10+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -90,7 +90,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Graphics</span></span> menu.\n" msgstr "" "Ðти Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¼Ð¾Ð¶Ð½Ð¾ запуÑтить в меню\n" diff --git a/wiki/src/doc/sensitive_documents/metadata.de.po b/wiki/src/doc/sensitive_documents/metadata.de.po index 0ca7af6a946..035918ed792 100644 --- a/wiki/src/doc/sensitive_documents/metadata.de.po +++ b/wiki/src/doc/sensitive_documents/metadata.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-12 00:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -145,8 +145,8 @@ msgstr "" #. type: Plain text msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/sensitive_documents/metadata.es.po b/wiki/src/doc/sensitive_documents/metadata.es.po index 9324b1aa84f..ab3d314fd1c 100644 --- a/wiki/src/doc/sensitive_documents/metadata.es.po +++ b/wiki/src/doc/sensitive_documents/metadata.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-12 00:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -145,8 +145,8 @@ msgstr "" #. type: Plain text msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/sensitive_documents/metadata.fr.po b/wiki/src/doc/sensitive_documents/metadata.fr.po index b1a785a060a..ff2355e5069 100644 --- a/wiki/src/doc/sensitive_documents/metadata.fr.po +++ b/wiki/src/doc/sensitive_documents/metadata.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-23 18:06+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -179,8 +179,8 @@ msgstr "" #| "To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " #| " â–¸ **Metadata Cleaner**." msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" "Pour ouvrir *Nettoyeur de métadonnées* choisir **Applications** â–¸ " "**Accessoires** â–¸ **Nettoyeur de métadonnées**." diff --git a/wiki/src/doc/sensitive_documents/metadata.it.po b/wiki/src/doc/sensitive_documents/metadata.it.po index 6fb50462042..424098498d9 100644 --- a/wiki/src/doc/sensitive_documents/metadata.it.po +++ b/wiki/src/doc/sensitive_documents/metadata.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-01-05 19:46+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -145,8 +145,8 @@ msgstr "" #. type: Plain text msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/sensitive_documents/metadata.pt.po b/wiki/src/doc/sensitive_documents/metadata.pt.po index 477d4bf0280..dbdb1f44d9f 100644 --- a/wiki/src/doc/sensitive_documents/metadata.pt.po +++ b/wiki/src/doc/sensitive_documents/metadata.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-12 00:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -145,8 +145,8 @@ msgstr "" #. type: Plain text msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/sensitive_documents/metadata.ru.po b/wiki/src/doc/sensitive_documents/metadata.ru.po index c485d4ec28b..93a4265eec5 100644 --- a/wiki/src/doc/sensitive_documents/metadata.ru.po +++ b/wiki/src/doc/sensitive_documents/metadata.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-12-22 13:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -181,8 +181,8 @@ msgstr "" #. type: Plain text msgid "" -"To open *Metadata Cleaner* choose **Applications** ▸ **Accessories** " -" ▸ **Metadata Cleaner**." +"To open *Metadata Cleaner* choose **Applications** â–¸ **Accessories** " +" â–¸ **Metadata Cleaner**." msgstr "" #. type: Title = diff --git a/wiki/src/doc/sensitive_documents/office_suite.de.po b/wiki/src/doc/sensitive_documents/office_suite.de.po index d8aeeb6c7ee..8062daa5854 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.de.po +++ b/wiki/src/doc/sensitive_documents/office_suite.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -64,8 +64,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" "Um <span class=\"application\">LibreOffice</span> zu starten, wählen Sie\n" diff --git a/wiki/src/doc/sensitive_documents/office_suite.es.po b/wiki/src/doc/sensitive_documents/office_suite.es.po index d5c5b64c09d..efc0d93e0c1 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.es.po +++ b/wiki/src/doc/sensitive_documents/office_suite.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -67,8 +67,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" "Para empezar <span class=\"application\">LibreOffice</span> elige\n" diff --git a/wiki/src/doc/sensitive_documents/office_suite.fr.po b/wiki/src/doc/sensitive_documents/office_suite.fr.po index 5da41be8873..70c6e4fe6d9 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.fr.po +++ b/wiki/src/doc/sensitive_documents/office_suite.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-23 18:27+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,8 +64,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" "Pour démarrer <span class=\"application\">LibreOffice</span> choisir\n" diff --git a/wiki/src/doc/sensitive_documents/office_suite.it.po b/wiki/src/doc/sensitive_documents/office_suite.it.po index 2a2b9a41375..58bd246ea5d 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.it.po +++ b/wiki/src/doc/sensitive_documents/office_suite.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-21 11:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -64,8 +64,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" "Per avviare <span class=\"application\">LibreOffice</span> selezionare\n" diff --git a/wiki/src/doc/sensitive_documents/office_suite.pt.po b/wiki/src/doc/sensitive_documents/office_suite.pt.po index dbe7b78a29d..54f99050226 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.pt.po +++ b/wiki/src/doc/sensitive_documents/office_suite.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,8 +53,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" diff --git a/wiki/src/doc/sensitive_documents/office_suite.ru.po b/wiki/src/doc/sensitive_documents/office_suite.ru.po index 2edfed67637..99769f70425 100644 --- a/wiki/src/doc/sensitive_documents/office_suite.ru.po +++ b/wiki/src/doc/sensitive_documents/office_suite.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-22 11:10+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -62,8 +62,8 @@ msgstr "" msgid "" "To start <span class=\"application\">LibreOffice</span> choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Office</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Office</span> â–¸\n" " <span class=\"guimenuitem\">LibreOffice</span></span>.\n" msgstr "" "Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка <span class=\"application\">LibreOffice</span> выберите\n" diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.de.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.de.po index 2b38510faea..51d00ab3c31 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.de.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2019-08-24 06:20+0000\n" "Last-Translator: intrigeri <intrigeri@boum.org>\n" "Language-Team: \n" @@ -41,9 +41,9 @@ msgstr "Drucken\n" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Um einen Drucker zu konfigurieren oder Ihre Druckaufträge zu verwalten, wählen Sie\n" @@ -107,8 +107,8 @@ msgstr "" #. type: Plain text msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.es.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.es.po index ea817074941..67d6e6af30a 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.es.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-21 11:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -39,9 +39,9 @@ msgstr "Impresión" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Para arrancar <span class=\"application\">Simple Scan</span> elige\n" @@ -80,8 +80,8 @@ msgstr "" #. type: Plain text msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.fr.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.fr.po index b9eb0cc8a62..9af5b51142f 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.fr.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,9 +40,9 @@ msgstr "Imprimer" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Pour configurer une imprimante ou gérer vos impressions, choisissez\n" @@ -96,8 +96,8 @@ msgstr "" #| "To start *Document Scanner*, choose **Applications** â–¸ " #| "**Utilities** â–¸ **Document Scanner**." msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" "Pour ouvrir le *Numériseur de documents*, choisir **Applications** â–¸ " "**Utilitaires** â–¸ **Numériseur de documents**." diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.it.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.it.po index 120e2335431..dbe1f040e85 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.it.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-03-15 00:06+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -40,9 +40,9 @@ msgstr "Stampa" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Per configurare una stampante o gestire i tuoi lavori di stampa seleziona\n" @@ -102,8 +102,8 @@ msgstr "" #. type: Plain text msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.pt.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.pt.po index f4db0cd4f61..bef9c216545 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.pt.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-09-26 18:24+0000\n" "Last-Translator: Halley Pacheco de Oliveira <halley.oliveira@protonmail." "com>\n" @@ -40,9 +40,9 @@ msgstr "" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Para iniciar a <span class=\"application\">Digitalização Simples</span> escolha\n" @@ -92,8 +92,8 @@ msgstr "" #. type: Plain text msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/sensitive_documents/printing_and_scanning.ru.po b/wiki/src/doc/sensitive_documents/printing_and_scanning.ru.po index e2cd1ed6f2a..e17a3d6c6f2 100644 --- a/wiki/src/doc/sensitive_documents/printing_and_scanning.ru.po +++ b/wiki/src/doc/sensitive_documents/printing_and_scanning.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-22 13:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -41,9 +41,9 @@ msgstr "Печать" msgid "" "To configure a printer or manage your printing jobs choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">System Tools</span> ▸\n" -" <span class=\"guimenuitem\">Settings</span></span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">System Tools</span> â–¸\n" +" <span class=\"guimenuitem\">Settings</span></span> â–¸\n" " <span class=\"bold\">Printers</span></span>.\n" msgstr "" "Ð”Ð»Ñ Ð½Ð°Ñтройки принтера и ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñми на печать выберите\n" @@ -105,8 +105,8 @@ msgstr "" #. type: Plain text msgid "" -"To start *Document Scanner*, choose **Applications** ▸ " -"**Utilities** ▸ **Document Scanner**." +"To start *Document Scanner*, choose **Applications** â–¸ " +"**Utilities** â–¸ **Document Scanner**." msgstr "" #, fuzzy, no-wrap diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po index aecc00d5a2d..590dcdcc9e6 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.de.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,14 +31,14 @@ msgstr "" #. type: Plain text msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" #. type: Plain text msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" #. type: Title = @@ -66,7 +66,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po index b8d56770f15..602f6567251 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.es.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,14 +31,14 @@ msgstr "" #. type: Plain text msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" #. type: Plain text msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" #. type: Title = @@ -66,7 +66,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po index de65e7a62a0..c21afdbc52a 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-04-03 20:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -35,7 +35,7 @@ msgstr "Prendre une capture d'écran" #| "single window choose **Applications** â–¸ **Screenshot**." msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" "Pour prendre une capture d'écran de l'écran entier, d'une partie de l'écran " "ou d'une seule fenêtre choisir **Applications** â–¸ **Capture d'écran**." @@ -49,7 +49,7 @@ msgstr "" msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" "Vous pouvez aussi appuyer sur la touche **Impr écran** du clavier pour " "prendre instantanément une capture d'écran de l'écran entier. La capture " @@ -86,7 +86,7 @@ msgstr "" #. type: Bullet: '1. ' #, fuzzy #| msgid "The video is saved in **Places** â–¸ **Videos**." -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "La vidéo est sauvegardée dans **Emplacements** â–¸ **Vidéos**." #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po index b46ca2b0766..6d2dd003645 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.it.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,14 +31,14 @@ msgstr "" #. type: Plain text msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" #. type: Plain text msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" #. type: Title = @@ -66,7 +66,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po index 3dadb0be0db..735b281a447 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.pt.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,14 +31,14 @@ msgstr "" #. type: Plain text msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" #. type: Plain text msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" #. type: Title = @@ -66,7 +66,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po index b1b189407de..791c39eebf8 100644 --- a/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po +++ b/wiki/src/doc/sensitive_documents/screenshot_and_screencast.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-30 11:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -32,14 +32,14 @@ msgstr "" #. type: Plain text msgid "" "To take a screenshot of the entire screen, part of the screen, or a single " -"window choose **Applications** ▸ **Screenshot**." +"window choose **Applications** â–¸ **Screenshot**." msgstr "" #. type: Plain text msgid "" "You can also press the **PrtScn** key of the keyboard to take a screenshot " "of the entire screen instantaneously. The screenshot is saved in " -"**Places** ▸ **Pictures**." +"**Places** â–¸ **Pictures**." msgstr "" #. type: Title = @@ -67,7 +67,7 @@ msgid "" msgstr "" #. type: Bullet: '1. ' -msgid "The video is saved in **Places** ▸ **Videos**." +msgid "The video is saved in **Places** â–¸ **Videos**." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.de.po b/wiki/src/doc/sensitive_documents/sound_and_video.de.po index b44adfab485..1a3fd792e52 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.de.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -81,7 +81,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" "Diese Anwendungen können aus dem Menü\n" diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.es.po b/wiki/src/doc/sensitive_documents/sound_and_video.es.po index 1bf12bb114f..18f7c3a9f36 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.es.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -81,7 +81,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" "Estas aplicaciones se pueden iniciar desde\n" diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.fr.po b/wiki/src/doc/sensitive_documents/sound_and_video.fr.po index 18b8cce57bd..f7e0c55e28c 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.fr.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-08 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -83,7 +83,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" "Ces applications peuvent être lancées depuis le menu\n" diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.it.po b/wiki/src/doc/sensitive_documents/sound_and_video.it.po index a2d36fb548c..8f16bb48e44 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.it.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-21 11:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -70,7 +70,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.pt.po b/wiki/src/doc/sensitive_documents/sound_and_video.pt.po index c1fe6b5abd0..3593fbb89de 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.pt.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 12:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -71,7 +71,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" diff --git a/wiki/src/doc/sensitive_documents/sound_and_video.ru.po b/wiki/src/doc/sensitive_documents/sound_and_video.ru.po index a3977dff811..60920058909 100644 --- a/wiki/src/doc/sensitive_documents/sound_and_video.ru.po +++ b/wiki/src/doc/sensitive_documents/sound_and_video.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-12-22 10:15+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -83,7 +83,7 @@ msgstr "" msgid "" "These applications can be started from the\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" " <span class=\"guisubmenu\">Sound & Video</span></span> menu.\n" msgstr "" "Ðти Ð¿Ñ€Ð¸Ð»Ð¾Ð¶ÐµÐ½Ð¸Ñ Ð¼Ð¾Ð¶Ð½Ð¾ запуÑтить из меню\n" diff --git a/wiki/src/doc/upgrade.de.po b/wiki/src/doc/upgrade.de.po index 8bf0e86a70a..57d9bd00126 100644 --- a/wiki/src/doc/upgrade.de.po +++ b/wiki/src/doc/upgrade.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails localization discussion <tails-l10n@boum.org>\n" @@ -109,8 +109,8 @@ msgstr "" msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Um die laufende Tails-Version herauszufinden, wählen Sie\n" @@ -360,7 +360,7 @@ msgstr "[[!img upgrader_manual.png link=no]]\n" #. type: Plain text #, fuzzy, no-wrap #| msgid "Manual upgrade using <span class=\"application\">Tails Installer</span>\n" -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "Manuelles Aktualisieren mithilfe des <span class=\"application\">Tails Installers</span>\n" #. type: Plain text @@ -429,7 +429,7 @@ msgstr "" #| "To do so, follow our [[manual upgrade instructions|/upgrade]].\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "" "Nachdem eine Verbindung zu Tor hergestellt wurde, wird Sie ein Fenster informieren,\n" @@ -486,7 +486,7 @@ msgstr "" #| "1 hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "1 Stunde zum Herunterladen von Tails (<small class=\"remove-extra-space\">[[!" @@ -494,7 +494,7 @@ msgstr "" "small>)" #. type: Bullet: '- ' -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "" #. type: Plain text @@ -550,7 +550,7 @@ msgstr "" #. type: Plain text msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" diff --git a/wiki/src/doc/upgrade.es.po b/wiki/src/doc/upgrade.es.po index f3117c5443c..27a2435b13c 100644 --- a/wiki/src/doc/upgrade.es.po +++ b/wiki/src/doc/upgrade.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/first-" @@ -106,8 +106,8 @@ msgstr "<h1 id=\"check-version\">Comprobar qué versión de Tails estás ejecuta msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Para comprobar qué versión de Tails estás ejecutando actualmente, elige\n" @@ -352,8 +352,9 @@ msgid "[[!img manual.svg link=\"no\" alt=\"\"]]\n" msgstr "[[!img manual.svg link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +#, fuzzy, no-wrap +#| msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "<h1 id=\"manual\">Actualización manual usando <i>Tails Installer</i></h1>\n" #. type: Plain text @@ -403,10 +404,14 @@ msgstr "" "una versión más reciente, por ejemplo al trabajar sin conexión." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "After connecting to Tor, a dialog informs you if you have to\n" +#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +#| "to a newer version of Tails.\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "" "Después de conectarse a Tor, un diálogo te informará si \n" @@ -475,7 +480,7 @@ msgstr "" #| "1 hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "1 hora para descargar Tails (<small class=\"remove-extra-space\">[[!inline " @@ -484,7 +489,7 @@ msgstr "" #. type: Bullet: '- ' #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ hora para actualizar" #. type: Plain text @@ -563,7 +568,7 @@ msgstr "" #| "- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " #| "hour to upgrade" msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" "- Tu memoria USB de Tails\n" diff --git a/wiki/src/doc/upgrade.fr.po b/wiki/src/doc/upgrade.fr.po index 8f2eb2782ed..119570ae014 100644 --- a/wiki/src/doc/upgrade.fr.po +++ b/wiki/src/doc/upgrade.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-19 23:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -106,8 +106,8 @@ msgstr "<h1 id=\"check-version\">Connaître la version de Tails que vous être e msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Pour vérifier la version de Tails que vous être en train d'exécuter, choisissez\n" @@ -352,8 +352,9 @@ msgid "[[!img manual.svg link=\"no\" alt=\"\"]]\n" msgstr "[[!img manual.svg link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +#, fuzzy, no-wrap +#| msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "<h1 id=\"manual\">Mise à jour manuelle avec l'<i>Installeur de Tails</i></h1>\n" #. type: Plain text @@ -401,10 +402,14 @@ msgstr "" "une connexion Internet lente." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "After connecting to Tor, a dialog informs you if you have to\n" +#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +#| "to a newer version of Tails.\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "" "Après connexion à Tor, une boîte de dialogue vous prévient si vous devez\n" @@ -468,7 +473,7 @@ msgstr "" #| "½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "½ heure pour télécharger Tails (<small class=\"remove-extra-space\">[[!" @@ -478,7 +483,7 @@ msgstr "" #. type: Bullet: '- ' #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ heure pour mettre à jour" #. type: Plain text @@ -550,7 +555,7 @@ msgstr "" #| "- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " #| "hour to upgrade" msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" "- Votre clé USB Tails\n" diff --git a/wiki/src/doc/upgrade.it.po b/wiki/src/doc/upgrade.it.po index 7e17dd8d1bc..29b4f82def6 100644 --- a/wiki/src/doc/upgrade.it.po +++ b/wiki/src/doc/upgrade.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Italian translations\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -104,8 +104,8 @@ msgstr "<h1 id=\"check-version\">Verifica della versione di Tails in esecuzione< msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Per verificare quale versione di Tails è in esecuzione, scegli\n" @@ -351,8 +351,9 @@ msgid "[[!img manual.svg link=\"no\" alt=\"\"]]\n" msgstr "[[!img manual.svg link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +#, fuzzy, no-wrap +#| msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "<h1 id=\"manual\">Aggiornamento manuale usando <i>Tails Installer</i></h1>\n" #. type: Plain text @@ -400,10 +401,14 @@ msgstr "" "Internet è lenta." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "After connecting to Tor, a dialog informs you if you have to\n" +#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +#| "to a newer version of Tails.\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "" "Dopo la connessione a Tor, una finestra di dialogo ti informa se devi\n" @@ -464,7 +469,7 @@ msgstr "" #| "1 hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "1 ora per scaricare Tails (<small class=\"remove-extra-space\">[[!inline " @@ -473,7 +478,7 @@ msgstr "" #. type: Bullet: '- ' #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ ora per aggiornare" #. type: Plain text @@ -543,7 +548,7 @@ msgstr "" #| "- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " #| "hour to upgrade" msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" "- La vostra chiavetta USB Tails - Un altro Tails aggiornato (chiavetta USB o " diff --git a/wiki/src/doc/upgrade.pt.po b/wiki/src/doc/upgrade.pt.po index b023be71ee5..554a1c4e7fd 100644 --- a/wiki/src/doc/upgrade.pt.po +++ b/wiki/src/doc/upgrade.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -106,8 +106,8 @@ msgstr "<h1 id=\"check-version\">Ver qual é a versão do Tails que você está msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Para saber a versão do Tails que você está usando no momento, selecione:\n" @@ -347,8 +347,9 @@ msgid "[[!img manual.svg link=\"no\" alt=\"\"]]\n" msgstr "[[!img manual.svg link=\"no\" alt=\"\"]]\n" #. type: Plain text -#, no-wrap -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +#, fuzzy, no-wrap +#| msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "<h1 id=\"manual\">Atualização manual usando o <i>Instalador Tails</i></h1>\n" #. type: Plain text @@ -397,10 +398,14 @@ msgstr "" "internet." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "After connecting to Tor, a dialog informs you if you have to\n" +#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +#| "to a newer version of Tails.\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "" "Após se conectar ao Tor, um dialogo irá informar se você tem que\n" @@ -464,7 +469,7 @@ msgstr "" #| "½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "½ hora para baixar o Tails (<small class=\"remove-extra-space\">[[!inline " @@ -473,7 +478,7 @@ msgstr "" #. type: Bullet: '- ' #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "½ hora para atualizar" #. type: Plain text @@ -547,7 +552,7 @@ msgstr "" #| "- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " #| "hour to upgrade" msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" "- Seu pendrive USB com Tails - Outro Tails atualizado (pendrive USB ou DVD " diff --git a/wiki/src/doc/upgrade.ru.po b/wiki/src/doc/upgrade.ru.po index 5fa9e2c2064..cb374df8cf9 100644 --- a/wiki/src/doc/upgrade.ru.po +++ b/wiki/src/doc/upgrade.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-22 06:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -105,8 +105,8 @@ msgstr "<h1 name=\"check-version\">Проверка верÑии запущен msgid "" "To check which version of Tails you are currently running, choose\n" "<span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" " <span class=\"guimenuitem\">About Tails</span></span>.\n" msgstr "" "Чтобы выÑÑнить, какую верÑию Tails вы ÑÐµÐ¹Ñ‡Ð°Ñ Ð¸Ñпользуете, выберите <span class=\"menuchoice\">\n" @@ -336,7 +336,7 @@ msgstr "[[!img manual.svg link=\"no\" alt=\"\"]]\n" #. type: Plain text #, fuzzy, no-wrap #| msgid "<h1 name=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" -msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Installer</i></h1>\n" +msgid "<h1 id=\"manual\">Manual upgrade using <i>Tails Cloner</i></h1>\n" msgstr "<h1 name=\"manual\">Обновление вручную Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ <i>Tails Installer</i></h1>\n" #. type: Plain text @@ -386,10 +386,14 @@ msgstr "" "Интернет-подключением." #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "After connecting to Tor, a dialog informs you if you have to\n" +#| "upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +#| "to a newer version of Tails.\n" msgid "" "After connecting to Tor, a dialog informs you if you have to\n" -"upgrade your USB stick using <span class=\"application\">Tails Installer</span>\n" +"upgrade your USB stick using <span class=\"application\">Tails Cloner</span>\n" "to a newer version of Tails.\n" msgstr "ПоÑле Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ðº Tor в диалоговом окне вы увидите предложение обновить вашу флешку Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ <span class=\"application\">Tails Installer</span> до Ñвежей верÑии Tails.\n" @@ -456,7 +460,7 @@ msgstr "" #| "1 hour to download Tails (<small class=\"remove-extra-space\">[[!inline " #| "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgid "" -"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " +"½ hour to download Tails (<small class=\"remove-extra-space\">[[!inline " "pages=\"inc/stable_amd64_iso_size\" raw=\"yes\" sort=\"age\"]]</small>)" msgstr "" "в пределах 1 чаÑа, чтобы Ñкачать Tails (<small class=\"remove-extra-" @@ -466,7 +470,7 @@ msgstr "" #. type: Bullet: '- ' #, fuzzy #| msgid "½ hour to upgrade" -msgid "½ hour to upgrade" +msgid "½ hour to upgrade" msgstr "полчаÑа Ð´Ð»Ñ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ." #. type: Plain text @@ -542,7 +546,7 @@ msgstr "" #| "- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " #| "hour to upgrade" msgid "" -"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " +"- Your Tails USB stick - Another up-to-date Tails (USB stick or DVD) - ¼ " "hour to upgrade" msgstr "" "- ваша флешка Tails; - другой ноÑитель Ñ Tails, обновлённый (флешка или " diff --git a/wiki/src/install/inc/steps/clone.inline.de.po b/wiki/src/install/inc/steps/clone.inline.de.po index a2b440a5985..f660bcdcda1 100644 --- a/wiki/src/install/inc/steps/clone.inline.de.po +++ b/wiki/src/install/inc/steps/clone.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -67,7 +67,7 @@ msgid "" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -117,11 +117,11 @@ msgstr "<p>Alle Daten auf diesem USB-Stick werden verloren gehen.</p>\n" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. <div class=\"windows linux mac upgrade install-clone\"><p>\n" " Wählen Sie\n" @@ -136,13 +136,13 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/tails_installer_in_tails.png link=\"no\" class=\"windows linux mac upgrade install-clone\"]]\n" -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_in_tails.png link=\"no\" class=\"windows linux mac upgrade install-clone\"]]\n" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/tails_installer_in_debian.png link=\"no\" class=\"expert\"]]\n" -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_in_debian.png link=\"no\" class=\"expert\"]]\n" #. type: Bullet: '1. ' @@ -248,7 +248,7 @@ msgstr "" #| msgid "Close <span class=\"application\">Tails Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "Schließen Sie den <span class=\"application\">Tails Installer</span>." #. type: Plain text diff --git a/wiki/src/install/inc/steps/clone.inline.es.po b/wiki/src/install/inc/steps/clone.inline.es.po index 3f1b4f1727a..946b29f0903 100644 --- a/wiki/src/install/inc/steps/clone.inline.es.po +++ b/wiki/src/install/inc/steps/clone.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -51,14 +51,22 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p class=\"upgrade\">\n" +#| " In this step, you will upgrade your Tails from the\n" +#| " <span class=\"upgrade-clone\">other</span>\n" +#| " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" +#| " Tails using\n" +#| " <span class=\"application\">Tails Installer</span>.\n" +#| "</p>\n" msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -109,11 +117,11 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. Elige\n" " <span class=\"menuchoice\">\n" @@ -126,12 +134,13 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Tails Installer: 'Clonar el Tails actual'\"]]\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clonar el actual Tails'\"]]\n" #. type: Bullet: '1. ' @@ -219,9 +228,13 @@ msgstr "" " </div>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "After the installation finishes, close <span class=\"application\">Tails " +#| "Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "" "Cuando termine la instalación, cierra el <span class=\"application\">Tails " "Installer</span>." diff --git a/wiki/src/install/inc/steps/clone.inline.fr.po b/wiki/src/install/inc/steps/clone.inline.fr.po index ef39bc0b2b3..63e6ea43fbf 100644 --- a/wiki/src/install/inc/steps/clone.inline.fr.po +++ b/wiki/src/install/inc/steps/clone.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -47,14 +47,22 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p class=\"upgrade\">\n" +#| " In this step, you will upgrade your Tails from the\n" +#| " <span class=\"upgrade-clone\">other</span>\n" +#| " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" +#| " Tails using\n" +#| " <span class=\"application\">Tails Installer</span>.\n" +#| "</p>\n" msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -97,11 +105,11 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. Choisir\n" " <span class=\"menuchoice\">\n" @@ -112,13 +120,15 @@ msgstr "" " pour démarrer le <span class=\"application\">Programme d'installation de Tails</span>.\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Installeur de Tails : 'Cloner le Tails actuellement utilisé'\"]]\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Installeur de Tails : 'Cloner le Tails actuellement utilisé'\"]]\n" #. type: Bullet: '1. ' @@ -188,9 +198,13 @@ msgstr "" " </div>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "After the installation finishes, close <span class=\"application\">Tails " +#| "Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "" "Une fois l'installation terminée, fermer l'<span " "class=\"application\">Installeur de Tails</span>." diff --git a/wiki/src/install/inc/steps/clone.inline.it.po b/wiki/src/install/inc/steps/clone.inline.it.po index 3fb5594bda7..649df4449ec 100644 --- a/wiki/src/install/inc/steps/clone.inline.it.po +++ b/wiki/src/install/inc/steps/clone.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: transitails 1\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -50,14 +50,22 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p class=\"upgrade\">\n" +#| " In this step, you will upgrade your Tails from the\n" +#| " <span class=\"upgrade-clone\">other</span>\n" +#| " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" +#| " Tails using\n" +#| " <span class=\"application\">Tails Installer</span>.\n" +#| "</p>\n" msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -108,11 +116,11 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. Seleziona\n" " <span class=\"menuchoice\">\n" @@ -125,12 +133,13 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Installer di Tails: 'Clona l'attuale Tails'\"]]\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Installer di Tails: 'Clona l'attuale Tails'\"]]\n" #. type: Bullet: '1. ' @@ -210,9 +219,13 @@ msgstr "" " </div>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "After the installation finishes, close <span class=\"application\">Tails " +#| "Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "" "Una volta che l'installazione è terminata, chiudi l'<span " "class=\"application\">Installer di Tails</span>." diff --git a/wiki/src/install/inc/steps/clone.inline.pt.po b/wiki/src/install/inc/steps/clone.inline.pt.po index 0dbd9782423..9b119acff91 100644 --- a/wiki/src/install/inc/steps/clone.inline.pt.po +++ b/wiki/src/install/inc/steps/clone.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -48,14 +48,22 @@ msgstr "</div>\n" # Mantive "Tails Installer" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p class=\"upgrade\">\n" +#| " In this step, you will upgrade your Tails from the\n" +#| " <span class=\"upgrade-clone\">other</span>\n" +#| " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" +#| " Tails using\n" +#| " <span class=\"application\">Tails Installer</span>.\n" +#| "</p>\n" msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -99,11 +107,11 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. Selecione\n" " <span class=\"menuchoice\">\n" @@ -114,13 +122,15 @@ msgstr "" " para iniciar o <span class=\"application\">Tails Installer</span>.\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Instalador Tails: 'Clonar a versão do Tails em uso'\"]]\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone o Tails utilizado atualmente'\"]]\n" #. type: Bullet: '1. ' @@ -191,9 +201,13 @@ msgstr "" " </div>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "After the installation finishes, close <span class=\"application\">Tails " +#| "Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "" "Quando a instalação terminar, feche o <span class=\"application\">Instalador " "Tails</span>." diff --git a/wiki/src/install/inc/steps/clone.inline.ru.po b/wiki/src/install/inc/steps/clone.inline.ru.po index c36d3ccfc4b..18797f46652 100644 --- a/wiki/src/install/inc/steps/clone.inline.ru.po +++ b/wiki/src/install/inc/steps/clone.inline.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -50,14 +50,22 @@ msgid "</div>\n" msgstr "</div>\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "<p class=\"upgrade\">\n" +#| " In this step, you will upgrade your Tails from the\n" +#| " <span class=\"upgrade-clone\">other</span>\n" +#| " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" +#| " Tails using\n" +#| " <span class=\"application\">Tails Installer</span>.\n" +#| "</p>\n" msgid "" "<p class=\"upgrade\">\n" " In this step, you will upgrade your Tails from the\n" " <span class=\"upgrade-clone\">other</span>\n" " <span class=\"upgrade-tails upgrade-os\">intermediary</span>\n" " Tails using\n" -" <span class=\"application\">Tails Installer</span>.\n" +" <span class=\"application\">Tails Cloner</span>.\n" "</p>\n" msgstr "" "<p class=\"upgrade\">\n" @@ -105,11 +113,11 @@ msgstr "" msgid "" "1. Choose\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Tails</span> ▸\n" -" <span class=\"guimenuitem\">Tails Installer</span>\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Tails</span> â–¸\n" +" <span class=\"guimenuitem\">Tails Cloner</span>\n" " </span>\n" -" to start <span class=\"application\">Tails Installer</span>.\n" +" to start <span class=\"application\">Tails Cloner</span>.\n" msgstr "" "1. Ð”Ð»Ñ Ð·Ð°Ð¿ÑƒÑка <span class=\"application\">Tails Installer</span> выберите\n" " <span class=\"menuchoice\">\n" @@ -121,12 +129,13 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" -msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"pc-clone mac-clone\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer.png link=\"no\" class=\"install-clone mac-clone\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" +msgid " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Cloner: 'Clone the current Tails'\"]]\n" msgstr " [[!img install/inc/screenshots/tails_installer_upgrade.png link=\"no\" class=\"upgrade\" alt=\"Tails Installer: 'Clone the current Tails'\"]]\n" #. type: Bullet: '1. ' @@ -213,9 +222,13 @@ msgstr "" " </div>\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "After the installation finishes, close <span class=\"application\">Tails " +#| "Installer</span>." msgid "" "After the installation finishes, close <span class=\"application\">Tails " -"Installer</span>." +"Cloner</span>." msgstr "" "ПоÑле Ð¾ÐºÐ¾Ð½Ñ‡Ð°Ð½Ð¸Ñ ÑƒÑтановки закройте <span class=\"application\">Tails " "Installer</span>." diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.de.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.de.po index 76d3fdc1e78..e8c8d1f5e0b 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.de.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -114,8 +114,8 @@ msgstr "Stellen Sie sicher, dass der erste USB-Stick nicht angeschlossen ist." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Öffnen Sie das <span class=\"application\">Terminal</span> über\n" @@ -332,7 +332,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placehold #. type: Plain text #, fuzzy, no-wrap msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr "" " <p>Falls Sie die Fehlermeldung <span class=\"guilabel\">invalid number ‘16m’</span> erhalten, versuchen\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po index 597cdef1a63..9179bdc5e3d 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -127,8 +127,8 @@ msgstr "Asegúrate de que tu memoria USB está desenchufada." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Abre <span class=\"application\">Terminal</span> desde\n" @@ -347,7 +347,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder #| " <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" #| " using <code>16M</code> instead:</p>\n" msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr "" " <p>Si recibes un error <span class=\"guilabel\">número inválido ‘16m’</span>, prueba\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fr.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fr.po index 4761c37cbac..78d470504f4 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fr.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-01-21 22:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -127,8 +127,8 @@ msgstr "Assurez-vous que votre clé USB soit débranchée." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Ouvrir <span class=\"application\">Terminal</span> depuis\n" @@ -347,7 +347,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder #| " <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" #| " using <code>16M</code> instead:</p>\n" msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr "" " <p>Si vous avez l'erreur <span class=\"guilabel\">invalid number ‘16m’</span>, essayez\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po index a895d3618c0..29d5f431bef 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-16 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -136,8 +136,8 @@ msgstr "Assicurati che la tua chiavetta USB sia disinserita." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Apri <span class=\"application\">Terminale</span> da\n" @@ -360,7 +360,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder #| " <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" #| " using <code>16M</code> instead:</p>\n" msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr "" " <p>Se ottieni un errore <span class=\"guilabel\">invalid number ‘16m’</span>, prova\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po index 2f789d028e2..0a5b4f71c01 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-08-22 20:11+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -103,8 +103,7 @@ msgid "" "also [[!toggle id=\"dd\" text=\"install Tails using `dd` on the command\n" "line\"]].\n" msgstr "" -"Em vez de instalar o <span class=\"application\">balenaEtcher</span>, você " -"também\n" +"Em vez de instalar o <span class=\"application\">balenaEtcher</span>, você também\n" "pode [[!toggle id=\"dd\" text=\"instalar o Tails usando `dd` na linha de\n" "comando\"]].\n" @@ -128,8 +127,8 @@ msgstr "Certifique-se de que o seu pendrive USB esteja desconectado." msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Abra o <span class=\"application\">Terminal</span> a partir de\n" @@ -346,7 +345,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder #| " <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" #| " using <code>16M</code> instead:</p>\n" msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr "" " <p>Se você receber um erro <span class=\"guilabel\">invalid number ‘16m’</span>, tente\n" diff --git a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ru.po b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ru.po index c1658060f99..804d67450e7 100644 --- a/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ru.po +++ b/wiki/src/install/inc/steps/install_etcher_in_mac.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-16 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -149,8 +149,8 @@ msgstr "УбедитеÑÑŒ, что ваша флешка не подключен msgid "" "1. Open <span class=\"application\">Terminal</span> from\n" " <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Terminal.app</span></span>.\n" msgstr "" "1. Откройте <span class=\"application\">Терминал</span> из меню \n" @@ -365,7 +365,7 @@ msgstr " <p class=\"pre command\">sudo dd if=<span class=\"command-placeholder #| " <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" #| " using <code>16M</code> instead:</p>\n" msgid "" -" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" +" <p>If you get an <span class=\"guilabel\">invalid number ‘16m’</span> error, try\n" " using <code>16M</code> instead:</p>\n" msgstr " <p>ЕÑли вы видите Ñообщение об ошибке <span class=\"guilabel\">invalid number ‘16m’</span>, попробуйте иÑпользовать вмеÑто Ñтого <code>16M</code>:</p>\n" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.de.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.de.po index 7a334681b06..18512f0178c 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.de.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -38,8 +38,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po index 8ea0ca73261..5a303ee5420 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-11 20:05+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,8 +52,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po index 314128187cc..68f1d024e91 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-10 22:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -52,8 +52,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po index 72125fa01b9..385a92e3a3d 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-15 23:28+0000\n" "Last-Translator: _ignifugo <ignifugo@insicuri.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,8 +52,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.pt.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.pt.po index d45b7bde1be..fc7269e32eb 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.pt.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-03 19:40+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,8 +52,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ru.po b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ru.po index 0e09445029a..f4754b01128 100644 --- a/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ru.po +++ b/wiki/src/install/inc/steps/install_with_gnome_disks.inline.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-21 05:27+0000\n" "Last-Translator: dedmoroz <cj75300@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,8 +53,8 @@ msgid "" " </div>\n" " <div class=\"upgrade\">\n" " Choose <span class=\"menuchoice\">\n" -" <span class=\"guimenu\">Applications</span> ▸\n" -" <span class=\"guisubmenu\">Utilities</span> ▸\n" +" <span class=\"guimenu\">Applications</span> â–¸\n" +" <span class=\"guisubmenu\">Utilities</span> â–¸\n" " <span class=\"guimenuitem\">Disks</span></span>.\n" " </div>\n" msgstr "" diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po index 64fa1172886..746a5f9d536 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -170,7 +170,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -178,8 +178,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" #. type: Content of: <ol><li><ol><li><p> diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po index 92beb5948b7..e27a4cb50f2 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-06-07 16:40+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -151,7 +151,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -159,8 +159,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" #. type: Content of: <ol><li><ol><li><p> diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po index ab0ab6ac49e..efb2a15a400 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-07 18:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -159,7 +159,7 @@ msgstr "Pour ouvrir l'<em>utilitaire Sécurité au démarrage</em> :" #| "immediately after you see the Apple logo. Your Mac starts up from <a " #| "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -176,8 +176,7 @@ msgstr "" #| "bar." msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" "Lorsque la fenêtre <em>Utilitaires</em> macOS apparaît, sélectionner " "<strong>Utilitaires â–¸ Utilitaire Sécurité au démarrage</strong> dans la " diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po index 600d149e64c..e7bf609678b 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-22 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -149,7 +149,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -157,8 +157,7 @@ msgstr "" #. type: Content of: <ol><li><ol><li><p> msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" #. type: Content of: <ol><li><ol><li><p> diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po index 77f98fb6ac3..db60e319bee 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-11-08 19:17+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -156,7 +156,7 @@ msgstr "Para abrir o <em>Utilitário de segurança de inicialização</em>:" #| "immediately after you see the Apple logo. Your Mac starts up from <a " #| "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -173,8 +173,7 @@ msgstr "" #| "bar." msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" "Quando você ver a janela de <em>utilitários</em> do macOS, escolha " "<strong>Utilitários â–¸ Utilitário de segurança de inicialização</strong> " diff --git a/wiki/src/install/inc/steps/mac_startup_disks.inline.ru.po b/wiki/src/install/inc/steps/mac_startup_disks.inline.ru.po index 52e13289531..4273df318dd 100644 --- a/wiki/src/install/inc/steps/mac_startup_disks.inline.ru.po +++ b/wiki/src/install/inc/steps/mac_startup_disks.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-07-17 19:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -160,7 +160,7 @@ msgstr "ЗапуÑкаем <em>Startup Security Utility</em>." #| "immediately after you see the Apple logo. Your Mac starts up from <a " #| "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgid "" -"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " +"Turn on your Mac, then press and hold <strong>Command(⌘)+R</strong> " "immediately after you see the Apple logo. Your Mac starts up from <a " "href=\"https://support.apple.com/kb/HT201314\">macOS Recovery</a>." msgstr "" @@ -177,8 +177,7 @@ msgstr "" #| "bar." msgid "" "When you see the macOS <em>Utilities</em> window, choose " -"<strong>Utilities ▸ Startup Security Utility</strong> from the menu " -"bar." +"<strong>Utilities â–¸ Startup Security Utility</strong> from the menu bar." msgstr "" "Ð’ окне <em>Утилиты macOS</em> выберите в меню <strong>Утилиты â–¸ Утилита " "безопаÑной загрузки</strong>." diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.de.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.de.po index f81aaae2160..bb178e372e9 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.de.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-26 10:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -65,7 +65,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Wählen Sie <span class=\"menuchoice\"> <span class=\"guimenu\">Anwendungen</" diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.es.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.es.po index aa18549dab1..c715c317d7a 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.es.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-06-05 01:40+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -55,7 +55,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Elige <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicaciones</" diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.fr.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.fr.po index 7cae87853ee..328c36238c4 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.fr.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-01-03 12:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: \n" @@ -55,7 +55,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Choisir <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.it.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.it.po index acb53529688..6574d509eb3 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.it.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -55,7 +55,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Seleziona <span class=\"menuchoice\"> <span class=\"guimenu\">Applicazioni</" diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.pt.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.pt.po index c0c7e62c93e..45bd826e80e 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.pt.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -55,7 +55,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Selecione <span class=\"menuchoice\"> <span class=\"guimenu\">Aplicativos</" diff --git a/wiki/src/install/inc/steps/verify_up-to-date.inline.ru.po b/wiki/src/install/inc/steps/verify_up-to-date.inline.ru.po index aa96e211c44..46a8197a5ac 100644 --- a/wiki/src/install/inc/steps/verify_up-to-date.inline.ru.po +++ b/wiki/src/install/inc/steps/verify_up-to-date.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-07-21 14:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgstr "" #| "class=\"guimenuitem\">About Tails</span></span>." msgid "" "Choose <span class=\"menuchoice\"> <span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Tails</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Tails</span> â–¸ <span " "class=\"guimenuitem\">About Tails</span></span>." msgstr "" "Выберите <span class=\"menuchoice\"> <span class=\"guimenu\">ПриложениÑ</" diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.de.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.de.po index e27989a060d..718ed9f4cf0 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.de.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-22 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,7 +50,7 @@ msgstr "" #. type: Content of: <ol><li><p> msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" #. type: Content of: <ol><li><p> diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.es.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.es.po index badc48502a8..408dd4f0d8a 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.es.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-21 11:07+0000\n" "Last-Translator: JoaquÃn Serna <bubuanabelas@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,7 +56,7 @@ msgstr "" #| "<strong>Power</strong> â–¸ <strong>Restart</strong>." msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" "Presiona y mantiene la tecla <strong>Shift</strong> mientras eliges " "<strong>EnergÃa</strong> â–¸ <strong>Reiniciar</strong>." diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.fr.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.fr.po index 5f2d7b50836..96a3639d488 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.fr.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-01-03 12:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -57,7 +57,7 @@ msgstr "" #| "<strong>Power</strong> â–¸ <strong>Restart</strong>." msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" "Appuyer et maintenir la touche <strong>Majuscule</strong> lorsque vous " "choisissez <strong>Alimentation</strong> â–¸ <strong>Redémarrer</strong>." diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.it.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.it.po index 9cb25f0e644..678c8a8deda 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.it.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-22 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,7 +60,7 @@ msgstr "" #| "<strong>Power</strong> â–¸ <strong>Restart</strong>." msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" "Tieni premuto il tasto <strong>Shift</strong> mentre selezioni " "<strong>Power</strong> â–¸ <strong>Riavvia il sistema</strong>." diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.pt.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.pt.po index d42cfcaae31..2f714778258 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.pt.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-11-08 19:18+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,7 +56,7 @@ msgstr "" #| "<strong>Power</strong> â–¸ <strong>Restart</strong>." msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" "Pressione e segure a tecla <strong>Shift</strong> enquanto você escolhe o " "botão<strong>Ligar/Desligar</strong> â–¸ <strong>Reiniciar</strong>." diff --git a/wiki/src/install/inc/steps/windows_boot_menu.inline.ru.po b/wiki/src/install/inc/steps/windows_boot_menu.inline.ru.po index 18c9f9e6164..6ffb92e5071 100644 --- a/wiki/src/install/inc/steps/windows_boot_menu.inline.ru.po +++ b/wiki/src/install/inc/steps/windows_boot_menu.inline.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2021-07-21 07:05+0000\n" "Last-Translator: Ed Medvedev <edward.medvedev@gmail.com>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -61,7 +61,7 @@ msgstr "" #| "<strong>Power</strong> â–¸ <strong>Restart</strong>." msgid "" "Press and hold the <strong>Shift</strong> key while you choose " -"<strong>Power</strong> ▸ <strong>Restart</strong>." +"<strong>Power</strong> â–¸ <strong>Restart</strong>." msgstr "" "Выберите <strong>Выключение</strong> â–¸ <strong>Перезагрузка</strong>, " "ÑƒÐ´ÐµÑ€Ð¶Ð¸Ð²Ð°Ñ Ð¿Ñ€Ð¸ Ñтом клавишу <strong>Shift</strong>." diff --git a/wiki/src/news/2018-fundraiser.de.po b/wiki/src/news/2018-fundraiser.de.po index 9089fc35da0..8db410c1404 100644 --- a/wiki/src/news/2018-fundraiser.de.po +++ b/wiki/src/news/2018-fundraiser.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 13:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -94,7 +94,7 @@ msgstr "" #| "small number given all the work done, and many of us still do a lot of " #| "work for free in addition to paid hours." msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -187,7 +187,7 @@ msgstr "" #| "and a larger number of donors.</b>\n" msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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" diff --git a/wiki/src/news/2018-fundraiser.es.po b/wiki/src/news/2018-fundraiser.es.po index c3fc44b56cc..a80cc8e6a2d 100644 --- a/wiki/src/news/2018-fundraiser.es.po +++ b/wiki/src/news/2018-fundraiser.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" #. type: Plain text msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -139,7 +139,7 @@ msgstr "" #, no-wrap msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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 "" diff --git a/wiki/src/news/2018-fundraiser.fr.po b/wiki/src/news/2018-fundraiser.fr.po index a1269a84eae..04e433beeb9 100644 --- a/wiki/src/news/2018-fundraiser.fr.po +++ b/wiki/src/news/2018-fundraiser.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -94,7 +94,7 @@ msgstr "" #| "small number given all the work done, and many of us still do a lot of " #| "work for free in addition to paid hours." msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -191,7 +191,7 @@ msgstr "" #| "and a larger number of donors.</b>\n" msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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 "" "L'année dernière, nous avons reçu 1 167\n" diff --git a/wiki/src/news/2018-fundraiser.it.po b/wiki/src/news/2018-fundraiser.it.po index 6796d75c463..5e9ff1ed2c9 100644 --- a/wiki/src/news/2018-fundraiser.it.po +++ b/wiki/src/news/2018-fundraiser.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -93,7 +93,7 @@ msgstr "" #| "small number given all the work done, and many of us still do a lot of " #| "work for free in addition to paid hours." msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -181,7 +181,7 @@ msgstr "" #| "and a larger number of donors.</b>\n" msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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 "" "L'anno scorso abbiamo ricevuto 1 167\n" diff --git a/wiki/src/news/2018-fundraiser.pt.po b/wiki/src/news/2018-fundraiser.pt.po index 5242db37bdc..3412bf8eeff 100644 --- a/wiki/src/news/2018-fundraiser.pt.po +++ b/wiki/src/news/2018-fundraiser.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" #. type: Plain text msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -139,7 +139,7 @@ msgstr "" #, no-wrap msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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 "" diff --git a/wiki/src/news/2018-fundraiser.ru.po b/wiki/src/news/2018-fundraiser.ru.po index b4d8d21b7af..130def81d97 100644 --- a/wiki/src/news/2018-fundraiser.ru.po +++ b/wiki/src/news/2018-fundraiser.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:18+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" #. type: Plain text msgid "" -"Making Tails costs us around 200 000€ each year. This is a really " +"Making Tails costs us around 200 000€ each year. This is a really " "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 "" @@ -139,7 +139,7 @@ msgstr "" #, no-wrap msgid "" "Last year we received 1 167\n" -"donations for a total of 101 644€. <b>This year, we aim for 120 000€\n" +"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 "" diff --git a/wiki/src/news/2019-fundraiser.de.po b/wiki/src/news/2019-fundraiser.de.po index 2b6b6692608..d2c3d18ee68 100644 --- a/wiki/src/news/2019-fundraiser.de.po +++ b/wiki/src/news/2019-fundraiser.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2019-10-23 08:45+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,9 +110,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/2019-fundraiser.es.po b/wiki/src/news/2019-fundraiser.es.po index 3d289fa0f12..f48a09d0f59 100644 --- a/wiki/src/news/2019-fundraiser.es.po +++ b/wiki/src/news/2019-fundraiser.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,9 +110,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/2019-fundraiser.fr.po b/wiki/src/news/2019-fundraiser.fr.po index 72685f4d204..bf59dee70e5 100644 --- a/wiki/src/news/2019-fundraiser.fr.po +++ b/wiki/src/news/2019-fundraiser.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 21:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -151,9 +151,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/2019-fundraiser.it.po b/wiki/src/news/2019-fundraiser.it.po index ce9af4c0a01..f9e5b9da3d6 100644 --- a/wiki/src/news/2019-fundraiser.it.po +++ b/wiki/src/news/2019-fundraiser.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,9 +110,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/2019-fundraiser.pt.po b/wiki/src/news/2019-fundraiser.pt.po index d79fb9fa0cc..cee4c60f5cd 100644 --- a/wiki/src/news/2019-fundraiser.pt.po +++ b/wiki/src/news/2019-fundraiser.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,9 +110,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/2019-fundraiser.ru.po b/wiki/src/news/2019-fundraiser.ru.po index eb2cd178add..9b1bfc694f2 100644 --- a/wiki/src/news/2019-fundraiser.ru.po +++ b/wiki/src/news/2019-fundraiser.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2019-11-22 13:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -111,9 +111,9 @@ msgstr "" msgid "" "According to the [2019 Report by United Nations' Special Rapporteur David " "Kaye](https://daccess-ods.un.org/access.nsf/Get?Open&DS=A/HRC/41/35&Lang=E), " -"surveillance of individuals – often journalists, activists, opposition " +"surveillance of individuals – often journalists, activists, opposition " "figures, critics and others exercising their right to freedom of expression " -"– thrives because of weak controls on exports and transfers of surveillance " +"– thrives because of weak controls on exports and transfers of surveillance " "technology to repressive governments. This surveillance is known to lead to " "arbitrary detention, sometimes to torture and possibly to extrajudicial " "killings." diff --git a/wiki/src/news/33c3.de.po b/wiki/src/news/33c3.de.po index 9512fd4caec..069846aa61d 100644 --- a/wiki/src/news/33c3.de.po +++ b/wiki/src/news/33c3.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,7 +73,7 @@ msgstr "" #. type: Plain text msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" diff --git a/wiki/src/news/33c3.es.po b/wiki/src/news/33c3.es.po index 286491dcaf9..28af8b72979 100644 --- a/wiki/src/news/33c3.es.po +++ b/wiki/src/news/33c3.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/33c3/" @@ -91,7 +91,7 @@ msgstr "" #| "We accept donations in cash and people donating more than 50€ in Hamburg " #| "will get a Tails t-shirt!" msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" "¡Aceptamos donaciones en efectivo y las personas que donen más de 50€ en " diff --git a/wiki/src/news/33c3.fr.po b/wiki/src/news/33c3.fr.po index 42565530681..84fee71908d 100644 --- a/wiki/src/news/33c3.fr.po +++ b/wiki/src/news/33c3.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 21:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -92,7 +92,7 @@ msgstr "" #| "We accept donations in cash and people donating more than 50€ in Hamburg " #| "will get a Tails t-shirt!" msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" "Nous acceptons les dons en espèces et les personnes donnant plus de 50€ à " diff --git a/wiki/src/news/33c3.it.po b/wiki/src/news/33c3.it.po index 05e040c8d1f..38d4d605344 100644 --- a/wiki/src/news/33c3.it.po +++ b/wiki/src/news/33c3.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,7 +82,7 @@ msgstr "" #. type: Plain text msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" diff --git a/wiki/src/news/33c3.pt.po b/wiki/src/news/33c3.pt.po index 98b799228c1..e5555d1d398 100644 --- a/wiki/src/news/33c3.pt.po +++ b/wiki/src/news/33c3.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -73,7 +73,7 @@ msgstr "" #. type: Plain text msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" diff --git a/wiki/src/news/33c3.ru.po b/wiki/src/news/33c3.ru.po index a8059afd79f..4270e8e6044 100644 --- a/wiki/src/news/33c3.ru.po +++ b/wiki/src/news/33c3.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2021-04-11 19:06+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,7 +74,7 @@ msgstr "" #. type: Plain text msgid "" -"We accept donations in cash and people donating more than 50€ in Hamburg " +"We accept donations in cash and people donating more than 50€ in Hamburg " "will get a Tails t-shirt!" msgstr "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.de.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.de.po index 8aa0c9caea0..2b837c67883 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.de.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-04-22 23:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,7 +82,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.es.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.es.po index 9adf2e5d7de..64af47bf1e0 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.es.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -82,7 +82,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.fr.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.fr.po index eecd9f72646..d47ffbea58a 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.fr.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -99,7 +99,7 @@ msgstr "Démarrer Tails." #| "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" "Choisir <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.it.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.it.po index 72e2101ca12..c939a6d6d85 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.it.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,7 +82,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.pt.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.pt.po index f7f4fdbfc7a..130725776cc 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.pt.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -82,7 +82,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" diff --git a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.ru.po b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.ru.po index 403323163db..f4cc2becb7d 100644 --- a/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.ru.po +++ b/wiki/src/news/Tails_3.0_will_require_a_64-bit_processor.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:23+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -83,7 +83,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" "Choose <span class=\"menuchoice\"><span class=\"guimenu\">Applications</" -"span> ▸ <span class=\"guisubmenu\">Utilities</span> ▸ <span " +"span> â–¸ <span class=\"guisubmenu\">Utilities</span> â–¸ <span " "class=\"guimenuitem\">Terminal</span></span> to open a terminal." msgstr "" diff --git a/wiki/src/news/achievements_in_2022.de.po b/wiki/src/news/achievements_in_2022.de.po index 8afd7e663b5..05ce1a83a1f 100644 --- a/wiki/src/news/achievements_in_2022.de.po +++ b/wiki/src/news/achievements_in_2022.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-11 11:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -375,7 +375,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "" #. type: Plain text diff --git a/wiki/src/news/achievements_in_2022.es.po b/wiki/src/news/achievements_in_2022.es.po index c5765a55eb6..6d5665a249f 100644 --- a/wiki/src/news/achievements_in_2022.es.po +++ b/wiki/src/news/achievements_in_2022.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-01 09:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -375,7 +375,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "" #. type: Plain text diff --git a/wiki/src/news/achievements_in_2022.fr.po b/wiki/src/news/achievements_in_2022.fr.po index f4297f1d049..ea6b6b659a2 100644 --- a/wiki/src/news/achievements_in_2022.fr.po +++ b/wiki/src/news/achievements_in_2022.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-02-05 18:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -479,7 +479,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "🎉 ✨ ***tails.net*** ✨ 🎉" -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "🎉 ✨ ***tails.net*** ✨ 🎉" #. type: Plain text diff --git a/wiki/src/news/achievements_in_2022.it.po b/wiki/src/news/achievements_in_2022.it.po index f5ae5f16aa6..7f8f90c0369 100644 --- a/wiki/src/news/achievements_in_2022.it.po +++ b/wiki/src/news/achievements_in_2022.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-01 09:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -375,7 +375,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "" #. type: Plain text diff --git a/wiki/src/news/achievements_in_2022.pt.po b/wiki/src/news/achievements_in_2022.pt.po index ed0b89f081a..f180a57009f 100644 --- a/wiki/src/news/achievements_in_2022.pt.po +++ b/wiki/src/news/achievements_in_2022.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-01 09:36+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -375,7 +375,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "" #. type: Plain text diff --git a/wiki/src/news/achievements_in_2022.ru.po b/wiki/src/news/achievements_in_2022.ru.po index 922e2662cbb..2135357e1fc 100644 --- a/wiki/src/news/achievements_in_2022.ru.po +++ b/wiki/src/news/achievements_in_2022.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:39+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -376,7 +376,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "🎉 ✨ ***tails.net*** ✨ 🎉" +msgid "🎉 ✨ ***tails.net*** ✨ 🎉" msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years.de.po b/wiki/src/news/celebrating_10_years.de.po index 898f326db0d..3447b80c1ce 100644 --- a/wiki/src/news/celebrating_10_years.de.po +++ b/wiki/src/news/celebrating_10_years.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-07 11:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -483,7 +483,7 @@ msgstr "" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" @@ -510,9 +510,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years.es.po b/wiki/src/news/celebrating_10_years.es.po index f493972468e..28a31523a44 100644 --- a/wiki/src/news/celebrating_10_years.es.po +++ b/wiki/src/news/celebrating_10_years.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-20 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -66,7 +66,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -492,7 +492,7 @@ msgstr "" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" @@ -519,9 +519,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years.fr.po b/wiki/src/news/celebrating_10_years.fr.po index d54f354f259..25eadf11415 100644 --- a/wiki/src/news/celebrating_10_years.fr.po +++ b/wiki/src/news/celebrating_10_years.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-30 16:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -93,7 +93,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -702,7 +702,7 @@ msgstr "Depuis 2014 :" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" "Le nombre de personnes utilisant Tails a été multiplié 2,4 fois, augmentant " @@ -750,9 +750,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" "La pérennité ne peut pas être atteinte sans apprécier travailler ensemble et " "sans s'amuser. Nous avons eu des réunions mémorables où nous avons dansé sur " diff --git a/wiki/src/news/celebrating_10_years.it.po b/wiki/src/news/celebrating_10_years.it.po index 1241a376a42..d909d9e8950 100644 --- a/wiki/src/news/celebrating_10_years.it.po +++ b/wiki/src/news/celebrating_10_years.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -483,7 +483,7 @@ msgstr "" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" @@ -510,9 +510,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years.pt.po b/wiki/src/news/celebrating_10_years.pt.po index 773f133de83..014c964d45b 100644 --- a/wiki/src/news/celebrating_10_years.pt.po +++ b/wiki/src/news/celebrating_10_years.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -64,7 +64,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -483,7 +483,7 @@ msgstr "" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" @@ -510,9 +510,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years.ru.po b/wiki/src/news/celebrating_10_years.ru.po index cb29e61b82b..1f0de9ab946 100644 --- a/wiki/src/news/celebrating_10_years.ru.po +++ b/wiki/src/news/celebrating_10_years.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-07 11:28+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -65,7 +65,7 @@ msgid "" " |_|_|_|\n" " | . . |\n" " |_____|\n" -" ´ `\n" +" ´ `\n" " | |\n" " | :-) |\n" " {} {}\n" @@ -484,7 +484,7 @@ msgstr "" msgid "" "The number of Tails users was multiplied by 2.4, increasing by 20% each year " "on average, reaching 25000 daily users on average in 2019. Our yearly " -"budget was multiplied by a similar amount, to reach 240 000€ " +"budget was multiplied by a similar amount, to reach 240 000€ " "(estimated) in 2019." msgstr "" @@ -511,9 +511,9 @@ msgid "" "(https://www.youtube.com/watch?v=pCnEAH5wCzo), [The Police — Every " "Breath You Take](https://www.youtube.com/watch?v=OMOGaugKpzs), and [Cyndi " "Lauper — Girls Just Want To Fix Bugs (*sic*)](https://www.youtube.com/" -"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " +"watch?v=PIb6AZdTr-A), ate delicious [[vegan mafé|mafe]] from our beloved " "cooking team, and squashed an [[!tails_ticket 11140 desc=\"anarchist coup " -"d'état\"]]." +"d'état\"]]." msgstr "" #. type: Plain text diff --git a/wiki/src/news/celebrating_10_years/mafe.de.po b/wiki/src/news/celebrating_10_years/mafe.de.po index 3607da08c03..695d6c6aabd 100644 --- a/wiki/src/news/celebrating_10_years/mafe.de.po +++ b/wiki/src/news/celebrating_10_years/mafe.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "" #. type: Plain text @@ -65,7 +65,7 @@ msgid "3 big onions" msgstr "" #. type: Bullet: '* ' -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" #. type: Bullet: '* ' @@ -78,8 +78,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" #. type: Bullet: '* ' @@ -88,7 +88,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" @@ -132,8 +132,8 @@ msgstr "" #. type: Bullet: '7. ' msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" #. type: Bullet: '8. ' diff --git a/wiki/src/news/celebrating_10_years/mafe.es.po b/wiki/src/news/celebrating_10_years/mafe.es.po index bc4ea87e1d9..0a05e2a99a3 100644 --- a/wiki/src/news/celebrating_10_years/mafe.es.po +++ b/wiki/src/news/celebrating_10_years/mafe.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-03-03 14:26+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,7 +20,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "[[!meta title=\"Mafé\"]]\n" -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "[[!meta title=\"Mafé\"]]\n" #. type: Plain text @@ -69,7 +69,7 @@ msgid "3 big onions" msgstr "" #. type: Bullet: '* ' -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" #. type: Bullet: '* ' @@ -82,8 +82,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" #. type: Bullet: '* ' @@ -92,7 +92,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" @@ -136,8 +136,8 @@ msgstr "" #. type: Bullet: '7. ' msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" #. type: Bullet: '8. ' diff --git a/wiki/src/news/celebrating_10_years/mafe.fr.po b/wiki/src/news/celebrating_10_years/mafe.fr.po index d99037d7029..21b5a880e42 100644 --- a/wiki/src/news/celebrating_10_years/mafe.fr.po +++ b/wiki/src/news/celebrating_10_years/mafe.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-03 19:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -20,7 +20,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "[[!meta title=\"Mafé\"]]\n" -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "[[!meta title=\"Mafé\"]]\n" #. type: Plain text @@ -71,7 +71,7 @@ msgstr "3 gros oignons" #. type: Bullet: '* ' #, fuzzy #| msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" "2,5 kg de patates douces ðŸ (oui ! U+1F360 est une « PATATE DOUCE RÔTIE » !)" @@ -89,8 +89,8 @@ msgstr "400 g. de beurre de cacahuète lisse" #| "½ l. boiled vegetable broth. It is a good idea to make a bit more and " #| "keep it in case the mafé becomes to thick." msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" "½ l. de bouillon de légumes reconstitué. Il est bon d'en faire un peu plus " "et de le conserver au cas où le mafé deviendrait trop épais." @@ -105,7 +105,7 @@ msgstr "4 cuillères à soupe d'huile de tournesol" #| "(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " #| "decoration" msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" "(Facultatif [utilisé lors de la conférence de 2017]) : ½ bouquet de persil " @@ -161,8 +161,8 @@ msgstr "Remuez pendant 4 minutes." #| "Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " #| "potatoes are *exactly* covered by the liquid." msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" "Ajouter les patates douces, les tomates et â…” du bouillon, en veillant à ce " "que les patates soient *exactement* recouvertes par le liquide." diff --git a/wiki/src/news/celebrating_10_years/mafe.it.po b/wiki/src/news/celebrating_10_years/mafe.it.po index 3607da08c03..695d6c6aabd 100644 --- a/wiki/src/news/celebrating_10_years/mafe.it.po +++ b/wiki/src/news/celebrating_10_years/mafe.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "" #. type: Plain text @@ -65,7 +65,7 @@ msgid "3 big onions" msgstr "" #. type: Bullet: '* ' -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" #. type: Bullet: '* ' @@ -78,8 +78,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" #. type: Bullet: '* ' @@ -88,7 +88,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" @@ -132,8 +132,8 @@ msgstr "" #. type: Bullet: '7. ' msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" #. type: Bullet: '8. ' diff --git a/wiki/src/news/celebrating_10_years/mafe.pt.po b/wiki/src/news/celebrating_10_years/mafe.pt.po index 3607da08c03..695d6c6aabd 100644 --- a/wiki/src/news/celebrating_10_years/mafe.pt.po +++ b/wiki/src/news/celebrating_10_years/mafe.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "" #. type: Plain text @@ -65,7 +65,7 @@ msgid "3 big onions" msgstr "" #. type: Bullet: '* ' -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" #. type: Bullet: '* ' @@ -78,8 +78,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" #. type: Bullet: '* ' @@ -88,7 +88,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" @@ -132,8 +132,8 @@ msgstr "" #. type: Bullet: '7. ' msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" #. type: Bullet: '8. ' diff --git a/wiki/src/news/celebrating_10_years/mafe.ru.po b/wiki/src/news/celebrating_10_years/mafe.ru.po index 375a3f7f485..dfb82c58e6c 100644 --- a/wiki/src/news/celebrating_10_years/mafe.ru.po +++ b/wiki/src/news/celebrating_10_years/mafe.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -18,7 +18,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid "[[!meta title=\"Mafé\"]]\n" +msgid "[[!meta title=\"Mafé\"]]\n" msgstr "" #. type: Plain text @@ -65,7 +65,7 @@ msgid "3 big onions" msgstr "" #. type: Bullet: '* ' -msgid "2.5 kg sweet potatoes ðŸÂ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" +msgid "2.5 kg sweet potatoes ðŸ (yes! U+1F360 is \"ROASTED SWEET POTATO\"!)" msgstr "" #. type: Bullet: '* ' @@ -78,8 +78,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " -"it in case the mafé becomes to thick." +"½ l. boiled vegetable broth. It is a good idea to make a bit more and keep " +"it in case the mafé becomes to thick." msgstr "" #. type: Bullet: '* ' @@ -88,7 +88,7 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " +"(Optional [used during the 2017 summit]): ½ bunch chopped parsley for " "decoration" msgstr "" @@ -132,8 +132,8 @@ msgstr "" #. type: Bullet: '7. ' msgid "" -"Add sweet potatoes, tomatoes and ⅔ of the broth, making sure that the potatoes are *exactly* covered by the " -"liquid." +"Add sweet potatoes, tomatoes and â…” of the broth, making sure that the " +"potatoes are *exactly* covered by the liquid." msgstr "" #. type: Bullet: '8. ' diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.de.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.de.po index bdd56d1a293..af3f4da816c 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.de.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,22 +39,22 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" #. type: Plain text msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" #. type: Plain text #, no-wrap -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "" #. type: Plain text @@ -74,26 +74,26 @@ msgid "Se quiser aprender mais sobre autodefesa digital" msgstr "" #. type: Plain text -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" #. type: Bullet: '- ' @@ -103,8 +103,8 @@ msgstr "" #. type: Plain text msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" #. type: Plain text @@ -113,32 +113,31 @@ msgstr "" #. type: Plain text msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" #. type: Plain text #, no-wrap msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" #. type: Plain text msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" #. type: Plain text msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" #. type: Plain text msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.es.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.es.po index 645105176b5..4a18230adc8 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.es.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-29 18:18+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,22 +39,22 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" #. type: Plain text msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" #. type: Plain text #, no-wrap -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "" #. type: Plain text @@ -74,26 +74,26 @@ msgid "Se quiser aprender mais sobre autodefesa digital" msgstr "" #. type: Plain text -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" #. type: Bullet: '- ' @@ -103,8 +103,8 @@ msgstr "" #. type: Plain text msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" #. type: Plain text @@ -113,32 +113,31 @@ msgstr "" #. type: Plain text msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" #. type: Plain text #, no-wrap msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" #. type: Plain text msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" #. type: Plain text msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" #. type: Plain text msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.fr.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.fr.po index d69c7171ea3..8337f07d502 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.fr.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -44,9 +44,9 @@ msgstr "[[!tag announce]]\n" #| "para todos e todas as defensoras de direitos humanos, jornalistas, " #| "ativistas, feministas, defensoras de território, etc." msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" "Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " @@ -60,10 +60,10 @@ msgstr "" #| "contra a vigilância, para a nossa autodefesa digital, escutar e empoderar " #| "as pessoas que lutam pela mudança social." msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" "Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " "sabemos que é cada vez mais importante compartilhar táticas contra a " @@ -73,7 +73,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "**Inscreva-se até 28 de fevereiro!**\n" -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "**Inscreva-se até 28 de fevereiro!**\n" #. type: Plain text @@ -97,7 +97,7 @@ msgstr "Se quiser aprender mais sobre autodefesa digital" #. type: Plain text #, fuzzy #| msgid "Estamos organizando algumas oficinas online em março e em abril:" -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "Estamos organizando algumas oficinas online em março e em abril:" #. type: Bullet: '- ' @@ -107,7 +107,7 @@ msgstr "Estamos organizando algumas oficinas online em março e em abril:" #| "maneira anônima e sem censura (para computadores)." msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " "maneira anônima e sem censura (para computadores)." @@ -120,8 +120,8 @@ msgstr "" #| "anônima e sem censura (para celulares)." msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" "(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " @@ -134,7 +134,7 @@ msgstr "" #| "Aumente a sua privacidade quando usa as aplicações do seu celular." msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " "Aumente a sua privacidade quando usa as aplicações do seu celular." @@ -151,8 +151,8 @@ msgstr "" #| "As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " #| "preencha o seguinte formulário:" msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" "As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " "preencha o seguinte formulário:" @@ -167,8 +167,7 @@ msgstr "<https://survey.tails.boum.org/index.php/146737?lang=pt-BR>" #| "Você poderá participar das oficinas de forma anônima e não haverá " #| "gravação." msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" "Você poderá participar das oficinas de forma anônima e não haverá gravação." @@ -178,7 +177,7 @@ msgstr "" #| "Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" #| "====================================================================================\n" msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" "Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" @@ -191,7 +190,7 @@ msgstr "" #| "que sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " "sejam mais úteis para o seu trabalho e suas lutas no Brasil." @@ -203,9 +202,9 @@ msgstr "" #| "atividades para aprender sobre os problemas que encontram nossas usuárias " #| "no Brasil." msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" "Organizaremos entrevistas, testes de usabilidade, questionários e outras " "atividades para aprender sobre os problemas que encontram nossas usuárias no " @@ -218,7 +217,7 @@ msgstr "" #| "Onion Browser ou Tails, por favor preencha o formulário abaixo:" msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " "Browser ou Tails, por favor preencha o formulário abaixo:" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.it.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.it.po index 3dc079f29c1..45fe0ae6467 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.it.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:08+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,22 +39,22 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" #. type: Plain text msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" #. type: Plain text #, no-wrap -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "" #. type: Plain text @@ -74,26 +74,26 @@ msgid "Se quiser aprender mais sobre autodefesa digital" msgstr "" #. type: Plain text -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" #. type: Bullet: '- ' @@ -103,8 +103,8 @@ msgstr "" #. type: Plain text msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" #. type: Plain text @@ -113,32 +113,31 @@ msgstr "" #. type: Plain text msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" #. type: Plain text #, no-wrap msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" #. type: Plain text msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" #. type: Plain text msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" #. type: Plain text msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.pt.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.pt.po index 93ca146cebb..69a4f0f3035 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.pt.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,22 +39,22 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" #. type: Plain text msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" #. type: Plain text #, no-wrap -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "" #. type: Plain text @@ -74,26 +74,26 @@ msgid "Se quiser aprender mais sobre autodefesa digital" msgstr "" #. type: Plain text -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" #. type: Bullet: '- ' @@ -103,8 +103,8 @@ msgstr "" #. type: Plain text msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" #. type: Plain text @@ -113,32 +113,31 @@ msgstr "" #. type: Plain text msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" #. type: Plain text #, no-wrap msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" #. type: Plain text msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" #. type: Plain text msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" #. type: Plain text msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.ru.po b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.ru.po index 97c147324b7..81481918929 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_brasil.ru.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_brasil.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,22 +40,22 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " +"Esse é um chamado aberto feito pelo Projeto Tor, Tails e Guardian Project " "para todos e todas as defensoras de direitos humanos, jornalistas, " -"ativistas, feministas, defensoras de território, etc." +"ativistas, feministas, defensoras de território, etc." msgstr "" #. type: Plain text msgid "" -"Em meio a crescente ameaça a nossa segurança e liberdade digital no " -"Brasil, sabemos que é cada vez mais importante compartilhar táticas contra " -"a vigilância, para a nossa autodefesa digital, escutar e empoderar as " -"pessoas que lutam pela mudança social." +"Em meio a crescente ameaça a nossa segurança e liberdade digital no Brasil, " +"sabemos que é cada vez mais importante compartilhar táticas contra a " +"vigilância, para a nossa autodefesa digital, escutar e empoderar as pessoas " +"que lutam pela mudança social." msgstr "" #. type: Plain text #, no-wrap -msgid "**Inscreva-se até 28 de fevereiro!**\n" +msgid "**Inscreva-se até 28 de fevereiro!**\n" msgstr "" #. type: Plain text @@ -75,26 +75,26 @@ msgid "Se quiser aprender mais sobre autodefesa digital" msgstr "" #. type: Plain text -msgid "Estamos organizando algumas oficinas online em março e em abril:" +msgid "Estamos organizando algumas oficinas online em março e em abril:" msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar na Internet de " -"maneira anônima e sem censura (para computadores)." +"maneira anônima e sem censura (para computadores)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** e **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima " -"e sem censura (para celulares)." +"(https://onionbrowser.com/)**: Como navegar na Internet de maneira anônima e " +"sem censura (para celulares)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Orbot](https://guardianproject.info/apps/org.torproject.android/)**: " -"Aumente a sua privacidade quando usa as aplicações do seu celular." +"Aumente a sua privacidade quando usa as aplicações do seu celular." msgstr "" #. type: Bullet: '- ' @@ -104,8 +104,8 @@ msgstr "" #. type: Plain text msgid "" -"As oficinas são gratuÃÂtas, mas as vagas são limitadas. Para participar, " -"preencha o seguinte formulário:" +"As oficinas são gratuÃtas, mas as vagas são limitadas. Para participar, " +"preencha o seguinte formulário:" msgstr "" #. type: Plain text @@ -114,32 +114,31 @@ msgstr "" #. type: Plain text msgid "" -"Você poderá participar das oficinas de forma anônima e não " -"haverá gravação." +"Você poderá participar das oficinas de forma anônima e não haverá gravação." msgstr "" #. type: Plain text #, no-wrap msgid "" -"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" +"Se quiser compartilhar a sua experiência conosco para melhorar as nossas ferramentas\n" "====================================================================================\n" msgstr "" #. type: Plain text msgid "" "Estamos interessadas em aprender como melhorar nossas ferramentas para que " -"sejam mais úteis para o seu trabalho e suas lutas no Brasil." +"sejam mais úteis para o seu trabalho e suas lutas no Brasil." msgstr "" #. type: Plain text msgid "" -"Organizaremos entrevistas, testes de usabilidade, questionários e outras " -"atividades para aprender sobre os problemas que encontram nossas usuárias " -"no Brasil." +"Organizaremos entrevistas, testes de usabilidade, questionários e outras " +"atividades para aprender sobre os problemas que encontram nossas usuárias no " +"Brasil." msgstr "" #. type: Plain text msgid "" "Se quiser falar com a gente sobre o seu uso do Navegador Tor, Orbot, Onion " -"Browser ou Tails, por favor preencha o formulário abaixo:" +"Browser ou Tails, por favor preencha o formulário abaixo:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.de.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.de.po index 6752f0176f2..359d6e6cfc9 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.de.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,7 +39,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -47,14 +47,14 @@ msgstr "" #. type: Plain text msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" #. type: Plain text #, no-wrap -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "" #. type: Plain text @@ -71,7 +71,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" @@ -82,13 +82,13 @@ msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" @@ -115,7 +115,7 @@ msgstr "" #. type: Plain text msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" #. type: Title = @@ -126,18 +126,18 @@ msgstr "" #. type: Plain text msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" #. type: Plain text msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" #. type: Plain text msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.es.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.es.po index c18faf95d2f..0caa12550db 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.es.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-29 18:18+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,7 +39,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -47,14 +47,14 @@ msgstr "" #. type: Plain text msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" #. type: Plain text #, no-wrap -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "" #. type: Plain text @@ -71,7 +71,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" @@ -82,13 +82,13 @@ msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" @@ -115,7 +115,7 @@ msgstr "" #. type: Plain text msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" #. type: Title = @@ -126,18 +126,18 @@ msgstr "" #. type: Plain text msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" #. type: Plain text msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" #. type: Plain text msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.fr.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.fr.po index 9a557946dcf..7eaa64b0e2c 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.fr.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-24 08:17+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -44,7 +44,7 @@ msgstr "[[!tag announce]]\n" #| "todas las defensoras de derechos humanos, periodistas, activistas, " #| "feministas, defensoras del territorio, etc." msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -61,8 +61,8 @@ msgstr "" #| "personas que luchan por un cambio social." msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " @@ -73,7 +73,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid "**InscrÃbete antes del 28 de febrero!**\n" -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "**InscrÃbete antes del 28 de febrero!**\n" #. type: Plain text @@ -95,7 +95,7 @@ msgstr "<img src=\"https://gitlab.torproject.org/tpo/ux/research/uploads/1c51538 #| "Si quieres aprender más sobre autodefensa digital\n" #| "=================================================\n" msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" "Si quieres aprender más sobre autodefensa digital\n" @@ -112,7 +112,7 @@ msgstr "Estamos organizando unos talleres en linea en marzo y abril:" #| "manera anónima y sin censura (para computadoras)." msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " "manera anónima y sin censura (para computadoras)." @@ -125,7 +125,7 @@ msgstr "" #| "y sin censura (para celulares)." msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" @@ -163,7 +163,7 @@ msgstr "<https://survey.tails.boum.org/index.php/146737?lang=es>" #| msgid "" #| "Puedes participar en los talleres de manera anónima y no seran grabados." msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" "Puedes participar en los talleres de manera anónima y no seran grabados." @@ -179,7 +179,7 @@ msgstr "Si quieres compartir tu experiencia con nosotras para mejorar nuestras h #| "que sean más útiles para vuestro trabajo y vuestras luchas en México." msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " "sean más útiles para vuestro trabajo y vuestras luchas en México." @@ -193,7 +193,7 @@ msgstr "" msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " @@ -206,7 +206,7 @@ msgstr "" #| "Browser o Tails, por favor rellene también el siguiente formulario:" msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " "Browser o Tails, por favor rellene también el siguiente formulario:" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.it.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.it.po index c044b5f2075..6b6f664cc53 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.it.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:08+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,7 +39,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -47,14 +47,14 @@ msgstr "" #. type: Plain text msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" #. type: Plain text #, no-wrap -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "" #. type: Plain text @@ -71,7 +71,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" @@ -82,13 +82,13 @@ msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" @@ -115,7 +115,7 @@ msgstr "" #. type: Plain text msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" #. type: Title = @@ -126,18 +126,18 @@ msgstr "" #. type: Plain text msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" #. type: Plain text msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" #. type: Plain text msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.pt.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.pt.po index 652028b1f4b..c17ac069179 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.pt.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:30+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -39,7 +39,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -47,14 +47,14 @@ msgstr "" #. type: Plain text msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" #. type: Plain text #, no-wrap -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "" #. type: Plain text @@ -71,7 +71,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" @@ -82,13 +82,13 @@ msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" @@ -115,7 +115,7 @@ msgstr "" #. type: Plain text msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" #. type: Title = @@ -126,18 +126,18 @@ msgstr "" #. type: Plain text msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" #. type: Plain text msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" #. type: Plain text msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" diff --git a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.ru.po b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.ru.po index aaceb524735..d0da24bec7a 100644 --- a/wiki/src/news/ciclo_de_autodefensa_digital_mexico.ru.po +++ b/wiki/src/news/ciclo_de_autodefensa_digital_mexico.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:31+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -40,7 +40,7 @@ msgstr "[[!tag announce]]\n" #. type: Plain text msgid "" -"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " +"Los proyectos Tor, Tails y Guardian Project están llamando a todos y todas " "las defensoras de derechos humanos, periodistas, activistas, feministas, " "defensoras del territorio, etc." msgstr "" @@ -48,14 +48,14 @@ msgstr "" #. type: Plain text msgid "" "En medio de crecientes amenazas a nuestra seguridad y libertad digital en " -"México, sabemos que es cada vez más importante compartir tácticas contra " -"la vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " +"México, sabemos que es cada vez más importante compartir tácticas contra la " +"vigilancia, para nuestra autodefensa digital, escuchar y empoderar las " "personas que luchan por un cambio social." msgstr "" #. type: Plain text #, no-wrap -msgid "**InscrÃÂbete antes del 28 de febrero!**\n" +msgid "**InscrÃbete antes del 28 de febrero!**\n" msgstr "" #. type: Plain text @@ -72,7 +72,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"Si quieres aprender más sobre autodefensa digital\n" +"Si quieres aprender más sobre autodefensa digital\n" "=================================================\n" msgstr "" @@ -83,13 +83,13 @@ msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser](https://torproject.org/)**: Como navegar en Internet de " -"manera anónima y sin censura (para computadoras)." +"manera anónima y sin censura (para computadoras)." msgstr "" #. type: Bullet: '- ' msgid "" "**[Tor Browser Android](https://torproject.org/)** y **[Onion Browser]" -"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " +"(https://onionbrowser.com/)**: Como navegar en Internet de manera anónima y " "sin censura (para celulares)." msgstr "" @@ -116,7 +116,7 @@ msgstr "" #. type: Plain text msgid "" -"Puedes participar en los talleres de manera anónima y no seran grabados." +"Puedes participar en los talleres de manera anónima y no seran grabados." msgstr "" #. type: Title = @@ -127,18 +127,18 @@ msgstr "" #. type: Plain text msgid "" "Estamos interesadas en aprender como mejorar nuestras herramientas para que " -"sean más útiles para vuestro trabajo y vuestras luchas en México." +"sean más útiles para vuestro trabajo y vuestras luchas en México." msgstr "" #. type: Plain text msgid "" "Organizaremos entrevistas, pruebas de usabilidad, encuestas y otras " "actividades para aprender de los problemas que encuentran nuestras usuarias " -"en México." +"en México." msgstr "" #. type: Plain text msgid "" "Si quieres hablar con nosotras sobre tu uso de Tor Browser, Orbot, Onion " -"Browser o Tails, por favor rellene también el siguiente formulario:" +"Browser o Tails, por favor rellene también el siguiente formulario:" msgstr "" diff --git a/wiki/src/news/duckduckgo_challenge.de.po b/wiki/src/news/duckduckgo_challenge.de.po index 4b8b5fd0d2e..1f0ebf18457 100644 --- a/wiki/src/news/duckduckgo_challenge.de.po +++ b/wiki/src/news/duckduckgo_challenge.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2019-07-16 07:50+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -65,7 +65,7 @@ msgstr "" #| "and maintenance. A big thanks to everybody who donated!" msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" "Durch unsere Jahresendspendenkampagne haben wir ~103 000€ erhalten, " @@ -115,7 +115,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "♥ Thank you! ♥" -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "♥ Vielen Dank! ♥" #. type: Title - diff --git a/wiki/src/news/duckduckgo_challenge.es.po b/wiki/src/news/duckduckgo_challenge.es.po index d3213d64511..23373f66448 100644 --- a/wiki/src/news/duckduckgo_challenge.es.po +++ b/wiki/src/news/duckduckgo_challenge.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,7 +53,7 @@ msgstr "" #. type: Plain text msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" @@ -86,7 +86,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "" #. type: Title - diff --git a/wiki/src/news/duckduckgo_challenge.fr.po b/wiki/src/news/duckduckgo_challenge.fr.po index d585c1e354d..f0e5777af48 100644 --- a/wiki/src/news/duckduckgo_challenge.fr.po +++ b/wiki/src/news/duckduckgo_challenge.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -65,7 +65,7 @@ msgstr "" #| "and maintenance. A big thanks to everybody who donated!" msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" "Avec notre campagne de don de fin d'année nous avons récolté " @@ -117,7 +117,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "♥ Thank you! ♥" -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "♥ Merci ! ♥" #. type: Title - diff --git a/wiki/src/news/duckduckgo_challenge.it.po b/wiki/src/news/duckduckgo_challenge.it.po index b96155b9cbd..056f9ca5e3e 100644 --- a/wiki/src/news/duckduckgo_challenge.it.po +++ b/wiki/src/news/duckduckgo_challenge.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,7 +53,7 @@ msgstr "" #. type: Plain text msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" @@ -86,7 +86,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "" #. type: Title - diff --git a/wiki/src/news/duckduckgo_challenge.pt.po b/wiki/src/news/duckduckgo_challenge.pt.po index 0c7499c8cd1..a2017527427 100644 --- a/wiki/src/news/duckduckgo_challenge.pt.po +++ b/wiki/src/news/duckduckgo_challenge.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -53,7 +53,7 @@ msgstr "" #. type: Plain text msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" @@ -86,7 +86,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "" #. type: Title - diff --git a/wiki/src/news/duckduckgo_challenge.ru.po b/wiki/src/news/duckduckgo_challenge.ru.po index 8ca2e2837d8..9b468007eff 100644 --- a/wiki/src/news/duckduckgo_challenge.ru.po +++ b/wiki/src/news/duckduckgo_challenge.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2018-10-25 10:19+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,7 +54,7 @@ msgstr "" #. type: Plain text msgid "" "Through our end-of-year donation campaign we managed to raise " -"~103 000€, which is nearly half of our yearly budget for core work " +"~103 000€, which is nearly half of our yearly budget for core work " "and maintenance. A big thanks to everybody who donated!" msgstr "" @@ -87,7 +87,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "♥ Thank you! ♥" +msgid "♥ Thank you! ♥" msgstr "" #. type: Title - diff --git a/wiki/src/news/many_hands_make_tails.de.po b/wiki/src/news/many_hands_make_tails.de.po index 2509f4b7990..edf3cc90c99 100644 --- a/wiki/src/news/many_hands_make_tails.de.po +++ b/wiki/src/news/many_hands_make_tails.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2019-07-16 07:50+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -120,7 +120,7 @@ msgstr "" #| "agencies running the surveillance business. Many of us still do a lot of " #| "work during their free time." msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/many_hands_make_tails.es.po b/wiki/src/news/many_hands_make_tails.es.po index 45f9ef635fe..d60f469c63e 100644 --- a/wiki/src/news/many_hands_make_tails.es.po +++ b/wiki/src/news/many_hands_make_tails.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -88,7 +88,7 @@ msgstr "" #. type: Plain text msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/many_hands_make_tails.fr.po b/wiki/src/news/many_hands_make_tails.fr.po index 41e7c039642..47bada88068 100644 --- a/wiki/src/news/many_hands_make_tails.fr.po +++ b/wiki/src/news/many_hands_make_tails.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -121,7 +121,7 @@ msgstr "" #| "agencies running the surveillance business. Many of us still do a lot of " #| "work during their free time." msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/many_hands_make_tails.it.po b/wiki/src/news/many_hands_make_tails.it.po index 3e602309f98..b448192322b 100644 --- a/wiki/src/news/many_hands_make_tails.it.po +++ b/wiki/src/news/many_hands_make_tails.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "" #. type: Plain text msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/many_hands_make_tails.pt.po b/wiki/src/news/many_hands_make_tails.pt.po index bc6b951f05b..0ebed8832ed 100644 --- a/wiki/src/news/many_hands_make_tails.pt.po +++ b/wiki/src/news/many_hands_make_tails.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "" #. type: Plain text msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/many_hands_make_tails.ru.po b/wiki/src/news/many_hands_make_tails.ru.po index 9f7c07cc27c..c66ff26e28b 100644 --- a/wiki/src/news/many_hands_make_tails.ru.po +++ b/wiki/src/news/many_hands_make_tails.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -88,7 +88,7 @@ msgstr "" #. type: Plain text msgid "" -"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " +"Our yearly expenses equal 230.000 € on average since 2015 - which is a very " "small budget compared to the multi billionaire companies and agencies " "running the surveillance business. Many of us still do a lot of work during " "their free time." diff --git a/wiki/src/news/mediapart.de.po b/wiki/src/news/mediapart.de.po index 41aa932d8a2..696e4c07eb3 100644 --- a/wiki/src/news/mediapart.de.po +++ b/wiki/src/news/mediapart.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -87,10 +87,10 @@ msgstr "" #| "that makes it hard to screw them up. I could not have talked to Edward " #| "Snowden without this kind of protection. I wish I'd had it years ago.* »" msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" "« *Privatsphäre und Verschlüsselung funktionieren, es ist aber leicht einen " "Fehler zu begehen, der Sie bloßstellt. Tails vereint die wichtigsten " @@ -118,11 +118,11 @@ msgstr "" #| "Tails, burn it on a CD, install it on a SD card, and learn the basics of " #| "information and communication security, and it's free!* »" msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" "« *Kriegsberichterstatter müssen Helme und kugelsichere Westen kaufen sowie " "gepanzerte Autos mieten; Journalisten, die das Internet für Ihre Recherche " @@ -156,12 +156,12 @@ msgstr "" #| "source international, altruistic community. And these are generally " #| "written by crypto-paranoids, they're pretty well designed.* »" msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" "« *Ich glaube, dass die meisten gemeinfreien Werkzeuge für Privatsphäre " "sicher sein werden, ja. [...] Ich glaube, dass Tails sicher sein wird. [...] " @@ -203,12 +203,12 @@ msgstr "" #| "these tools and none of the major organizations that are actually " #| "benefiting them are actually contributing to their development.* »" msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" "« *Nachrichtenorganisationen müssen auch zu dieser Ansammlung von Werkzeugen " "beitragen. Wir brauchen [Journalistinnen und Journalisten], die Patches zu " diff --git a/wiki/src/news/mediapart.es.po b/wiki/src/news/mediapart.es.po index fe2d09e5ac6..a2edf7d7116 100644 --- a/wiki/src/news/mediapart.es.po +++ b/wiki/src/news/mediapart.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -68,10 +68,10 @@ msgstr "" #. type: Plain text msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" #. type: Plain text @@ -83,11 +83,11 @@ msgstr "" #. type: Plain text msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" #. type: Plain text @@ -101,12 +101,12 @@ msgstr "" #. type: Plain text msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" #. type: Plain text @@ -126,12 +126,12 @@ msgstr "" #. type: Plain text msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" #. type: Plain text diff --git a/wiki/src/news/mediapart.fr.po b/wiki/src/news/mediapart.fr.po index 0180ca8bda1..ad6ced0962f 100644 --- a/wiki/src/news/mediapart.fr.po +++ b/wiki/src/news/mediapart.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -85,10 +85,10 @@ msgstr "" #| "that makes it hard to screw them up. I could not have talked to Edward " #| "Snowden without this kind of protection. I wish I'd had it years ago.* »" msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" "« *La protection de la vie privée et le chiffrement fonctionnent, mais il " "est trop facile de commettre une erreur qui trahisse votre identité. Tails " @@ -117,11 +117,11 @@ msgstr "" #| "Tails, burn it on a CD, install it on a SD card, and learn the basics of " #| "information and communication security, and it's free!* »" msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" "« *Les reporters de guerre doivent acheter des casques, des gilets pare-" "balles et louer des véhicules blindés ; les journalistes qui utilisent " @@ -156,12 +156,12 @@ msgstr "" #| "source international, altruistic community. And these are generally " #| "written by crypto-paranoids, they're pretty well designed.* »" msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" "« *Je pense que la plupart des outils de protection de la vie privée présent " "dans le domaine public vont être sûrs. [...] Je pense que Tails va être sûr. " @@ -204,12 +204,12 @@ msgstr "" #| "these tools and none of the major organizations that are actually " #| "benefiting them are actually contributing to their development.* »" msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" "« *Les groupes de presse doivent également contribuer à cet ensemble " "d'outils communautaires. Il faut des [journalistes] qui soumettent des " diff --git a/wiki/src/news/mediapart.it.po b/wiki/src/news/mediapart.it.po index d3855008728..b859e692662 100644 --- a/wiki/src/news/mediapart.it.po +++ b/wiki/src/news/mediapart.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -68,10 +68,10 @@ msgstr "" #. type: Plain text msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" #. type: Plain text @@ -83,11 +83,11 @@ msgstr "" #. type: Plain text msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" #. type: Plain text @@ -101,12 +101,12 @@ msgstr "" #. type: Plain text msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" #. type: Plain text @@ -126,12 +126,12 @@ msgstr "" #. type: Plain text msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" #. type: Plain text diff --git a/wiki/src/news/mediapart.pt.po b/wiki/src/news/mediapart.pt.po index 2c309ee59e2..22824500bba 100644 --- a/wiki/src/news/mediapart.pt.po +++ b/wiki/src/news/mediapart.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:36+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -68,10 +68,10 @@ msgstr "" #. type: Plain text msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" #. type: Plain text @@ -83,11 +83,11 @@ msgstr "" #. type: Plain text msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" #. type: Plain text @@ -101,12 +101,12 @@ msgstr "" #. type: Plain text msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" #. type: Plain text @@ -126,12 +126,12 @@ msgstr "" #. type: Plain text msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" #. type: Plain text diff --git a/wiki/src/news/mediapart.ru.po b/wiki/src/news/mediapart.ru.po index 24f9a151a93..bf81dc1551d 100644 --- a/wiki/src/news/mediapart.ru.po +++ b/wiki/src/news/mediapart.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:20+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -69,10 +69,10 @@ msgstr "" #. type: Plain text msgid "" -"« *Privacy and encryption work, but it's too easy to make a mistake that " +"« *Privacy and encryption work, but it's too easy to make a mistake that " "exposes you. Tails puts the essential tools in one place, with a design that " "makes it hard to screw them up. I could not have talked to Edward Snowden " -"without this kind of protection. I wish I'd had it years ago.* »" +"without this kind of protection. I wish I'd had it years ago.* »" msgstr "" #. type: Plain text @@ -84,11 +84,11 @@ msgstr "" #. type: Plain text msgid "" -"« *War reporters have to buy helmets, bullet-proof vests and rent armored " +"« *War reporters have to buy helmets, bullet-proof vests and rent armored " "cars; journalists using the Internet for their investigations are much " "luckier: to be as secured as war reporters, they only have to download " "Tails, burn it on a CD, install it on a SD card, and learn the basics of " -"information and communication security, and it's free!* »" +"information and communication security, and it's free!* »" msgstr "" #. type: Plain text @@ -102,12 +102,12 @@ msgstr "" #. type: Plain text msgid "" -"« *I think most of the public domain privacy tools are going to be safe, " +"« *I think most of the public domain privacy tools are going to be safe, " "yes. [...] I think that Tails is going to be safe. [...] You know, the NSA " "has a big lever when a tool is written closed-source by a for-profit " "corporation. There are levers they have that they don't have in the open " "source international, altruistic community. And these are generally written " -"by crypto-paranoids, they're pretty well designed.* »" +"by crypto-paranoids, they're pretty well designed.* »" msgstr "" #. type: Plain text @@ -127,12 +127,12 @@ msgstr "" #. type: Plain text msgid "" -"« *News organizations need to also contribute to this community pool of " +"« *News organizations need to also contribute to this community pool of " "tools. We need to have [reporters] contributing patches to PGP, OTR, and " "Tails. These organizations need to be funding $5.000 or $10.000 improvements " "to make these tools better. Because everyone is relying on these tools and " "none of the major organizations that are actually benefiting them are " -"actually contributing to their development.* »" +"actually contributing to their development.* »" msgstr "" #. type: Plain text diff --git a/wiki/src/news/plans_for_2020.de.po b/wiki/src/news/plans_for_2020.de.po index e864bcc27d1..740439a173b 100644 --- a/wiki/src/news/plans_for_2020.de.po +++ b/wiki/src/news/plans_for_2020.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,7 +50,7 @@ msgstr "" #, no-wrap msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/plans_for_2020.es.po b/wiki/src/news/plans_for_2020.es.po index 05ba7425732..bbd7c858016 100644 --- a/wiki/src/news/plans_for_2020.es.po +++ b/wiki/src/news/plans_for_2020.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,7 +50,7 @@ msgstr "" #, no-wrap msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/plans_for_2020.fr.po b/wiki/src/news/plans_for_2020.fr.po index 570a4332e4c..6cb16508908 100644 --- a/wiki/src/news/plans_for_2020.fr.po +++ b/wiki/src/news/plans_for_2020.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -63,7 +63,7 @@ msgstr "" #| "href=\"https://tails.net/donate/?r=plans2020\">donating to Tails</a>.\n" msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/plans_for_2020.it.po b/wiki/src/news/plans_for_2020.it.po index cc88d79b708..b1355060c1c 100644 --- a/wiki/src/news/plans_for_2020.it.po +++ b/wiki/src/news/plans_for_2020.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,7 +50,7 @@ msgstr "" #, no-wrap msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/plans_for_2020.pt.po b/wiki/src/news/plans_for_2020.pt.po index 48c9515e4d1..678add00e59 100644 --- a/wiki/src/news/plans_for_2020.pt.po +++ b/wiki/src/news/plans_for_2020.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -50,7 +50,7 @@ msgstr "" #, no-wrap msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/plans_for_2020.ru.po b/wiki/src/news/plans_for_2020.ru.po index 5014ae845a4..0d5bb8577da 100644 --- a/wiki/src/news/plans_for_2020.ru.po +++ b/wiki/src/news/plans_for_2020.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-07 11:29+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,7 +51,7 @@ msgstr "" #, no-wrap msgid "" "But first, we are pleased that the donation campaign has been pretty successful so far. We received\n" -"around 50 000 € already, which is 69% more than last year.\n" +"around 50 000 € already, which is 69% more than last year.\n" "Still, these good results are due to some large donations and\n" "fewer people have been donating so far, 16% less than in 2018.\n" "We hope that after reading this post many of you will consider <a\n" diff --git a/wiki/src/news/reproducible_Tails.de.po b/wiki/src/news/reproducible_Tails.de.po index cf1b7da09de..e9577fc53c5 100644 --- a/wiki/src/news/reproducible_Tails.de.po +++ b/wiki/src/news/reproducible_Tails.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-04-22 23:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,7 +220,7 @@ msgstr "Bekannte Probleme" #. type: Plain text msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/reproducible_Tails.es.po b/wiki/src/news/reproducible_Tails.es.po index 0a3023971b2..da2474fb044 100644 --- a/wiki/src/news/reproducible_Tails.es.po +++ b/wiki/src/news/reproducible_Tails.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -221,7 +221,7 @@ msgstr "Problemas conocidos" #. type: Plain text msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/reproducible_Tails.fr.po b/wiki/src/news/reproducible_Tails.fr.po index 2e6c20a80e4..dbfc1aa2e8b 100644 --- a/wiki/src/news/reproducible_Tails.fr.po +++ b/wiki/src/news/reproducible_Tails.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -305,7 +305,7 @@ msgstr "Problèmes connus" #| "In our case last-minute issues were discovered and should be fixed in the " #| "next Tails release:" msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/reproducible_Tails.it.po b/wiki/src/news/reproducible_Tails.it.po index 7cefb3018cb..98334c557eb 100644 --- a/wiki/src/news/reproducible_Tails.it.po +++ b/wiki/src/news/reproducible_Tails.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,7 +220,7 @@ msgstr "Problemi noti" #. type: Plain text msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/reproducible_Tails.pt.po b/wiki/src/news/reproducible_Tails.pt.po index 10aaa02cd4b..9eb823e8376 100644 --- a/wiki/src/news/reproducible_Tails.pt.po +++ b/wiki/src/news/reproducible_Tails.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-08-14 11:06+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -220,7 +220,7 @@ msgstr "Problemas conhecidos" #. type: Plain text msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/reproducible_Tails.ru.po b/wiki/src/news/reproducible_Tails.ru.po index 364d45bf4a5..926aaf24da8 100644 --- a/wiki/src/news/reproducible_Tails.ru.po +++ b/wiki/src/news/reproducible_Tails.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2018-10-25 10:21+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -221,7 +221,7 @@ msgstr "" #. type: Plain text msgid "" -"Any reproducible build process is reproducible… until proven otherwise. In " +"Any reproducible build process is reproducible… until proven otherwise. In " "our case last-minute issues were discovered and should be fixed in the next " "Tails release:" msgstr "" diff --git a/wiki/src/news/story_protecting_abortion_activists.de.po b/wiki/src/news/story_protecting_abortion_activists.de.po index d80c9310bc0..671c61601c9 100644 --- a/wiki/src/news/story_protecting_abortion_activists.de.po +++ b/wiki/src/news/story_protecting_abortion_activists.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" diff --git a/wiki/src/news/story_protecting_abortion_activists.es.po b/wiki/src/news/story_protecting_abortion_activists.es.po index f3f5ef627c1..8473f9087a4 100644 --- a/wiki/src/news/story_protecting_abortion_activists.es.po +++ b/wiki/src/news/story_protecting_abortion_activists.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:18+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" diff --git a/wiki/src/news/story_protecting_abortion_activists.fr.po b/wiki/src/news/story_protecting_abortion_activists.fr.po index 26befb12b3b..396afffaf8f 100644 --- a/wiki/src/news/story_protecting_abortion_activists.fr.po +++ b/wiki/src/news/story_protecting_abortion_activists.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-01-19 22:17+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -70,7 +70,7 @@ msgstr "" #| "protection amulet that hides the USB stick in jewelry." msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" "Gabriela a présenté Tails à ces femmes en mélangeant la culture locale et " diff --git a/wiki/src/news/story_protecting_abortion_activists.it.po b/wiki/src/news/story_protecting_abortion_activists.it.po index 8d2cb6d668d..575dd40112c 100644 --- a/wiki/src/news/story_protecting_abortion_activists.it.po +++ b/wiki/src/news/story_protecting_abortion_activists.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:09+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" diff --git a/wiki/src/news/story_protecting_abortion_activists.pt.po b/wiki/src/news/story_protecting_abortion_activists.pt.po index f82ce6e781a..4a702378bf5 100644 --- a/wiki/src/news/story_protecting_abortion_activists.pt.po +++ b/wiki/src/news/story_protecting_abortion_activists.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -59,7 +59,7 @@ msgstr "" #. type: Plain text msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" diff --git a/wiki/src/news/story_protecting_abortion_activists.ru.po b/wiki/src/news/story_protecting_abortion_activists.ru.po index 62e8cf8fb75..b8b8f03c2c9 100644 --- a/wiki/src/news/story_protecting_abortion_activists.ru.po +++ b/wiki/src/news/story_protecting_abortion_activists.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-10 12:32+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -60,7 +60,7 @@ msgstr "" #. type: Plain text msgid "" "Gabriela introduced these women to Tails by mixing up local culture and " -"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " +"privacy technology and presenting Tails as a *patuá*, a type of Brazilian " "protection amulet that hides the USB stick in jewelry." msgstr "" diff --git a/wiki/src/news/version_5.12.de.po b/wiki/src/news/version_5.12.de.po index cb3a3b8081e..796ca05d36e 100644 --- a/wiki/src/news/version_5.12.de.po +++ b/wiki/src/news/version_5.12.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -92,7 +92,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.12.es.po b/wiki/src/news/version_5.12.es.po index f8bfcc49006..653b1aefdbe 100644 --- a/wiki/src/news/version_5.12.es.po +++ b/wiki/src/news/version_5.12.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -92,7 +92,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.12.fr.po b/wiki/src/news/version_5.12.fr.po index 96cb3446baa..7852067411c 100644 --- a/wiki/src/news/version_5.12.fr.po +++ b/wiki/src/news/version_5.12.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-23 22:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -101,7 +101,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.12.it.po b/wiki/src/news/version_5.12.it.po index d24ef6c42b1..e463a47cea0 100644 --- a/wiki/src/news/version_5.12.it.po +++ b/wiki/src/news/version_5.12.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -92,7 +92,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.12.pt.po b/wiki/src/news/version_5.12.pt.po index 8e5d7f0e41d..eb39d6069b9 100644 --- a/wiki/src/news/version_5.12.pt.po +++ b/wiki/src/news/version_5.12.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-18 23:37+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -92,7 +92,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.12.ru.po b/wiki/src/news/version_5.12.ru.po index 698ea9bdc69..05f2532988d 100644 --- a/wiki/src/news/version_5.12.ru.po +++ b/wiki/src/news/version_5.12.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -93,7 +93,7 @@ msgstr "" #. type: Plain text msgid "" "Learn more about the maths in [The Intercept: Passphrases That You Can " -"Memorize — But That Even the NSA Can’t Guess](https://theintercept." +"Memorize — But That Even the NSA Can’t Guess](https://theintercept." "com/2015/03/26/passphrases-can-memorize-attackers-cant-guess/)." msgstr "" diff --git a/wiki/src/news/version_5.15.1.de.po b/wiki/src/news/version_5.15.1.de.po index f1c0f282595..afa0e6006df 100644 --- a/wiki/src/news/version_5.15.1.de.po +++ b/wiki/src/news/version_5.15.1.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.15.1.es.po b/wiki/src/news/version_5.15.1.es.po index f1c0f282595..afa0e6006df 100644 --- a/wiki/src/news/version_5.15.1.es.po +++ b/wiki/src/news/version_5.15.1.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.15.1.fr.po b/wiki/src/news/version_5.15.1.fr.po index 5b1bcf11980..7e1f5e0768c 100644 --- a/wiki/src/news/version_5.15.1.fr.po +++ b/wiki/src/news/version_5.15.1.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-24 17:37+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -110,7 +110,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr " [[!img language.png link=\"no\" alt=\"Faire une recherche de 'esp' retourne maintenant 'Español'\"]]\n" #. type: Plain text diff --git a/wiki/src/news/version_5.15.1.it.po b/wiki/src/news/version_5.15.1.it.po index f1c0f282595..afa0e6006df 100644 --- a/wiki/src/news/version_5.15.1.it.po +++ b/wiki/src/news/version_5.15.1.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.15.1.pt.po b/wiki/src/news/version_5.15.1.pt.po index f1c0f282595..afa0e6006df 100644 --- a/wiki/src/news/version_5.15.1.pt.po +++ b/wiki/src/news/version_5.15.1.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.15.1.ru.po b/wiki/src/news/version_5.15.1.ru.po index f1c0f282595..afa0e6006df 100644 --- a/wiki/src/news/version_5.15.1.ru.po +++ b/wiki/src/news/version_5.15.1.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+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" @@ -97,7 +97,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" +msgid " [[!img language.png link=\"no\" alt=\"Searching for 'esp' now returns 'Español'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.8.de.po b/wiki/src/news/version_5.8.de.po index 14a22952334..ece00b1072a 100644 --- a/wiki/src/news/version_5.8.de.po +++ b/wiki/src/news/version_5.8.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -302,7 +302,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" @@ -680,7 +680,7 @@ msgid "- In Tails, unlock your Persistent Storage:" msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "" #. type: Bullet: ' 1. ' @@ -728,8 +728,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" #. type: Bullet: ' 1. ' @@ -788,13 +788,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.8.es.po b/wiki/src/news/version_5.8.es.po index 2d7a3d4f37d..e258d9d2d77 100644 --- a/wiki/src/news/version_5.8.es.po +++ b/wiki/src/news/version_5.8.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 22:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -302,7 +302,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" @@ -680,7 +680,7 @@ msgid "- In Tails, unlock your Persistent Storage:" msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "" #. type: Bullet: ' 1. ' @@ -728,8 +728,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" #. type: Bullet: ' 1. ' @@ -788,13 +788,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.8.fr.po b/wiki/src/news/version_5.8.fr.po index dde7638997d..c3f4291909c 100644 --- a/wiki/src/news/version_5.8.fr.po +++ b/wiki/src/news/version_5.8.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-05-19 11:01+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -376,7 +376,7 @@ msgstr "Pour le corriger :" #| "Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open " #| "a terminal." msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" "Choisir **Applications** â–¸ **Utilitaires** â–¸ **Terminal** pour " @@ -825,7 +825,7 @@ msgstr "- Dans Tails, déverrouiller votre stockage persistant :" #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "Choisir **Applications** â–¸ **Utilitaires** â–¸ **Disques**." #. type: Bullet: ' 1. ' @@ -887,8 +887,8 @@ msgstr "- Naviguez vers le contenu de votre stockage persistant :" #| "Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** " #| "to open a terminal with administration rights." msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" "Choisir **Applications** â–¸ **Outils système** â–¸ **Terminal " "superutilisateur** pour ouvrir un terminal avec les droits d'administration." @@ -958,7 +958,7 @@ msgstr "Choisir **Réduire** ou **Restaurer**." #. type: Title ## #, fuzzy, no-wrap #| msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "L'Écran de bienvenue et la Connexion à Tor ne rentrent pas en 800x600 ([[!tails_ticket 19324]])" #. type: Plain text @@ -968,7 +968,7 @@ msgstr "L'Écran de bienvenue et la Connexion à Tor ne rentrent pas en 800x600 #| "assistant are cut out on small displays (800×600), like virtual machines." msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" "Le haut de l'Écran de bienvenue et quelques boutons de l'assistant Connexion " "à Tor sont coupés sur les petits écrans (800×600), tels ceux des machines " diff --git a/wiki/src/news/version_5.8.it.po b/wiki/src/news/version_5.8.it.po index 427c28d97ea..4b57dfd016d 100644 --- a/wiki/src/news/version_5.8.it.po +++ b/wiki/src/news/version_5.8.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -302,7 +302,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" @@ -680,7 +680,7 @@ msgid "- In Tails, unlock your Persistent Storage:" msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "" #. type: Bullet: ' 1. ' @@ -728,8 +728,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" #. type: Bullet: ' 1. ' @@ -788,13 +788,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.8.pt.po b/wiki/src/news/version_5.8.pt.po index bc864e04d8c..497fef14468 100644 --- a/wiki/src/news/version_5.8.pt.po +++ b/wiki/src/news/version_5.8.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -331,7 +331,7 @@ msgstr "Para solucionar isso:" #| "Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open " #| "a terminal." msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" "Escolha **Aplicativos** â–¸ **Utilitários** â–¸ **Terminal** para " @@ -733,7 +733,7 @@ msgstr "" #| msgid "" #| "Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open " #| "a terminal." -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "" "Escolha **Aplicativos** â–¸ **Utilitários** â–¸ **Terminal** para " "abrir um terminal." @@ -787,8 +787,8 @@ msgstr "" #| "Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open " #| "a terminal." msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" "Escolha **Aplicativos** â–¸ **Utilitários** â–¸ **Terminal** para " "abrir um terminal." @@ -849,13 +849,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.8.ru.po b/wiki/src/news/version_5.8.ru.po index cbd5895b26f..bbb1e9fb127 100644 --- a/wiki/src/news/version_5.8.ru.po +++ b/wiki/src/news/version_5.8.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -301,7 +301,7 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"Choose **Applications** ▸ **Utilities** ▸ **Terminal** to open a " +"Choose **Applications** â–¸ **Utilities** â–¸ **Terminal** to open a " "terminal." msgstr "" @@ -679,7 +679,7 @@ msgid "- In Tails, unlock your Persistent Storage:" msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Utilities** ▸ **Disks**." +msgid "Choose **Applications** â–¸ **Utilities** â–¸ **Disks**." msgstr "" #. type: Bullet: ' 1. ' @@ -727,8 +727,8 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal** " -"to open a terminal with administration rights." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal** to " +"open a terminal with administration rights." msgstr "" #. type: Bullet: ' 1. ' @@ -787,13 +787,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.9.de.po b/wiki/src/news/version_5.9.de.po index 83548c6ba95..6c16d0633f0 100644 --- a/wiki/src/news/version_5.9.de.po +++ b/wiki/src/news/version_5.9.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,13 +205,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.9.es.po b/wiki/src/news/version_5.9.es.po index 1dd3a618446..c4d2522b815 100644 --- a/wiki/src/news/version_5.9.es.po +++ b/wiki/src/news/version_5.9.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-12 00:43+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,13 +205,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.9.fr.po b/wiki/src/news/version_5.9.fr.po index f1cd4d30348..35c5e00b9ca 100644 --- a/wiki/src/news/version_5.9.fr.po +++ b/wiki/src/news/version_5.9.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-06 17:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -251,7 +251,7 @@ msgstr "Choisir **Réduire** ou **Restaurer**." #. type: Title ## #, fuzzy, no-wrap #| msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "L'Écran de bienvenue et la Connexion à Tor ne rentrent pas en 800x600 ([[!tails_ticket 19324]])" #. type: Plain text @@ -261,7 +261,7 @@ msgstr "L'Écran de bienvenue et la Connexion à Tor ne rentrent pas en 800x600 #| "assistant are cut out on small displays (800×600), like virtual machines." msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" "Le haut de l'Écran de bienvenue et quelques boutons de l'assistant Connexion " "à Tor sont coupés sur les petits écrans (800×600), tels ceux des machines " diff --git a/wiki/src/news/version_5.9.it.po b/wiki/src/news/version_5.9.it.po index 62ad017d2bb..2353842022f 100644 --- a/wiki/src/news/version_5.9.it.po +++ b/wiki/src/news/version_5.9.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,13 +205,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.9.pt.po b/wiki/src/news/version_5.9.pt.po index 676f62f9f70..cec2a44440a 100644 --- a/wiki/src/news/version_5.9.pt.po +++ b/wiki/src/news/version_5.9.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 02:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -205,13 +205,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/version_5.9.ru.po b/wiki/src/news/version_5.9.ru.po index d74c053d564..c411d9a240d 100644 --- a/wiki/src/news/version_5.9.ru.po +++ b/wiki/src/news/version_5.9.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-10 12:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -204,13 +204,13 @@ msgstr "" #. type: Title ## #, no-wrap -msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" +msgid "Welcome Screen and Tor Connection don't fit on 800×600 ([[!tails_ticket 19324]])" msgstr "" #. type: Plain text msgid "" "The top of the Welcome Screen and some button of the Tor Connection " -"assistant are cut out on small displays (800×600), like virtual machines." +"assistant are cut out on small displays (800×600), like virtual machines." msgstr "" #. type: Plain text diff --git a/wiki/src/news/what_we_accomplished_in_2017.de.po b/wiki/src/news/what_we_accomplished_in_2017.de.po index a4dc93c0f4d..8a68852b7c7 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.de.po +++ b/wiki/src/news/what_we_accomplished_in_2017.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2019-07-16 07:51+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: \n" @@ -169,7 +169,7 @@ msgstr "- In 2017 haben wir sieben Tails-**Versionen** veröffentlicht." #| "donations." msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" "Wir haben im Durchschnitt jeden Monat 122 Fehlerberichte durch unser " diff --git a/wiki/src/news/what_we_accomplished_in_2017.es.po b/wiki/src/news/what_we_accomplished_in_2017.es.po index cae51843026..862a1c52419 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.es.po +++ b/wiki/src/news/what_we_accomplished_in_2017.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -123,7 +123,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_accomplished_in_2017.fr.po b/wiki/src/news/what_we_accomplished_in_2017.fr.po index ca95f95d1fc..bec0c21190b 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.fr.po +++ b/wiki/src/news/what_we_accomplished_in_2017.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -155,7 +155,7 @@ msgstr "- En 2017, nous avons publié sept **versions** de Tails." #| "donations." msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" "Nous avons répondus en moyenne à 122 rapports de bug chaque mois via notre " diff --git a/wiki/src/news/what_we_accomplished_in_2017.it.po b/wiki/src/news/what_we_accomplished_in_2017.it.po index 14831be3d30..17fce438bcf 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.it.po +++ b/wiki/src/news/what_we_accomplished_in_2017.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_accomplished_in_2017.pt.po b/wiki/src/news/what_we_accomplished_in_2017.pt.po index 00824b78a5f..7905def12c6 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.pt.po +++ b/wiki/src/news/what_we_accomplished_in_2017.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -121,7 +121,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_accomplished_in_2017.ru.po b/wiki/src/news/what_we_accomplished_in_2017.ru.po index b89a790aa0e..43d8adc47b6 100644 --- a/wiki/src/news/what_we_accomplished_in_2017.ru.po +++ b/wiki/src/news/what_we_accomplished_in_2017.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2018-10-25 10:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -122,7 +122,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "We answered 122 bug reports on average each month through our *help desk* " -"and helped many people being safer online. Each user request costs us 6€ on " +"and helped many people being safer online. Each user request costs us 6€ on " "average to proceed. In 2017 our help desk was paid entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_do_with_your_money.de.po b/wiki/src/news/what_we_do_with_your_money.de.po index 1fc56c82517..b336674700c 100644 --- a/wiki/src/news/what_we_do_with_your_money.de.po +++ b/wiki/src/news/what_we_do_with_your_money.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-04-22 23:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -45,7 +45,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "" #. type: Plain text @@ -107,7 +107,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_do_with_your_money.es.po b/wiki/src/news/what_we_do_with_your_money.es.po index d9b5a198f82..4275d6dde7c 100644 --- a/wiki/src/news/what_we_do_with_your_money.es.po +++ b/wiki/src/news/what_we_do_with_your_money.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -49,7 +49,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "In 2015, we spent around 184 000€, distributed as follows:" -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "En 2015, gastamos unos 184 000€, distribuidos como sigue:" #. type: Plain text @@ -131,7 +131,7 @@ msgstr "Escribir numerosas adiciones a nuestra web y documentación." #| "paid entirely out of donations." msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" "Nuestro **help desk** ayuda a cientos de usuarios de Tails cada mes. " diff --git a/wiki/src/news/what_we_do_with_your_money.fr.po b/wiki/src/news/what_we_do_with_your_money.fr.po index 5e1fe703299..49d03ace4c6 100644 --- a/wiki/src/news/what_we_do_with_your_money.fr.po +++ b/wiki/src/news/what_we_do_with_your_money.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -50,7 +50,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "In 2015, we spent around 184 000€, distributed as follows:" -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "En 2015, nous avons dépensé environ 184 000€, répartis comme suit :" #. type: Plain text @@ -136,7 +136,7 @@ msgstr "" #| "paid entirely out of donations." msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" "Notre **équipe d'assistance** aide des centaines de personnes utilisant " diff --git a/wiki/src/news/what_we_do_with_your_money.it.po b/wiki/src/news/what_we_do_with_your_money.it.po index 78bdf8b88b8..4c44eac08e7 100644 --- a/wiki/src/news/what_we_do_with_your_money.it.po +++ b/wiki/src/news/what_we_do_with_your_money.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -49,7 +49,7 @@ msgstr "" #. type: Plain text #, fuzzy #| msgid "In 2015, we spent around 184 000€, distributed as follows:" -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "Nel 2015 abbiamo speso circa 184 000€, distribuiti come segue:" #. type: Plain text @@ -134,7 +134,7 @@ msgstr "Scrivere numerose aggiunte al nostro sito web e alla documentazione." #| "paid entirely out of donations." msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" "Ogni mese il nostro **help desk** aiuta centinaia di utenti Tails. \n" diff --git a/wiki/src/news/what_we_do_with_your_money.pt.po b/wiki/src/news/what_we_do_with_your_money.pt.po index 280e1750388..f947036babb 100644 --- a/wiki/src/news/what_we_do_with_your_money.pt.po +++ b/wiki/src/news/what_we_do_with_your_money.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -45,7 +45,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "" #. type: Plain text @@ -107,7 +107,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" diff --git a/wiki/src/news/what_we_do_with_your_money.ru.po b/wiki/src/news/what_we_do_with_your_money.ru.po index d83c98e8718..f69278e4ac9 100644 --- a/wiki/src/news/what_we_do_with_your_money.ru.po +++ b/wiki/src/news/what_we_do_with_your_money.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -46,7 +46,7 @@ msgid "" msgstr "" #. type: Plain text -msgid "In 2015, we spent around 184 000€, distributed as follows:" +msgid "In 2015, we spent around 184 000€, distributed as follows:" msgstr "" #. type: Plain text @@ -108,7 +108,7 @@ msgstr "" #. type: Bullet: '- ' msgid "" "Our **help desk** is helping hundreds of Tails users each month. Each user " -"request costs us 6€ on average to proceed. In 2016 our help desk was paid " +"request costs us 6€ on average to proceed. In 2016 our help desk was paid " "entirely out of donations." msgstr "" diff --git a/wiki/src/news/why_we_need_donations.de.po b/wiki/src/news/why_we_need_donations.de.po index 65ed972017a..e61defe5036 100644 --- a/wiki/src/news/why_we_need_donations.de.po +++ b/wiki/src/news/why_we_need_donations.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 16:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -70,7 +70,7 @@ msgstr "" #| "[[Since 2014|doc/about/finances]], we raised 210'000€ on average each " #| "year, coming from:" msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" "[[Seit 2014|doc/about/finances]] haben wir jedes Jahr durchschnittlich " @@ -155,7 +155,7 @@ msgstr "" #| "agencies running the surveillance business." msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/news/why_we_need_donations.es.po b/wiki/src/news/why_we_need_donations.es.po index 182e7566d97..bacd468b75f 100644 --- a/wiki/src/news/why_we_need_donations.es.po +++ b/wiki/src/news/why_we_need_donations.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-29 18:17+0000\n" "Last-Translator: cacukin <cacukin@cryptolab.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/" @@ -64,7 +64,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" #. type: Plain text msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/news/why_we_need_donations.fr.po b/wiki/src/news/why_we_need_donations.fr.po index ff7754673e0..d4ed8b1da8b 100644 --- a/wiki/src/news/why_we_need_donations.fr.po +++ b/wiki/src/news/why_we_need_donations.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -71,7 +71,7 @@ msgstr "" #| "[[Since 2014|doc/about/finances]], we raised 210'000€ on average each " #| "year, coming from:" msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" "[[Depuis 2014|doc/about/finances]], nous avons récolté 210 000€ en moyenne " @@ -155,7 +155,7 @@ msgstr "" #| "agencies running the surveillance business." msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/news/why_we_need_donations.it.po b/wiki/src/news/why_we_need_donations.it.po index 2fe14999e5d..084a4e0f599 100644 --- a/wiki/src/news/why_we_need_donations.it.po +++ b/wiki/src/news/why_we_need_donations.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:07+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,7 +56,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #. type: Plain text msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/news/why_we_need_donations.pt.po b/wiki/src/news/why_we_need_donations.pt.po index 1f6464bc5a0..562bccb6172 100644 --- a/wiki/src/news/why_we_need_donations.pt.po +++ b/wiki/src/news/why_we_need_donations.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -56,7 +56,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" @@ -111,7 +111,7 @@ msgstr "" #. type: Plain text msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/news/why_we_need_donations.ru.po b/wiki/src/news/why_we_need_donations.ru.po index 7612d09effa..5cdec71722c 100644 --- a/wiki/src/news/why_we_need_donations.ru.po +++ b/wiki/src/news/why_we_need_donations.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2018-10-25 10:31+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -57,7 +57,7 @@ msgstr "" #. type: Plain text msgid "" -"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " +"[[Since 2014|doc/about/finances]], we raised 210'000€ on average each year, " "coming from:" msgstr "" @@ -112,7 +112,7 @@ msgstr "" #. type: Plain text msgid "" "From anonymized statistics on our website we know that Tails is used by " -"around 18 000 people every day. **If each of them gave 12€, the price of a " +"around 18 000 people every day. **If each of them gave 12€, the price of a " "USB stick, our budget for the whole year would be raised within one day.** " "As you can see, funding Tails through donations is a realistic and our " "budget ridiculously small compared to the multibillionaire companies and " diff --git a/wiki/src/press.de.po b/wiki/src/press.de.po index 57f62609dea..b5742b211fe 100644 --- a/wiki/src/press.de.po +++ b/wiki/src/press.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -449,11 +449,10 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" #. type: Title = @@ -503,14 +502,13 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" #. type: Bullet: '* ' msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" @@ -532,8 +530,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" #. type: Plain text diff --git a/wiki/src/press.es.po b/wiki/src/press.es.po index a94fd7a811c..a28c51c1cb9 100644 --- a/wiki/src/press.es.po +++ b/wiki/src/press.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <http://translate.tails.boum.org/projects/tails/press/" @@ -513,11 +513,10 @@ msgstr "" #| "confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL]" #| "(https://www.irill.org/)" msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" "2013-10-30: [Tails : confidentialité et anonymat, pour tous et " "partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " @@ -587,9 +586,8 @@ msgstr "Libros, folletos y guÃas" #. type: Bullet: '* ' msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" #. type: Bullet: '* ' @@ -598,7 +596,7 @@ msgstr "" #| "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " #| "several sections based on Tails (in French)." msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) tiene " @@ -634,8 +632,8 @@ msgstr "" #| "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." #| "net/spip.php?article1045) (in French)." msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" "spip.php?article1045) (en francés)." diff --git a/wiki/src/press.fr.po b/wiki/src/press.fr.po index f5bbbff13fe..fd707babe6c 100644 --- a/wiki/src/press.fr.po +++ b/wiki/src/press.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -516,11 +516,10 @@ msgstr "" #| "confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL]" #| "(https://www.irill.org/)" msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" "2013-10-30 : [Tails : confidentialité et anonymat, pour tous et " "partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " @@ -595,9 +594,8 @@ msgstr "Livres, brochures et guides" #| "(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " #| "CódigoSur." msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" "2021-09 : [Tails: Conectándonos a internet de manera segura y anónima]" "(https://milpadigital.org/milpadigital-59) dans Milpa Digital #59 par " @@ -609,7 +607,7 @@ msgstr "" #| "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " #| "several sections based on Tails (in French)." msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" "2017-09 : Le [Guide d'autodéfense numérique](https://guide.boum.org/) " @@ -645,8 +643,8 @@ msgstr "" #| "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." #| "net/spip.php?article1045) (in French)." msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" "2015-06 : [L’informatique : se défendre et attaquer](https://infokiosques." "net/spip.php?article1045) (en français)." diff --git a/wiki/src/press.it.po b/wiki/src/press.it.po index 31f70e69329..4983fb21213 100644 --- a/wiki/src/press.it.po +++ b/wiki/src/press.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 10:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -520,11 +520,10 @@ msgstr "" #| "confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL]" #| "(https://www.irill.org/)" msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" "2013-10-30: [Tails : confidentialité et anonymat, pour tous et " "partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " @@ -599,9 +598,8 @@ msgstr "Libri, opuscoli e guide" #| "(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " #| "CódigoSur." msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" "2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" "(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 da CódigoSur." @@ -612,7 +610,7 @@ msgstr "" #| "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " #| "several sections based on Tails (in French)." msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) contiene " @@ -647,8 +645,8 @@ msgstr "" #| "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." #| "net/spip.php?article1045) (in French)." msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" "spip.php?article1045) (in francese)." diff --git a/wiki/src/press.pt.po b/wiki/src/press.pt.po index ba306841726..1e7de51a6f4 100644 --- a/wiki/src/press.pt.po +++ b/wiki/src/press.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -514,11 +514,10 @@ msgstr "" #| "confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL]" #| "(https://www.irill.org/)" msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" "2013-10-30: [Tails : confidentialité et anonymat, pour tous et " "partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " @@ -587,9 +586,8 @@ msgstr "Livros, livretos, e guia" #. type: Bullet: '* ' msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" #. type: Bullet: '* ' @@ -598,7 +596,7 @@ msgstr "" #| "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " #| "several sections based on Tails (in French)." msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" "2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) possui " @@ -634,8 +632,8 @@ msgstr "" #| "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." #| "net/spip.php?article1045) (in French)." msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" "2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" "spip.php?article1045) (em Francês)." diff --git a/wiki/src/press.ru.po b/wiki/src/press.ru.po index f1d2700e94e..4369c6aac02 100644 --- a/wiki/src/press.ru.po +++ b/wiki/src/press.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -446,11 +446,10 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " -"partout — L'utilisabilité et de la maintenabilité, fonctionnalités " -"critiques pour la sécurité](https://www.irill.org/posts/2013/tails-" -"confidentialite-et-anonymat-pour-tous-et-partout.html) at [IRILL](https://" -"www.irill.org/)" +"2013-10-30: [Tails : confidentialité et anonymat, pour tous et " +"partout — L'utilisabilité et de la maintenabilité, fonctionnalités critiques " +"pour la sécurité](https://www.irill.org/posts/2013/tails-confidentialite-et-" +"anonymat-pour-tous-et-partout.html) at [IRILL](https://www.irill.org/)" msgstr "" #. type: Title = @@ -500,14 +499,13 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" -"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by " -"CódigoSur." +"2021-09: [Tails: Conectándonos a internet de manera segura y anónima]" +"(https://milpadigital.org/milpadigital-59) in Milpa Digital #59 by CódigoSur." msgstr "" #. type: Bullet: '* ' msgid "" -"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " +"2017-09: [Guide d'autodéfense numérique](https://guide.boum.org/) has " "several sections based on Tails (in French)." msgstr "" @@ -529,8 +527,8 @@ msgstr "" #. type: Bullet: '* ' msgid "" -"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques." -"net/spip.php?article1045) (in French)." +"2015-06: [L’informatique : se défendre et attaquer](https://infokiosques.net/" +"spip.php?article1045) (in French)." msgstr "" #. type: Plain text diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po index a273aa558d8..4766fde6f3b 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -62,7 +62,7 @@ msgstr "" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po index 1d8bc28e291..f647c316877 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -62,7 +62,7 @@ msgstr "" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po index 45d6366641c..b023a391120 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2022-12-19 21:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: French <http://translate.tails.boum.org/projects/tails/" @@ -73,7 +73,7 @@ msgstr "Pour être capable de réaliser cette attaque :" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" "l'attaquant doit pouvoir modifier le contenu d'un site web que vous êtes en " "train de visiter en utilisant le [[Navigateur Tor|doc/anonymous_internet/" diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po index 84bce66b3ef..bcc681fba9f 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-12-24 14:43+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -62,7 +62,7 @@ msgstr "" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po index eb4a41a9971..912a771c1fa 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: Portuguese <http://translate.tails.boum.org/projects/tails/" @@ -63,7 +63,7 @@ msgstr "" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po b/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po index bb375c46aa5..1baaf898e14 100644 --- a/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po +++ b/wiki/src/security/Security_hole_in_I2P_0.9.13.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -63,7 +63,7 @@ msgstr "" msgid "" "the attacker must be able to affect the content of a website that you are " "visiting using the [[Tor Browser|doc/anonymous_internet/Tor_Browser]] in " -"Tails — many people are able to do so;" +"Tails — many people are able to do so;" msgstr "" #. type: Bullet: '2. ' diff --git a/wiki/src/security/Upgrade_Tor.de.po b/wiki/src/security/Upgrade_Tor.de.po index 1c8d5c93d53..a6992f1f431 100644 --- a/wiki/src/security/Upgrade_Tor.de.po +++ b/wiki/src/security/Upgrade_Tor.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -75,8 +75,7 @@ msgstr "" #. type: Plain text msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" #. type: Plain text @@ -90,7 +89,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" #. type: Plain text diff --git a/wiki/src/security/Upgrade_Tor.es.po b/wiki/src/security/Upgrade_Tor.es.po index 856819d290e..b6399e8b323 100644 --- a/wiki/src/security/Upgrade_Tor.es.po +++ b/wiki/src/security/Upgrade_Tor.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -75,8 +75,7 @@ msgstr "" #. type: Plain text msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" #. type: Plain text @@ -90,7 +89,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" #. type: Plain text diff --git a/wiki/src/security/Upgrade_Tor.fr.po b/wiki/src/security/Upgrade_Tor.fr.po index 3eb1a590cbc..28d8b56d037 100644 --- a/wiki/src/security/Upgrade_Tor.fr.po +++ b/wiki/src/security/Upgrade_Tor.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Tails translators <tails@boum.org>\n" @@ -92,8 +92,7 @@ msgstr "" #| "there:" msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" "Pour mettre Tor à jour, il faut démarrer un *Terminal Administrateur* depuis " "le menu *Applications* → *Accessoires*, et y taper la commande suivante :" @@ -116,7 +115,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" "... puis taper sur la touche *Entrée*, et attendre que la mise à jour se " "termine, ce qui peut prendre quelques minutes. À ce moment là , l'icône de " diff --git a/wiki/src/security/Upgrade_Tor.it.po b/wiki/src/security/Upgrade_Tor.it.po index 51f8fac2d38..ad5462e1936 100644 --- a/wiki/src/security/Upgrade_Tor.it.po +++ b/wiki/src/security/Upgrade_Tor.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-13 17:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -75,8 +75,7 @@ msgstr "" #. type: Plain text msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" #. type: Plain text @@ -90,7 +89,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" #. type: Plain text diff --git a/wiki/src/security/Upgrade_Tor.pt.po b/wiki/src/security/Upgrade_Tor.pt.po index 541a43969d2..ee477557fae 100644 --- a/wiki/src/security/Upgrade_Tor.pt.po +++ b/wiki/src/security/Upgrade_Tor.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -75,8 +75,7 @@ msgstr "" #. type: Plain text msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" #. type: Plain text @@ -90,7 +89,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" #. type: Plain text diff --git a/wiki/src/security/Upgrade_Tor.ru.po b/wiki/src/security/Upgrade_Tor.ru.po index 7331c2c7bbc..7f3cde90155 100644 --- a/wiki/src/security/Upgrade_Tor.ru.po +++ b/wiki/src/security/Upgrade_Tor.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -76,8 +76,7 @@ msgstr "" #. type: Plain text msgid "" "To upgrade Tor, start a *Root Terminal* from the " -"*Applications* → *Accessories* menu, and type the following command in " -"there:" +"*Applications* → *Accessories* menu, and type the following command in there:" msgstr "" #. type: Plain text @@ -91,7 +90,7 @@ msgid "" "take a few minutes. At this time, the Vidalia icon on the top right of the " "screen should have changed from the usual green onion to a grey, red-crossed " "one. Right click on it and choose *Exit* in the menu that opens. Then, start " -"a new Vidalia from the *Applications* → *Internet* menu." +"a new Vidalia from the *Applications* → *Internet* menu." msgstr "" #. type: Plain text diff --git a/wiki/src/security/argon2id.de.po b/wiki/src/security/argon2id.de.po index 402559dfa3d..4daca4e5a3a 100644 --- a/wiki/src/security/argon2id.de.po +++ b/wiki/src/security/argon2id.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -391,7 +391,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -613,8 +613,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -753,7 +752,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -829,7 +828,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -854,9 +853,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id.es.po b/wiki/src/security/argon2id.es.po index b9d9265e6ed..221b406cf37 100644 --- a/wiki/src/security/argon2id.es.po +++ b/wiki/src/security/argon2id.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -391,7 +391,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -613,8 +613,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -753,7 +752,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -829,7 +828,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -854,9 +853,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id.fr.po b/wiki/src/security/argon2id.fr.po index 8d934c80695..d3d9ed3b762 100644 --- a/wiki/src/security/argon2id.fr.po +++ b/wiki/src/security/argon2id.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-21 15:37+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -423,7 +423,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -645,8 +645,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -785,7 +784,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -863,7 +862,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -888,9 +887,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id.it.po b/wiki/src/security/argon2id.it.po index 4fe302535f4..0e2025f7cbe 100644 --- a/wiki/src/security/argon2id.it.po +++ b/wiki/src/security/argon2id.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -391,7 +391,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -613,8 +613,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -753,7 +752,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -829,7 +828,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -854,9 +853,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id.pt.po b/wiki/src/security/argon2id.pt.po index f7fe9ee0f7a..a20a58f7745 100644 --- a/wiki/src/security/argon2id.pt.po +++ b/wiki/src/security/argon2id.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-08-01 15:22+0000\n" "Last-Translator: drebs <drebs@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -394,7 +394,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -616,8 +616,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -756,7 +755,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -832,7 +831,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -857,9 +856,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id.ru.po b/wiki/src/security/argon2id.ru.po index a7d7fd3668a..20c109aa4b6 100644 --- a/wiki/src/security/argon2id.ru.po +++ b/wiki/src/security/argon2id.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -392,7 +392,7 @@ msgid "Update your main Tails USB stick to Tails 5.14." msgstr "" #. type: Bullet: '1. ' -msgid "Create a new backup Tails using *Tails Installer*" +msgid "Create a new backup Tails using *Tails Cloner*" msgstr "" #. type: Plain text @@ -614,8 +614,7 @@ msgid "Backup Tails (5 words)" msgstr "" #. type: Bullet: '1. ' -msgid "" -"Update your backup or create a new backup Tails using *Tails Installer*." +msgid "Update your backup or create a new backup Tails using *Tails Cloner*." msgstr "" #. type: Plain text @@ -754,7 +753,7 @@ msgid "If you want to upgrade your backup Tails to LUKS2 anyway:" msgstr "" #. type: Bullet: '1. ' -msgid "Update your backup using *Tails Installer*." +msgid "Update your backup using *Tails Cloner*." msgstr "" #. type: Plain text @@ -830,7 +829,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -855,9 +854,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.de.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.de.po index 9226fcca74c..c3c4840de07 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.de.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,7 +31,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -56,9 +56,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -83,11 +83,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.es.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.es.po index 8bbab1382e4..eaa43964e04 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.es.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,7 +31,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -56,9 +56,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -83,11 +83,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.fr.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.fr.po index 02e6489afea..ca33dd0553c 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.fr.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.inline.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-03 12:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -33,7 +33,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -58,9 +58,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -85,11 +85,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.it.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.it.po index 4168222951d..a64aa94eb5e 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.it.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,7 +31,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -56,9 +56,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -83,11 +83,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.pt.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.pt.po index 83e4a5433b7..a2e55f558e9 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.pt.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -31,7 +31,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -56,9 +56,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -83,11 +83,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/cryptsetup_partition.inline.ru.po b/wiki/src/security/argon2id/cryptsetup_partition.inline.ru.po index 1c580f2dfe6..b1b61feb414 100644 --- a/wiki/src/security/argon2id/cryptsetup_partition.inline.ru.po +++ b/wiki/src/security/argon2id/cryptsetup_partition.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -32,7 +32,7 @@ msgstr "" #. type: Bullet: ' 1. ' msgid "" -"Choose **Applications** ▸ **System Tools** ▸ **Root Terminal**." +"Choose **Applications** â–¸ **System Tools** â–¸ **Root Terminal**." msgstr "" #. type: Bullet: ' 1. ' @@ -57,9 +57,9 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" @@ -84,11 +84,11 @@ msgid "" " NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT\n" " loop0 7:0 0 1.2G 1 loop /lib/live/mount/rootfs/filesystem.squashfs\n" " sda 8:0 1 7G 0 disk\n" -" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" -" └─sda2 8:2 1 3G 0 part\n" -" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" +" ├─sda1 8:1 1 4G 0 part /lib/live/mount/medium\n" +" └─sda2 8:2 1 3G 0 part\n" +" └─TailsData_unlocked 253:0 0 3G 0 crypt /run/nosymfollow/live/persistence/TailsData_un...\n" " sdb 8:0 1 7G 0 disk\n" -" └─sdb1 8:2 1 7G 0 part\n" +" └─sdb1 8:2 1 7G 0 part\n" " zram0 254:0 0 2.8G 0 disk [SWAP]\n" msgstr "" diff --git a/wiki/src/security/argon2id/keepassxc.inline.de.po b/wiki/src/security/argon2id/keepassxc.inline.de.po index 6ba0a01a8ff..d60c4732a56 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.de.po +++ b/wiki/src/security/argon2id/keepassxc.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,11 +24,11 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/keepassxc.inline.es.po b/wiki/src/security/argon2id/keepassxc.inline.es.po index 9ff6e4c71c7..d69937e00af 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.es.po +++ b/wiki/src/security/argon2id/keepassxc.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,11 +24,11 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/keepassxc.inline.fr.po b/wiki/src/security/argon2id/keepassxc.inline.fr.po index 45fec807d09..b18b42494ec 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.fr.po +++ b/wiki/src/security/argon2id/keepassxc.inline.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,13 +26,13 @@ msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Applications** â–¸ **KeePassXC**." -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "Choisir **Applications** â–¸ **KeePassXC**." #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Tools** â–¸ **Password Generator**." -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "Choisir **Outils** â–¸ **Générateur de mot de passe**." #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/keepassxc.inline.it.po b/wiki/src/security/argon2id/keepassxc.inline.it.po index da482feedfa..6a71dc86cdc 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.it.po +++ b/wiki/src/security/argon2id/keepassxc.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,11 +24,11 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/keepassxc.inline.pt.po b/wiki/src/security/argon2id/keepassxc.inline.pt.po index 99d64a5be04..bcd52fbfe31 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.pt.po +++ b/wiki/src/security/argon2id/keepassxc.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,11 +24,11 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/keepassxc.inline.ru.po b/wiki/src/security/argon2id/keepassxc.inline.ru.po index 38a4f9297ed..4e82e8f2ab1 100644 --- a/wiki/src/security/argon2id/keepassxc.inline.ru.po +++ b/wiki/src/security/argon2id/keepassxc.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -25,11 +25,11 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **KeePassXC**." +msgid "Choose **Applications** â–¸ **KeePassXC**." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Tools** ▸ **Password Generator**." +msgid "Choose **Tools** â–¸ **Password Generator**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.de.po b/wiki/src/security/argon2id/ps_passphrase.inline.de.po index aecfed7ad98..798f3de0d63 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.de.po +++ b/wiki/src/security/argon2id/ps_passphrase.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,7 +24,7 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.es.po b/wiki/src/security/argon2id/ps_passphrase.inline.es.po index 0de3c1da9c9..97d7a3ec2e6 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.es.po +++ b/wiki/src/security/argon2id/ps_passphrase.inline.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,7 +24,7 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.fr.po b/wiki/src/security/argon2id/ps_passphrase.inline.fr.po index 23f0049d83d..12abd03eea2 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.fr.po +++ b/wiki/src/security/argon2id/ps_passphrase.inline.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -26,7 +26,7 @@ msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' #, fuzzy #| msgid "Choose **Applications** â–¸ **Persistent Storage**." -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "Choisir **Applications** â–¸ **Stockage persistant**." #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.it.po b/wiki/src/security/argon2id/ps_passphrase.inline.it.po index b44b12b11ff..3ad33cfba7b 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.it.po +++ b/wiki/src/security/argon2id/ps_passphrase.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,7 +24,7 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.pt.po b/wiki/src/security/argon2id/ps_passphrase.inline.pt.po index 97dbea7c93f..b719c228e9b 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.pt.po +++ b/wiki/src/security/argon2id/ps_passphrase.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -24,7 +24,7 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/ps_passphrase.inline.ru.po b/wiki/src/security/argon2id/ps_passphrase.inline.ru.po index a329ef07d4a..b13d864c059 100644 --- a/wiki/src/security/argon2id/ps_passphrase.inline.ru.po +++ b/wiki/src/security/argon2id/ps_passphrase.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -25,7 +25,7 @@ msgid "[[!tag security/fixed]]\n" msgstr "[[!tag security/fixed]]\n" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Persistent Storage**." +msgid "Choose **Applications** â–¸ **Persistent Storage**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.de.po b/wiki/src/security/argon2id/tails_installer.inline.de.po index 9ddf48ea653..f221ed29f4f 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.de.po +++ b/wiki/src/security/argon2id/tails_installer.inline.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.es.po b/wiki/src/security/argon2id/tails_installer.inline.es.po index 153fe1730ff..49f5a0b7da2 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.es.po +++ b/wiki/src/security/argon2id/tails_installer.inline.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.fr.po b/wiki/src/security/argon2id/tails_installer.inline.fr.po index e16d1d65d89..b06efaae29b 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.fr.po +++ b/wiki/src/security/argon2id/tails_installer.inline.fr.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-14 16:35+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.it.po b/wiki/src/security/argon2id/tails_installer.inline.it.po index 4fefbafa9c3..6a4d6b583db 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.it.po +++ b/wiki/src/security/argon2id/tails_installer.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.pt.po b/wiki/src/security/argon2id/tails_installer.inline.pt.po index bdb7bab25b4..5fe4f4b70da 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.pt.po +++ b/wiki/src/security/argon2id/tails_installer.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -28,7 +28,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/argon2id/tails_installer.inline.ru.po b/wiki/src/security/argon2id/tails_installer.inline.ru.po index 9434ee6dbeb..7ac16f561d2 100644 --- a/wiki/src/security/argon2id/tails_installer.inline.ru.po +++ b/wiki/src/security/argon2id/tails_installer.inline.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:34+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -29,7 +29,7 @@ msgid "Plug in the new USB stick." msgstr "" #. type: Bullet: ' 1. ' -msgid "Choose **Applications** ▸ **Tails Installer**." +msgid "Choose **Applications** â–¸ **Tails Cloner**." msgstr "" #. type: Bullet: ' 1. ' diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po index 57511d0cfef..9456f4b084e 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "<div class=\"tip\">\n" #, no-wrap msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -178,7 +178,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -266,14 +266,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.es.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.es.po index 4156a26a614..842ce4292a4 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.es.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: Spanish <https://translate.tails.boum.org/projects/tails/" @@ -87,7 +87,7 @@ msgstr "<div class=\"tip\">\n" #, no-wrap msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -178,7 +178,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -266,14 +266,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.fr.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.fr.po index 2075164b49d..00a643d0ef2 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.fr.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.fr.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-02-05 18:28+0000\n" "Last-Translator: Chre <tor@renaudineau.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -107,7 +107,7 @@ msgstr "<div class=\"tip\">\n" #| "accounts.\n" msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -235,7 +235,7 @@ msgstr "" #| "1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" #| "create a local mailbox where to download your emails.\n" msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" "1. Choisissez **Fichier** â–¸ **Ajouter une boîte aux lettres** â–¸ **MH…** pour\n" @@ -266,7 +266,7 @@ msgstr " [[!img claws_mail_leaks_plaintext_to_imap/add_mailbox.png link=\"no\" #| "your IMAP account in the list of accounts, and click **Delete** to\n" #| "delete it. Doing so does not delete any email stored on the server.\n" msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -358,7 +358,7 @@ msgstr "" #| "1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" #| "mailbox where to save your drafts and queued emails.\n" msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" "1. Choisissez **Ajouter une boîte aux lettres** â–¸ **MH…** pour créer une\n" @@ -371,7 +371,7 @@ msgstr "" #| "your IMAP account in the list of accounts, and click **Edit** to edit\n" #| "its preferences.\n" msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.it.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.it.po index 90faec1c45a..a48b6309bde 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.it.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.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: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-03-13 17:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: ita <transitails@inventati.org>\n" @@ -87,7 +87,7 @@ msgstr "<div class=\"tip\">\n" #, no-wrap msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -178,7 +178,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -266,14 +266,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po index 303da0567da..edf1f4df9e6 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2020-03-20 07:37+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -87,7 +87,7 @@ msgstr "<div class=\"tip\">\n" #, no-wrap msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -178,7 +178,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -266,14 +266,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.ru.po b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.ru.po index 10d9cb3125f..8f512c15258 100644 --- a/wiki/src/security/claws_mail_leaks_plaintext_to_imap.ru.po +++ b/wiki/src/security/claws_mail_leaks_plaintext_to_imap.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:55+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -88,7 +88,7 @@ msgstr "<div class=\"tip\">\n" #, no-wrap msgid "" "To know if you are using IMAP or POP, choose <span class=\"menuchoice\">\n" -"<span class=\"guimenu\">Configuration</span> ▸\n" +"<span class=\"guimenu\">Configuration</span> â–¸\n" "<span class=\"guimenuitem\">Edit accounts…</span></span> and refer\n" "to the <span class=\"guilabel\">Protocol</span> column in the list of\n" "accounts.\n" @@ -179,7 +179,7 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **File** ▸ **Add mailbox** ▸ **MH…** to\n" +"1. Choose **File** â–¸ **Add mailbox** â–¸ **MH…** to\n" "create a local mailbox where to download your emails.\n" msgstr "" @@ -200,7 +200,7 @@ msgstr " [[!img claws_mail_leaks_plaintext_to_imap/add_mailbox.png link=\"no\" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Delete** to\n" "delete it. Doing so does not delete any email stored on the server.\n" msgstr "" @@ -267,14 +267,14 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Add mailbox** ▸ **MH…** to create a local\n" +"1. Choose **Add mailbox** â–¸ **MH…** to create a local\n" "mailbox where to save your drafts and queued emails.\n" msgstr "" #. type: Plain text #, no-wrap msgid "" -"1. Choose **Configuration** ▸ **Edit accounts…**, select\n" +"1. Choose **Configuration** â–¸ **Edit accounts…**, select\n" "your IMAP account in the list of accounts, and click **Edit** to edit\n" "its preferences.\n" msgstr "" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.de.po b/wiki/src/security/sandbox_escape_in_tor_browser.de.po index 9999514ddaa..4f714ca2828 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.de.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,7 +51,7 @@ msgstr "" #, no-wrap msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.es.po b/wiki/src/security/sandbox_escape_in_tor_browser.es.po index 2131b83a3ea..4f026c9f864 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.es.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,7 +51,7 @@ msgstr "" #, no-wrap msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.fr.po b/wiki/src/security/sandbox_escape_in_tor_browser.fr.po index fc4e13f34df..53707b1f1dc 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.fr.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-19 21:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -54,7 +54,7 @@ msgstr "<p>Dans Tails 3.14.1 et les versions précédentes, le Navigateur Tor n' #| "[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" "<p>Nous vous encourageons <b>vivement</b> à \n" "[[mettre à jour vers Tails 3.14.2|news/version_3.14.2]] dès que possible.</p>\n" diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.it.po b/wiki/src/security/sandbox_escape_in_tor_browser.it.po index 6e05e9ae9a9..deb3bdbc76a 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.it.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-12-24 14:44+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,7 +51,7 @@ msgstr "" #, no-wrap msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.pt.po b/wiki/src/security/sandbox_escape_in_tor_browser.pt.po index 3bbc5da75c3..a60c53e36c5 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.pt.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 16:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -51,7 +51,7 @@ msgstr "" #, no-wrap msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/security/sandbox_escape_in_tor_browser.ru.po b/wiki/src/security/sandbox_escape_in_tor_browser.ru.po index c84d7304987..509f8d46346 100644 --- a/wiki/src/security/sandbox_escape_in_tor_browser.ru.po +++ b/wiki/src/security/sandbox_escape_in_tor_browser.ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2023-08-14 13:53+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-02 11:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -52,7 +52,7 @@ msgstr "" #, no-wrap msgid "" "<p>We <b>strongly</b> encourage you to\n" -"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" +"[[upgrade to Tails 3.14.2|news/version_3.14.2]] as soon as possible.</p>\n" msgstr "" #. type: Plain text diff --git a/wiki/src/sponsors.de.po b/wiki/src/sponsors.de.po index 0b08c178e85..12daf3caf93 100644 --- a/wiki/src/sponsors.de.po +++ b/wiki/src/sponsors.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-12 00:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -99,13 +99,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$50.000 – $99.999" -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "$50.000 – $99.999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.433€" -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "Anonyme Spende - 1.433€" #. type: Content of: <div><p> @@ -115,13 +115,13 @@ msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10.000 – $49.999" -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "$10.000 – $49.999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Access Now - 50.000€" -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "Access Now - 50.000€" #. type: Content of: <div><p> @@ -133,13 +133,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$1.000 – $9.999" -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "$1.000 – $9.999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> @@ -157,14 +157,14 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy -#| msgid "An individual - 2.000€" -msgid "An individual - 2 000€" -msgstr "Eine Einzelperson - 2.000€" +#| msgid "An individual - $2.000" +msgid "An individual - 2 000€" +msgstr "Eine Einzelperson - $2.000" #. type: Attribute 'title' of: <div><p> #, fuzzy @@ -181,13 +181,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> @@ -207,13 +207,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.433€" -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "Anonyme Spende - 1.433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2.000€" -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "Mediapart - 2.000€" #. type: Content of: <div><p> @@ -337,19 +337,19 @@ msgstr "2021" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.857€" -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "Anonyme Spende - 1.857€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.433€" -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "Anonyme Spende - 1.433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Access Now - 50.000€" -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "Access Now - 50.000€" #. type: Content of: <div><p> @@ -369,7 +369,7 @@ msgstr "[[!img internews.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "Anonyme Spende - 2.902€" #. type: Content of: <div><p> @@ -379,7 +379,7 @@ msgstr "[[!img aspiration.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 2 000€" +msgid "Anonymous donation - 2 000€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> @@ -395,7 +395,7 @@ msgstr "[[!img word-solver.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2.000€" -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "Mediapart - 2.000€" #. type: Attribute 'title' of: <div><p> @@ -421,17 +421,17 @@ msgstr "2020" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.857€" -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "Anonyme Spende - 1.857€" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "" #. type: Content of: <div><p> @@ -441,61 +441,61 @@ msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.433€" -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "Anonyme Spende - 1.433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2.000€" -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "Mediapart - 2.000€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.161€" -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "Anonyme Spende - 1.161€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.857€" -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "Anonyme Spende - 1.857€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> @@ -545,11 +545,11 @@ msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10.000 – $50.000" -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "$10.000 – $50.000" #. type: Attribute 'title' of: <div><p> -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "" #. type: Content of: <div><p> @@ -559,7 +559,7 @@ msgstr "[[!img privcoin.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> @@ -569,7 +569,7 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - 2.000€" -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "Eine Einzelperson - 2.000€" #. type: Attribute 'title' of: <div><p> @@ -581,7 +581,7 @@ msgstr "Eine Einzelperson - $5.000" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - 2.000€" -msgid "An individual - 3 000€" +msgid "An individual - 3 000€" msgstr "Eine Einzelperson - 2.000€" #. type: Attribute 'title' of: <div><p> @@ -596,14 +596,14 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy -#| msgid "An individual - 2.000€" -msgid "An individual - 1 000€" -msgstr "Eine Einzelperson - 2.000€" +#| msgid "An individual - $2.000" +msgid "An individual - 1 000€" +msgstr "Eine Einzelperson - $2.000" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - 2.000€" -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "Eine Einzelperson - 2.000€" #. type: Attribute 'title' of: <div><p> @@ -675,7 +675,7 @@ msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -687,7 +687,7 @@ msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Lush Digital Fund - 11.000€" -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "Lush Digital Fund - 11.000€" #. type: Content of: <div><p> @@ -745,7 +745,7 @@ msgstr "2017" #. type: Content of: <p> #, fuzzy #| msgid "$50.000 – $99.000" -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "$50.000 – $99.000" #. type: Attribute 'title' of: <div><p> @@ -827,19 +827,19 @@ msgstr "Open Technology Fund - $208.800" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 11.609€" -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "Anonyme Spende - 11.609€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.902€" -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "Anonyme Spende - 2.902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2.000€" -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "Mediapart - 2.000€" #. type: Content of: <div><p> @@ -849,25 +849,25 @@ msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.554€" -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "Anonyme Spende - 2.554€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.857€" -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "Anonyme Spende - 1.857€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.433€" -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "Anonyme Spende - 1.433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1.161€" -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "Anonyme Spende - 1.161€" #. type: Content of: <p> @@ -891,7 +891,7 @@ msgstr "2015" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Hivos International - 70.000€" -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "Hivos International - 70.000€" #. type: Content of: <div><p> @@ -939,7 +939,7 @@ msgstr "2014" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Access Now - 50.000€" -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "Access Now - 50.000€" #. type: Content of: <div><p> @@ -965,7 +965,7 @@ msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Förderung Freier Information und Software - 5.000€" -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "Förderung Freier Information und Software - 5.000€" #. type: Content of: <div><p> @@ -1033,23 +1033,23 @@ msgstr "2010" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Tor - 8.500€" -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "Tor - 8.500€" #, fuzzy -#~| msgid "An individual - $2.000" -#~ msgid "An individual - 2 000€" -#~ msgstr "Eine Einzelperson - $2.000" +#~| msgid "An individual - 2.000€" +#~ msgid "An individual - 2 000€" +#~ msgstr "Eine Einzelperson - 2.000€" #, fuzzy #~| msgid "An individual - 2.000€" -#~ msgid "An individual - 3 000€" +#~ msgid "An individual - 3 000€" #~ msgstr "Eine Einzelperson - 2.000€" #, fuzzy -#~| msgid "An individual - $2.000" -#~ msgid "An individual - 1 000€" -#~ msgstr "Eine Einzelperson - $2.000" +#~| msgid "An individual - 2.000€" +#~ msgid "An individual - 1 000€" +#~ msgstr "Eine Einzelperson - 2.000€" #, fuzzy #~| msgid "Anonymous donation - 2.902€" diff --git a/wiki/src/sponsors.es.po b/wiki/src/sponsors.es.po index d01c6aa6eaa..994744e68fd 100644 --- a/wiki/src/sponsors.es.po +++ b/wiki/src/sponsors.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -98,13 +98,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$50 000 – $99 999" -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "$50 000 – $99 999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "Donación anónima - 1 433€" #. type: Content of: <div><p> @@ -114,13 +114,13 @@ msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $49 999" -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "$10 000 – $49 999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Nym - 10 000€" -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "Nym - 10 000€" #. type: Content of: <div><p> @@ -132,13 +132,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$1 000 – $9 999" -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "$1 000 – $9 999" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.5 btc" -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "Donación anónima - 0.5 btc" #. type: Attribute 'title' of: <div><p> @@ -156,14 +156,14 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy -#| msgid "An individual - 2 000€" -msgid "An individual - 2 000€" -msgstr "Una persona - 2.000€" +#| msgid "An individual - $2 000" +msgid "An individual - 2 000€" +msgstr "Una persona - $2 000" #. type: Attribute 'title' of: <div><p> #, fuzzy @@ -180,13 +180,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.5 btc" -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "Donación anónima - 0.5 btc" #. type: Attribute 'title' of: <div><p> @@ -206,13 +206,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "Donación anónima - 1 433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 200€" -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "Freiheitsfoo - 1.200€" #. type: Content of: <div><p> @@ -332,19 +332,19 @@ msgstr "2021" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.1 btc" -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "Donación anónima - 0.1 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "Donación anónima - 1 433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "RIPE NCC - 50 000€" -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "RIPE NCC - 50 000€" #. type: Content of: <div><p> @@ -364,7 +364,7 @@ msgstr "[[!img internews.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "Donación anónima - 0.062 btc" #. type: Content of: <div><p> @@ -374,7 +374,7 @@ msgstr "[[!img aspiration.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 000€" -msgid "Anonymous donation - 2 000€" +msgid "Anonymous donation - 2 000€" msgstr "Donación anónima - 2 000€" #. type: Attribute 'title' of: <div><p> @@ -390,7 +390,7 @@ msgstr "[[!img word-solver.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 200€" -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "Freiheitsfoo - 1.200€" #. type: Attribute 'title' of: <div><p> @@ -416,19 +416,19 @@ msgstr "2020" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 50 000€" -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "Donación anónima - 50 000€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.1 btc" -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "Donación anónima - 0.1 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 9 448€" -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "ISC - 9 448€" #. type: Content of: <div><p> @@ -438,61 +438,61 @@ msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.5 btc" -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "Donación anónima - 0.5 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "Donación anónima - 1 433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 200€" -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "Freiheitsfoo - 1.200€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 161€" -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "Donación anónima - 1 161€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.1 btc" -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "Donación anónima - 0.1 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.5 btc" -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "Donación anónima - 0.5 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.5 btc" -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "Donación anónima - 0.5 btc" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> @@ -538,13 +538,13 @@ msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "PrivCoin - 6 bitcoins" -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "PrivCoin - 6 bitcoins" #. type: Content of: <div><p> @@ -554,7 +554,7 @@ msgstr "[[!img privcoin.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.062 btc" -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "Donación anónima - 0.062 btc" #. type: Attribute 'title' of: <div><p> @@ -564,7 +564,7 @@ msgstr "Un empleado de Google (con donación igualada por la empresa) - $12 000" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - 7 533€" -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "Una persona - 7 533€" #. type: Attribute 'title' of: <div><p> @@ -573,9 +573,9 @@ msgstr "Una persona - $5 000" #. type: Attribute 'title' of: <div><p> #, fuzzy -#| msgid "An individual - 2 000€" -msgid "An individual - 3 000€" -msgstr "Una persona - 2.000€" +#| msgid "An individual - 3 000€" +msgid "An individual - 3 000€" +msgstr "Una persona - 3.000€" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 0.35 bitcoins" @@ -587,14 +587,14 @@ msgstr "ThinkPenguin - $1.200" #. type: Attribute 'title' of: <div><p> #, fuzzy -#| msgid "An individual - 1 000€" -msgid "An individual - 1 000€" -msgstr "Una persona - 1.000€" +#| msgid "An individual - $1 000" +msgid "An individual - 1 000€" +msgstr "Una persona - $2 000" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "A group of people - 1 000€" -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "Un grupo de personas - 1 000€" #. type: Attribute 'title' of: <div><p> @@ -660,7 +660,7 @@ msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 20 743€" -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "ISC - 20 743€" #. type: Attribute 'title' of: <div><p> @@ -670,7 +670,7 @@ msgstr "Donación anónima - 4.5 bitcoins" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Lush Digital Fund - 11 000€" -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "Lush Digital Fund - 11 000€" #. type: Content of: <div><p> @@ -716,7 +716,7 @@ msgstr "2017" #. type: Content of: <p> #, fuzzy #| msgid "$50 000 – $99 000" -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "$50 000 – $99 000" #. type: Attribute 'title' of: <div><p> @@ -778,19 +778,19 @@ msgstr "Open Technology Fund - $208 800" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 11 609€" -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "Donación anónima - 11 609€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 902€" -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "Donación anónima - 2 902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2 000€" -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "Mediapart - 2 000€" #. type: Content of: <div><p> @@ -800,25 +800,25 @@ msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 554€" -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "Donación anónima - 2 554€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 857€" -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "Donación anónima - 1 857€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "Donación anónima - 1 433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 161€" -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "Donación anónima - 1 161€" #. type: Content of: <p> @@ -840,7 +840,7 @@ msgstr "2015" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Hivos International - 70 000€" -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "Hivos International - 70 000€" #. type: Content of: <div><p> @@ -882,7 +882,7 @@ msgstr "2014" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Access Now - 50 000€" -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "Access Now - 50 000€" #. type: Content of: <div><p> @@ -904,7 +904,7 @@ msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Förderung Freier Information und Software - 5 000€" -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "Förderung Freier Information und Software - 5 000€" #. type: Content of: <div><p> @@ -962,23 +962,23 @@ msgstr "2010" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Tor - 8 500€" -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "Tor - 8 500€" #, fuzzy -#~| msgid "An individual - $2 000" -#~ msgid "An individual - 2 000€" -#~ msgstr "Una persona - $2 000" +#~| msgid "An individual - 2 000€" +#~ msgid "An individual - 2 000€" +#~ msgstr "Una persona - 2.000€" #, fuzzy -#~| msgid "An individual - 3 000€" -#~ msgid "An individual - 3 000€" -#~ msgstr "Una persona - 3.000€" +#~| msgid "An individual - 2 000€" +#~ msgid "An individual - 3 000€" +#~ msgstr "Una persona - 2.000€" #, fuzzy -#~| msgid "An individual - $1 000" -#~ msgid "An individual - 1 000€" -#~ msgstr "Una persona - $2 000" +#~| msgid "An individual - 1 000€" +#~ msgid "An individual - 1 000€" +#~ msgstr "Una persona - 1.000€" #~ msgid "Anonymous donation - 300 moneros" #~ msgstr "Donación anónima - 300 moneros" diff --git a/wiki/src/sponsors.fr.po b/wiki/src/sponsors.fr.po index 48a59f710bd..3f3f154e49c 100644 --- a/wiki/src/sponsors.fr.po +++ b/wiki/src/sponsors.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-03 16:33+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -88,13 +88,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$50 000 – $99 999" -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "50 000$ – 99 999$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 60 ethereums = 86 880€" -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "Don anonyme - 60 ethereums = 86 880€" #. type: Content of: <div><p> @@ -104,13 +104,13 @@ msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $49 999" -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "10 000$ – 49 999$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Nym - 10 000€" -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "Nym - 10 000€" #. type: Content of: <div><p> @@ -122,13 +122,13 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$1 000 – $9 999" -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "1 000$ – 9 999$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.35 bitcoins = 5 694€" -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "Don anonyme - 0,35 bitcoins = 5 694€" #. type: Attribute 'title' of: <div><p> @@ -148,13 +148,11 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 20 moneros = 2 767€" -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "Don anonyme - 20 moneros = 2 767€" #. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "An individual - 2 000€" -msgid "An individual - 2 000€" +msgid "An individual - 2 000€" msgstr "Un individu - 2 000€" #. type: Attribute 'title' of: <div><p> @@ -173,13 +171,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 10 moneros = 1 549€" -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "Don anonyme - 10 moneros = 1 549€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.09 bitcoins = 1 535€" -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "Don anonyme - 0,09 bitcoins = 1 535€" #. type: Attribute 'title' of: <div><p> @@ -197,13 +195,13 @@ msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 337€" -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "Don anonyme - 1 337€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 205€" -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "Freiheitsfoo - 1 205€" #. type: Content of: <div><p> @@ -315,19 +313,19 @@ msgstr "2021" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 7 bitcoins = 235 000€" -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "Don anonyme - 7 bitcoins = 235 000€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 24 ethereums = 85 909€" -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "Don anonyme - 24 ethereums = 85 909€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "RIPE NCC - 50 000€" -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "RIPE NCC - 50 000€" #. type: Content of: <div><p> @@ -345,7 +343,7 @@ msgstr "[[!img internews.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 100 moneros = 19 611€" -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "Don anonyme - 100 moneros = 19 611€" #. type: Content of: <div><p> @@ -355,7 +353,7 @@ msgstr "[[!img aspiration.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 000€" -msgid "Anonymous donation - 2 000€" +msgid "Anonymous donation - 2 000€" msgstr "Don anonyme - 2 000€" #. type: Attribute 'title' of: <div><p> @@ -369,7 +367,7 @@ msgstr "[[!img word-solver.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 100€" -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "Freiheitsfoo - 1 100€" #. type: Attribute 'title' of: <div><p> @@ -391,19 +389,19 @@ msgstr "2020" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 50 000€" -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "Don anonyme - 50 000€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.11 bitcoins = 34 694€" -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "Don anonyme - 2,11 bitcoins = 34 694€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 9 448€" -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "ISC - 9 448€" #. type: Content of: <div><p> @@ -413,61 +411,61 @@ msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 69 moneros = 8 903€" -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "Don anonyme - 69 moneros = 8 903€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.33 bitcoins = 4 445€" -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "Don anonyme - 0,33 bitcoins = 4 445€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 23 moneros = 2 886€" -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "Don anonyme - 23 moneros = 2 886€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2.8 ethereums = 1 463€" -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "Don anonyme - 2,8 ethereums = 1 463€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Freiheitsfoo - 1 200€" -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "Freiheitsfoo - 1 200€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 3.3 ethereums = 1 100€" -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "Don anonyme - 3,3 ethereums = 1 100€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.1 bitcoins = 1 080€" -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "Don anonyme - 0,1 bitcoins = 1 080€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.75 bitcoins = 1 022€" -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "Don anonyme - 0,75 bitcoins = 1 022€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 0.05 bitcoins = 1 002€" -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "Don anonyme - 0,05 bitcoins = 1 002€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 20 moneros = 987€" -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "Don anonyme - 20 moneros = 987€" #. type: Attribute 'title' of: <div><p> @@ -513,13 +511,13 @@ msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "10 000$ – 50 000$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "PrivCoin - 6 bitcoins = 46 170€" -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "PrivCoin - 6 bitcoins = 46 170€" #. type: Content of: <div><p> @@ -529,7 +527,7 @@ msgstr "[[!img privcoin.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 300 moneros = 17 010€" -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "Don anonyme - 300 moneros = 17 010€" #. type: Attribute 'title' of: <div><p> @@ -539,7 +537,7 @@ msgstr "Une personne de chez Google (avec le don correspondant) - 12 000$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "An individual - 7 533€" -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "Un individu - 7 533€" #. type: Attribute 'title' of: <div><p> @@ -547,10 +545,8 @@ msgid "An individual - $5 000" msgstr "Un individu - 5 000$" #. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "An individual - 2 000€" -msgid "An individual - 3 000€" -msgstr "Un individu - 2 000€" +msgid "An individual - 3 000€" +msgstr "Un individu - 3 000€" #. type: Attribute 'title' of: <div><p> msgid "Anonymous donation - 0.35 bitcoins" @@ -561,15 +557,13 @@ msgid "ThinkPenguin - $1 200" msgstr "ThinkPenguin - 1 200$" #. type: Attribute 'title' of: <div><p> -#, fuzzy -#| msgid "An individual - 1 000€" -msgid "An individual - 1 000€" +msgid "An individual - 1 000€" msgstr "Un individu - 1 000€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "A group of people - 1 000€" -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "Un groupe de personnes - 1 000€" #. type: Attribute 'title' of: <div><p> @@ -635,7 +629,7 @@ msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 20 743€" -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "ISC - 20 743€" #. type: Attribute 'title' of: <div><p> @@ -645,7 +639,7 @@ msgstr "Don anonyme - 4,5 bitcoins" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Lush Digital Fund - 11 000€" -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "Lush Digital Fund - 11 000€" #. type: Content of: <div><p> @@ -691,7 +685,7 @@ msgstr "2017" #. type: Content of: <p> #, fuzzy #| msgid "$50 000 – $99 000" -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "50 000$ – 99 000$" #. type: Attribute 'title' of: <div><p> @@ -753,19 +747,19 @@ msgstr "Open Technology Fund - 208 800$" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 11 609€" -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "Don anonyme - 11 609€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 902€" -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "Don anonyme - 2 902€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Mediapart - 2 000€" -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "Mediapart - 2 000€" #. type: Content of: <div><p> @@ -775,25 +769,25 @@ msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 2 554€" -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "Don anonyme - 2 554€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 857€" -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "Don anonyme - 1 857€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 433€" -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "Don anonyme - 1 433€" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Anonymous donation - 1 161€" -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "Don anonyme - 1 161€" #. type: Content of: <p> @@ -815,7 +809,7 @@ msgstr "2015" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Hivos International - 70 000€" -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "Hivos International - 70 000€" #. type: Content of: <div><p> @@ -858,7 +852,7 @@ msgstr "2014" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Access Now - 50 000€" -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "Access Now - 50 000€" #. type: Content of: <div><p> @@ -880,7 +874,7 @@ msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Förderung Freier Information und Software - 5 000€" -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "Förderung Freier Information und Software - 5 000€" #. type: Content of: <div><p> @@ -938,16 +932,22 @@ msgstr "2010" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "Tor - 8 500€" -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "Tor - 8 500€" -#~ msgid "An individual - 2 000€" +#, fuzzy +#~| msgid "An individual - 2 000€" +#~ msgid "An individual - 2 000€" #~ msgstr "Un individu - 2 000€" -#~ msgid "An individual - 3 000€" -#~ msgstr "Un individu - 3 000€" +#, fuzzy +#~| msgid "An individual - 2 000€" +#~ msgid "An individual - 3 000€" +#~ msgstr "Un individu - 2 000€" -#~ msgid "An individual - 1 000€" +#, fuzzy +#~| msgid "An individual - 1 000€" +#~ msgid "An individual - 1 000€" #~ msgstr "Un individu - 1 000€" #~ msgid "Anonymous donation - 300 moneros" diff --git a/wiki/src/sponsors.it.po b/wiki/src/sponsors.it.po index 5730a0ae521..543b6891499 100644 --- a/wiki/src/sponsors.it.po +++ b/wiki/src/sponsors.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -78,11 +78,11 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "" #. type: Content of: <div><p> @@ -92,11 +92,11 @@ msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "" #. type: Content of: <div><p> @@ -108,11 +108,11 @@ msgstr "" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -128,11 +128,11 @@ msgstr "" "alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +msgid "An individual - 2 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -146,11 +146,11 @@ msgstr "" "<a href=\"https://torproject.org/\">[[!img tor.png link=\"no\" alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -166,11 +166,11 @@ msgstr "" "alt=\"\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "" #. type: Content of: <div><p> @@ -280,15 +280,15 @@ msgid "2021" msgstr "2021" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -304,7 +304,7 @@ msgid "[[!img internews.png link=\"no\" alt=\"\"]]" msgstr "[[!img internews.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "" #. type: Content of: <div><p> @@ -312,8 +312,10 @@ msgid "[[!img aspiration.png link=\"no\" alt=\"\"]]" msgstr "[[!img aspiration.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 000€" -msgstr "" +#, fuzzy +#| msgid "Handshake Foundation - $200 000" +msgid "Anonymous donation - 2 000€" +msgstr "Handshake Foundation - $200 000" #. type: Attribute 'title' of: <div><p> msgid "Tor - $1 575" @@ -324,7 +326,7 @@ msgid "[[!img word-solver.png link=\"no\" alt=\"\"]]" msgstr "[[!img word-solver.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -344,17 +346,17 @@ msgid "2020" msgstr "2020" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 20 743€" -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "ISC - 20 743€" #. type: Content of: <div><p> @@ -362,43 +364,43 @@ msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -444,11 +446,11 @@ msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "" #. type: Content of: <div><p> @@ -456,7 +458,7 @@ msgid "[[!img privcoin.png link=\"no\" alt=\"\"]]" msgstr "[[!img privcoin.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -464,7 +466,7 @@ msgid "A Google employee (with matching donation) - $12 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -472,7 +474,7 @@ msgid "An individual - $5 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 3 000€" +msgid "An individual - 3 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -484,11 +486,11 @@ msgid "ThinkPenguin - $1 200" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +msgid "An individual - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -554,7 +556,7 @@ msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> #, fuzzy #| msgid "ISC - 20 743€" -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "ISC - 20 743€" #. type: Attribute 'title' of: <div><p> @@ -562,7 +564,7 @@ msgid "Anonymous donation - 4.5 bitcoins" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "" #. type: Content of: <div><p> @@ -608,7 +610,7 @@ msgstr "2017" #. type: Content of: <p> #, fuzzy #| msgid "$10 000 – $50 000" -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "$10 000 – $50 000" #. type: Attribute 'title' of: <div><p> @@ -668,15 +670,15 @@ msgid "Open Technology Fund - $208 800" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "" #. type: Content of: <div><p> @@ -684,19 +686,19 @@ msgid "[[!img mediapart.png link=\"no\" alt=\"\"]]" msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "" #. type: Content of: <p> @@ -716,7 +718,7 @@ msgid "2015" msgstr "2015" #. type: Attribute 'title' of: <div><p> -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "" #. type: Content of: <div><p> @@ -756,7 +758,7 @@ msgid "2014" msgstr "2014" #. type: Attribute 'title' of: <div><p> -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -776,7 +778,7 @@ msgid "[[!img openitp.png link=\"no\" alt=\"\"]]" msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "" #. type: Content of: <div><p> @@ -832,7 +834,7 @@ msgid "2010" msgstr "2010" #. type: Attribute 'title' of: <div><p> -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "" #~ msgid "" diff --git a/wiki/src/sponsors.pt.po b/wiki/src/sponsors.pt.po index 9f5f8a9d7ef..56639ab590a 100644 --- a/wiki/src/sponsors.pt.po +++ b/wiki/src/sponsors.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: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 14:29+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -74,11 +74,11 @@ msgid "" msgstr "" #. type: Content of: <p> -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "" #. type: Content of: <div><p> @@ -86,11 +86,11 @@ msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Content of: <p> -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "" #. type: Content of: <div><p> @@ -99,11 +99,11 @@ msgid "" msgstr "" #. type: Content of: <p> -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -117,11 +117,11 @@ msgid "" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +msgid "An individual - 2 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -134,11 +134,11 @@ msgid "" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -152,11 +152,11 @@ msgid "" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "" #. type: Content of: <div><p> @@ -256,15 +256,15 @@ msgid "2021" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -280,7 +280,7 @@ msgid "[[!img internews.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "" #. type: Content of: <div><p> @@ -288,7 +288,7 @@ msgid "[[!img aspiration.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 000€" +msgid "Anonymous donation - 2 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -300,7 +300,7 @@ msgid "[[!img word-solver.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -320,15 +320,15 @@ msgid "2020" msgstr "2020" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "" #. type: Content of: <div><p> @@ -336,43 +336,43 @@ msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -416,11 +416,11 @@ msgid "[[!img mozilla.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Content of: <p> -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "" #. type: Content of: <div><p> @@ -428,7 +428,7 @@ msgid "[[!img privcoin.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -436,7 +436,7 @@ msgid "A Google employee (with matching donation) - $12 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -444,7 +444,7 @@ msgid "An individual - $5 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 3 000€" +msgid "An individual - 3 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -456,11 +456,11 @@ msgid "ThinkPenguin - $1 200" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +msgid "An individual - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -524,7 +524,7 @@ msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -532,7 +532,7 @@ msgid "Anonymous donation - 4.5 bitcoins" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "" #. type: Content of: <div><p> @@ -576,7 +576,7 @@ msgid "2017" msgstr "2017" #. type: Content of: <p> -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -636,15 +636,15 @@ msgid "Open Technology Fund - $208 800" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "" #. type: Content of: <div><p> @@ -652,19 +652,19 @@ msgid "[[!img mediapart.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "" #. type: Content of: <p> @@ -684,7 +684,7 @@ msgid "2015" msgstr "2015" #. type: Attribute 'title' of: <div><p> -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "" #. type: Content of: <div><p> @@ -724,7 +724,7 @@ msgid "2014" msgstr "2014" #. type: Attribute 'title' of: <div><p> -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -744,7 +744,7 @@ msgid "[[!img openitp.png link=\"no\" alt=\"\"]]" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "" #. type: Content of: <div><p> @@ -800,5 +800,5 @@ msgid "2010" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "" diff --git a/wiki/src/sponsors.ru.po b/wiki/src/sponsors.ru.po index f5e331cfc28..4ce1e92075e 100644 --- a/wiki/src/sponsors.ru.po +++ b/wiki/src/sponsors.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-16 13:28+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -75,11 +75,11 @@ msgid "" msgstr "" #. type: Content of: <p> -msgid "$50 000 – $99 999" +msgid "$50 000 – $99 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 60 ethereums = 86 880€" +msgid "Anonymous donation - 60 ethereums = 86 880€" msgstr "" #. type: Content of: <div><p> @@ -87,11 +87,11 @@ msgid "[[!img anonymous.png link=\"no\" alt=\"\"]]" msgstr "[[!img anonymous.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> -msgid "$10 000 – $49 999" +msgid "$10 000 – $49 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Nym - 10 000€" +msgid "Nym - 10 000€" msgstr "" #. type: Content of: <div><p> @@ -101,11 +101,11 @@ msgid "" msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" #. type: Content of: <p> -msgid "$1 000 – $9 999" +msgid "$1 000 – $9 999" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.35 bitcoins = 5 694€" +msgid "Anonymous donation - 0.35 bitcoins = 5 694€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -120,11 +120,11 @@ msgid "" msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 2 767€" +msgid "Anonymous donation - 20 moneros = 2 767€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 2 000€" +msgid "An individual - 2 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -138,11 +138,11 @@ msgid "" msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 10 moneros = 1 549€" +msgid "Anonymous donation - 10 moneros = 1 549€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.09 bitcoins = 1 535€" +msgid "Anonymous donation - 0.09 bitcoins = 1 535€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -157,11 +157,11 @@ msgid "" msgstr "<a href=\"https://torproject.org\">[[!img tor.png link=\"no\"]]</a>" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 337€" +msgid "Anonymous donation - 1 337€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 250€" +msgid "freiheitsfoo - 1 250€" msgstr "" #. type: Content of: <div><p> @@ -267,15 +267,15 @@ msgid "2021" msgstr "2021" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 7 bitcoins = 235 000€" +msgid "Anonymous donation - 7 bitcoins = 235 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 24 ethereums = 85 909€" +msgid "Anonymous donation - 24 ethereums = 85 909€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "RIPE NCC - 50 000€" +msgid "RIPE NCC - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -291,7 +291,7 @@ msgid "[[!img internews.png link=\"no\" alt=\"\"]]" msgstr "[[!img internews.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 100 moneros = 19 611€" +msgid "Anonymous donation - 100 moneros = 19 611€" msgstr "" #. type: Content of: <div><p> @@ -299,7 +299,7 @@ msgid "[[!img aspiration.png link=\"no\" alt=\"\"]]" msgstr "[[!img aspiration.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 000€" +msgid "Anonymous donation - 2 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -311,7 +311,7 @@ msgid "[[!img word-solver.png link=\"no\" alt=\"\"]]" msgstr "[[!img word-solver.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 100€" +msgid "freiheitsfoo - 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -331,15 +331,15 @@ msgid "2020" msgstr "2020" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 50 000€" +msgid "Anonymous donation - 50 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.11 bitcoins = 34 694€" +msgid "Anonymous donation - 2.11 bitcoins = 34 694€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 9 448€" +msgid "ISC - 9 448€" msgstr "" #. type: Content of: <div><p> @@ -347,43 +347,43 @@ msgid "[[!img isc.png link=\"no\" alt=\"\"]]" msgstr "[[!img isc.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 69 moneros = 8 903€" +msgid "Anonymous donation - 69 moneros = 8 903€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.33 bitcoins = 4 445€" +msgid "Anonymous donation - 0.33 bitcoins = 4 445€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 23 moneros = 2 886€" +msgid "Anonymous donation - 23 moneros = 2 886€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2.8 ethereums = 1 463€" +msgid "Anonymous donation - 2.8 ethereums = 1 463€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "freiheitsfoo - 1 200€" +msgid "freiheitsfoo - 1 200€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 3.3 ethereums = 1 100€" +msgid "Anonymous donation - 3.3 ethereums = 1 100€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.1 bitcoins = 1 080€" +msgid "Anonymous donation - 0.1 bitcoins = 1 080€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.75 bitcoins = 1 022€" +msgid "Anonymous donation - 0.75 bitcoins = 1 022€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 0.05 bitcoins = 1 002€" +msgid "Anonymous donation - 0.05 bitcoins = 1 002€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 20 moneros = 987€" +msgid "Anonymous donation - 20 moneros = 987€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -427,11 +427,11 @@ msgid "[[!img mozilla.png link=\"no\" alt=\"\"]]" msgstr "[[!img mozilla.png link=\"no\" alt=\"\"]]" #. type: Content of: <p> -msgid "$10 000 – $50 000" +msgid "$10 000 – $50 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "PrivCoin - 6 bitcoins = 46 170€" +msgid "PrivCoin - 6 bitcoins = 46 170€" msgstr "" #. type: Content of: <div><p> @@ -439,7 +439,7 @@ msgid "[[!img privcoin.png link=\"no\" alt=\"\"]]" msgstr "[[!img privcoin.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 300 moneros = 17 010€" +msgid "Anonymous donation - 300 moneros = 17 010€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -447,7 +447,7 @@ msgid "A Google employee (with matching donation) - $12 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 7 533€" +msgid "An individual - 7 533€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -455,7 +455,7 @@ msgid "An individual - $5 000" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 3 000€" +msgid "An individual - 3 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -467,11 +467,11 @@ msgid "ThinkPenguin - $1 200" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "An individual - 1 000€" +msgid "An individual - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "A group of people - 1 000€" +msgid "A group of people - 1 000€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -535,7 +535,7 @@ msgid "[[!img ddg.png link=\"no\" alt=\"\"]]" msgstr "[[!img ddg.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "ISC - 20 743€" +msgid "ISC - 20 743€" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -543,7 +543,7 @@ msgid "Anonymous donation - 4.5 bitcoins" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Lush Digital Fund - 11 000€" +msgid "Lush Digital Fund - 11 000€" msgstr "" #. type: Content of: <div><p> @@ -587,7 +587,7 @@ msgid "2017" msgstr "2017" #. type: Content of: <p> -msgid "$50 000 – $99 000" +msgid "$50 000 – $99 000" msgstr "" #. type: Attribute 'title' of: <div><p> @@ -647,15 +647,15 @@ msgid "Open Technology Fund - $208 800" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 11 609€" +msgid "Anonymous donation - 11 609€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 902€" +msgid "Anonymous donation - 2 902€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Mediapart - 2 000€" +msgid "Mediapart - 2 000€" msgstr "" #. type: Content of: <div><p> @@ -663,19 +663,19 @@ msgid "[[!img mediapart.png link=\"no\" alt=\"\"]]" msgstr "[[!img mediapart.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 2 554€" +msgid "Anonymous donation - 2 554€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 857€" +msgid "Anonymous donation - 1 857€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 433€" +msgid "Anonymous donation - 1 433€" msgstr "" #. type: Attribute 'title' of: <div><p> -msgid "Anonymous donation - 1 161€" +msgid "Anonymous donation - 1 161€" msgstr "" #. type: Content of: <p> @@ -695,7 +695,7 @@ msgid "2015" msgstr "2015" #. type: Attribute 'title' of: <div><p> -msgid "Hivos International - 70 000€" +msgid "Hivos International - 70 000€" msgstr "" #. type: Content of: <div><p> @@ -735,7 +735,7 @@ msgid "2014" msgstr "2014" #. type: Attribute 'title' of: <div><p> -msgid "Access Now - 50 000€" +msgid "Access Now - 50 000€" msgstr "" #. type: Content of: <div><p> @@ -755,7 +755,7 @@ msgid "[[!img openitp.png link=\"no\" alt=\"\"]]" msgstr "[[!img openitp.png link=\"no\" alt=\"\"]]" #. type: Attribute 'title' of: <div><p> -msgid "Förderung Freier Information und Software - 5 000€" +msgid "Förderung Freier Information und Software - 5 000€" msgstr "" #. type: Content of: <div><p> @@ -811,7 +811,7 @@ msgid "2010" msgstr "2010" #. type: Attribute 'title' of: <div><p> -msgid "Tor - 8 500€" +msgid "Tor - 8 500€" msgstr "" #, fuzzy diff --git a/wiki/src/support/known_issues/graphics.de.po b/wiki/src/support/known_issues/graphics.de.po index 24769d0d1f5..f9c810260cb 100644 --- a/wiki/src/support/known_issues/graphics.de.po +++ b/wiki/src/support/known_issues/graphics.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-12-25 13:44+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -382,8 +382,8 @@ msgstr "" #. type: Plain text msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.es.po b/wiki/src/support/known_issues/graphics.es.po index 623fc19f82e..242cfd491d3 100644 --- a/wiki/src/support/known_issues/graphics.es.po +++ b/wiki/src/support/known_issues/graphics.es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-03-09 21:27+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -467,8 +467,8 @@ msgstr "" #. type: Plain text msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.fr.po b/wiki/src/support/known_issues/graphics.fr.po index a8ba01cc782..843bf3dd742 100644 --- a/wiki/src/support/known_issues/graphics.fr.po +++ b/wiki/src/support/known_issues/graphics.fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2023-07-23 10:37+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: \n" @@ -461,8 +461,8 @@ msgstr " i915.force_probe=MODÈLE\n" #| "… replacing *MODEL* with the 4 characters you see after `8086:` on the " #| "error message." msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" "… remplacer *MODÈLE* par les 4 caractères que vous voyez après `8086:` dans " "le message d'erreur." diff --git a/wiki/src/support/known_issues/graphics.it.po b/wiki/src/support/known_issues/graphics.it.po index 1a38e1f414b..5dc30e9ec4c 100644 --- a/wiki/src/support/known_issues/graphics.it.po +++ b/wiki/src/support/known_issues/graphics.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -397,8 +397,8 @@ msgstr "" #. type: Plain text msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.pt.po b/wiki/src/support/known_issues/graphics.pt.po index 8950db99a1a..223a36f2928 100644 --- a/wiki/src/support/known_issues/graphics.pt.po +++ b/wiki/src/support/known_issues/graphics.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2022-12-20 14:06+0000\n" "Last-Translator: xin <xin@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -402,8 +402,8 @@ msgstr "" #. type: Plain text msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" #. type: Plain text diff --git a/wiki/src/support/known_issues/graphics.ru.po b/wiki/src/support/known_issues/graphics.ru.po index c2355a5aebf..a2bd04ea36e 100644 --- a/wiki/src/support/known_issues/graphics.ru.po +++ b/wiki/src/support/known_issues/graphics.ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2023-08-14 13:52+0200\n" +"POT-Creation-Date: 2023-09-04 09:56+0200\n" "PO-Revision-Date: 2020-12-25 13:44+0000\n" "Last-Translator: emmapeel <emma.peel@riseup.net>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -381,8 +381,8 @@ msgstr "" #. type: Plain text msgid "" -"… replacing *MODEL* with the 4 characters you see after `8086:` on the " -"error message." +"… replacing *MODEL* with the 4 characters you see after `8086:` on the error " +"message." msgstr "" #. type: Plain text -- GitLab From 84972bc40780fb8bee068a8d20aa18cb8a109057 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 09:10:00 +0000 Subject: [PATCH 105/119] Updating SquashFS sort file --- config/binary_rootfs/squashfs.sort | 9982 ++++++++++++++-------------- 1 file changed, 5133 insertions(+), 4849 deletions(-) diff --git a/config/binary_rootfs/squashfs.sort b/config/binary_rootfs/squashfs.sort index 59f50535101..8137927b4fe 100644 --- a/config/binary_rootfs/squashfs.sort +++ b/config/binary_rootfs/squashfs.sort @@ -1,1206 +1,1207 @@ -bin/dash 32767 -etc/ld.so.cache 32766 -bin/run-parts 32765 +etc/ld.so.cache 32767 +bin/cat 32766 +bin/uname 32765 bin/sed 32764 -bin/cat 32763 -bin/uname 32762 -bin/grep 32761 -bin/mkdir 32760 -bin/touch 32759 -bin/udevadm 32758 -bin/egrep 32757 -etc/laptop-mode/conf.d/ac97-powersave.conf 32756 -etc/laptop-mode/conf.d/auto-hibernate.conf 32755 -etc/laptop-mode/conf.d/battery-level-polling.conf 32754 -etc/laptop-mode/conf.d/bluetooth.conf 32753 -etc/laptop-mode/conf.d/configuration-file-control.conf 32752 -etc/laptop-mode/conf.d/cpufreq.conf 32751 -etc/laptop-mode/conf.d/cpuhotplug.conf 32750 -etc/laptop-mode/conf.d/dpms-standby.conf 32749 -etc/laptop-mode/conf.d/eee-superhe.conf 32748 -etc/laptop-mode/conf.d/ethernet.conf 32747 -etc/laptop-mode/conf.d/exec-commands.conf 32746 -etc/laptop-mode/conf.d/hal-polling.conf 32745 -etc/laptop-mode/conf.d/intel-hda-powersave.conf 32744 -etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 32743 -etc/laptop-mode/conf.d/intel_pstate.conf 32742 -etc/laptop-mode/conf.d/kbd-backlight.conf 32741 -etc/laptop-mode/conf.d/lcd-brightness.conf 32740 -etc/laptop-mode/conf.d/nmi-watchdog.conf 32739 -etc/laptop-mode/conf.d/nouveau.conf 32738 -etc/laptop-mode/conf.d/pcie-aspm.conf 32737 -etc/laptop-mode/conf.d/radeon-dpm.conf 32736 -etc/laptop-mode/conf.d/runtime-pm.conf 32735 -etc/laptop-mode/conf.d/sched-mc-power-savings.conf 32734 -etc/laptop-mode/conf.d/sched-smt-power-savings.conf 32733 -etc/laptop-mode/conf.d/start-stop-programs.conf 32732 -etc/laptop-mode/conf.d/terminal-blanking.conf 32731 -etc/laptop-mode/conf.d/vgaswitcheroo.conf 32730 -etc/laptop-mode/conf.d/video-out.conf 32729 -etc/laptop-mode/conf.d/wireless-ipw-power.conf 32728 -etc/laptop-mode/conf.d/wireless-iwl-power.conf 32727 -etc/laptop-mode/conf.d/wireless-power.conf 32726 -etc/laptop-mode/laptop-mode.conf 32725 -etc/udev/udev.conf 32724 -etc/amnesia/version 32723 -bin/date 32721 -lib/x86_64-linux-gnu/ld-2.31.so 32720 -lib/x86_64-linux-gnu/libc-2.31.so 32719 -usr/lib/locale/locale-archive 32718 -usr/share/zoneinfo/Etc/UTC 32717 -etc/locale.alias 32716 -lib/live/config/0005-nss-systemd 32713 -lib/live/config.sh 32712 -lib/x86_64-linux-gnu/libpcre.so.3.13.3 32711 -lib/x86_64-linux-gnu/libdl-2.31.so 32710 -lib/x86_64-linux-gnu/libpthread-2.31.so 32709 -usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32708 -bin/cp 32706 -lib/x86_64-linux-gnu/libselinux.so.1 32705 -usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253 32704 -usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448 32703 -usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.1 32702 -lib/live/config/0010-debconf 32699 -lib/live/setup-network.sh 32698 -usr/bin/dpkg-query 32697 -var/lib/dpkg/status 32696 -var/lib/dpkg/triggers/File 32695 -var/lib/dpkg/triggers/Unincorp 32694 -lib/live/config/0020-hostname 32693 -etc/hostname 32692 -etc/hosts 32691 -bin/hostname 32690 -lib/live/config/0030-live-debconfig_passwd 32688 -lib/live/config/0030-user-setup 32687 -usr/bin/debconf-set-selections 32685 -usr/bin/perl 32684 -lib/x86_64-linux-gnu/libm-2.31.so 32683 -lib/x86_64-linux-gnu/libcrypt.so.1.1.0 32682 -usr/lib/x86_64-linux-gnu/perl-base/warnings.pm 32681 -usr/lib/x86_64-linux-gnu/perl-base/strict.pm 32680 -usr/share/perl5/Debconf/Db.pm 32679 -usr/share/perl5/Debconf/Log.pm 32678 -usr/lib/x86_64-linux-gnu/perl-base/base.pm 32677 -usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm 32676 -usr/share/perl5/Debconf/Config.pm 32675 -usr/share/perl5/Debconf/Question.pm 32674 -usr/share/perl5/Debconf/Template.pm 32673 -usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm 32672 -usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm 32671 -usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm 32670 -usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so 32669 -usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so 32668 -usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm 32667 -usr/lib/x86_64-linux-gnu/perl-base/Carp.pm 32666 -usr/lib/x86_64-linux-gnu/perl-base/overloading.pm 32665 -usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm 32664 -usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm 32663 -usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm 32662 -usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm 32661 -usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm 32660 -usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm 32659 -usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm 32658 -usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm 32657 -usr/lib/x86_64-linux-gnu/perl-base/IO.pm 32656 -usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so 32655 -usr/share/perl5/Debconf/Gettext.pm 32654 -usr/lib/x86_64-linux-gnu/perl5/5.32/Locale/gettext.pm 32653 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode.pm 32652 -usr/lib/x86_64-linux-gnu/perl-base/constant.pm 32651 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Encode/Encode.so 32650 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Alias.pm 32649 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/MIME/Name.pm 32648 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Storable.pm 32647 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Storable/Storable.so 32646 -usr/lib/x86_64-linux-gnu/perl-base/parent.pm 32645 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Encoding.pm 32644 -usr/lib/x86_64-linux-gnu/perl-base/bytes.pm 32643 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Config.pm 32642 -usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm 32641 -usr/lib/x86_64-linux-gnu/perl-base/Config.pm 32640 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Locale/gettext/gettext.so 32639 -usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm 32638 -usr/lib/x86_64-linux-gnu/perl-base/vars.pm 32637 -usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm 32636 -usr/lib/x86_64-linux-gnu/perl-base/re.pm 32635 -usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so 32634 -usr/share/perl5/Debconf/Iterator.pm 32633 -usr/share/perl5/Debconf/Base.pm 32632 -usr/lib/x86_64-linux-gnu/perl-base/fields.pm 32631 -usr/share/perl5/Debconf/Encoding.pm 32630 -usr/lib/x86_64-linux-gnu/perl5/5.32/Text/Iconv.pm 32629 -usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm 32628 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Text/Iconv/Iconv.so 32627 -usr/bin/locale 32626 -usr/share/perl5/Text/WrapI18N.pm 32625 -usr/lib/x86_64-linux-gnu/perl5/5.32/Text/CharWidth.pm 32624 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Text/CharWidth/CharWidth.so 32623 -usr/lib/x86_64-linux-gnu/perl-base/overload.pm 32622 -usr/share/perl5/Debconf/Priority.pm 32621 -usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm 32620 -usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm 32619 -usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm 32618 -usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so 32617 -usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so 32616 -lib/x86_64-linux-gnu/libnss_files-2.31.so 32615 -usr/share/perl5/Debconf/DbDriver.pm 32613 -usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm 32612 -etc/debconf.conf 32611 -usr/share/perl5/Debconf/DbDriver/File.pm 32610 -usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm 32609 -usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so 32608 -usr/share/perl5/Debconf/DbDriver/Cache.pm 32607 -usr/share/perl5/Debconf/Format/822.pm 32606 -usr/share/perl5/Debconf/Format.pm 32605 -usr/share/perl5/Debconf/DbDriver/Stack.pm 32602 -usr/share/perl5/Debconf/DbDriver/Copy.pm 32601 -bin/rm 32596 -usr/lib/user-setup/user-setup-apply 32595 -usr/share/debconf/confmodule 32594 -usr/share/debconf/frontend 32593 -usr/share/perl5/Debconf/AutoSelect.pm 32592 -usr/share/perl5/Debconf/ConfModule.pm 32591 -usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm 32590 -usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm 32589 -usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32588 -usr/share/perl5/Debconf/FrontEnd.pm 32587 -usr/lib/x86_64-linux-gnu/perl5/5.32/Glib/Object/Introspection.pm 32586 -usr/lib/x86_64-linux-gnu/perl5/5.32/Glib.pm 32585 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Glib/Glib.so 32584 -usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.6600.8 32583 -usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.6600.8 32582 -usr/lib/x86_64-linux-gnu/libffi.so.7.1.0 32581 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Glib/Object/Introspection/Introspection.so 32580 -usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32579 -usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.6600.8 32578 -usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.6600.8 32577 -lib/x86_64-linux-gnu/libz.so.1.2.11 32576 -usr/lib/x86_64-linux-gnu/libmount.so.1.1.0 32575 -lib/x86_64-linux-gnu/libresolv-2.31.so 32574 -usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0 32573 -usr/lib/user-setup/functions.sh 32572 -sbin/shadowconfig 32571 -usr/sbin/pwck 32570 -lib/x86_64-linux-gnu/libaudit.so.1.0.0 32569 -lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32568 -etc/login.defs 32567 -usr/sbin/grpck 32566 -usr/sbin/pwconv 32563 -etc/.pwd.lock 32562 -usr/sbin/grpconv 32559 -bin/chown 32552 -bin/chmod 32551 -usr/bin/cut 32550 -usr/bin/dpkg 32549 -etc/dpkg/dpkg.cfg.d/pkg-config-hook-config 32548 -etc/dpkg/dpkg.cfg 32547 -usr/sbin/usermod 32546 -usr/lib/x86_64-linux-gnu/libsemanage.so.1 32545 -lib/x86_64-linux-gnu/libsepol.so.1 32544 -lib/x86_64-linux-gnu/libbz2.so.1.0.4 32543 -usr/sbin/adduser 32536 -usr/share/perl5/Debian/AdduserCommon.pm 32535 -usr/lib/x86_64-linux-gnu/perl/5.32.1/I18N/Langinfo.pm 32534 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/I18N/Langinfo/Langinfo.so 32533 -etc/adduser.conf 32532 -usr/sbin/groupadd 32531 -usr/sbin/useradd 32528 -etc/default/useradd 32527 -var/log/faillog 32518 -var/log/lastlog 32517 -usr/bin/find 32512 -etc/skel/.bash_logout 32511 -etc/skel/.bashrc 32510 -etc/skel/.config/Trolltech.conf 32509 -etc/skel/.config/keepassxc/keepassxc.ini 32508 -etc/skel/.config/libreoffice/4/user/registrymodifications.xcu 32507 -etc/skel/.config/onionshare/onionshare.json 32506 -etc/skel/.electrum/config 32504 -etc/skel/.gnome2/accels/.placeholder 32503 -etc/skel/.gnome2/keyrings/default 32502 -etc/skel/.gnome2/keyrings/tails.keyring 32501 -etc/skel/.gnome2_private/.placeholder 32500 -etc/skel/.gnupg/dirmngr.conf 32499 -etc/skel/.gnupg/gpg-agent.conf 32498 -etc/skel/.gnupg/gpg.conf 32497 -etc/skel/.local/share/applications/mimeapps.list 32496 -etc/skel/.mkshrc 32495 -etc/skel/.poedit/config 32494 -etc/skel/.profile 32493 -etc/skel/.purple/prefs.xml 32492 -etc/skel/.tor-browser/profile.default/chrome/userChrome.css 32491 -etc/skel/.tor-browser/profile.default/chrome/userContent.css 32490 -etc/skel/.tor-browser/profile.default/prefs.js 32489 -etc/skel/Desktop/Report_an_error.desktop 32488 -etc/skel/Desktop/tails-documentation.desktop 32487 -usr/bin/chfn 32484 -lib/x86_64-linux-gnu/libpam.so.0.85.1 32483 -lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32482 -etc/pam.d/chfn 32481 -lib/x86_64-linux-gnu/security/pam_rootok.so 32480 -etc/pam.d/common-auth 32479 -lib/x86_64-linux-gnu/security/pam_unix.so 32478 -usr/lib/x86_64-linux-gnu/libnsl.so.2.0.1 32477 -lib/x86_64-linux-gnu/libtirpc.so.3.0.0 32476 -usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 32475 -usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 32474 -usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 32473 -lib/x86_64-linux-gnu/libcom_err.so.2.1 32472 -usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 32471 -lib/x86_64-linux-gnu/libkeyutils.so.1.9 32470 -lib/x86_64-linux-gnu/security/pam_deny.so 32469 -lib/x86_64-linux-gnu/security/pam_permit.so 32468 -etc/pam.d/common-account 32467 -etc/pam.d/common-session 32466 -lib/x86_64-linux-gnu/security/pam_systemd.so 32465 -etc/pam.d/other 32464 -etc/pam.d/common-password 32463 -usr/bin/gpasswd 32459 -lib/live/config/0040-sudo 32439 -lib/live/config/0050-locales 32438 -etc/default/locale 32437 -usr/bin/which 32436 -bin/systemctl 32435 -lib/x86_64-linux-gnu/liblzma.so.5.2.5 32434 -usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3 32433 -usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8 32432 -usr/lib/x86_64-linux-gnu/libgcrypt.so.20.2.8 32431 -lib/x86_64-linux-gnu/libgpg-error.so.0.29.0 32430 -var/lib/systemd/timers/stamp-logrotate.timer 32429 -usr/bin/mawk 32428 -usr/sbin/locale-gen 32425 -lib/live/config/0070-tzdata 32423 -etc/timezone 32422 -usr/sbin/dpkg-reconfigure 32421 -var/lib/systemd/timers/stamp-e2scrub_all.timer 32420 -var/lib/dpkg/info/format 32419 -var/lib/dpkg/info/tzdata.templates 32418 -var/lib/dpkg/info/tzdata.config 32417 -usr/bin/head 32416 -usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32415 -usr/share/perl5/Debconf/Element/Noninteractive.pm 32414 -usr/share/perl5/Debconf/Element.pm 32413 -var/lib/dpkg/info/tzdata.postinst 32412 -bin/ln 32411 -bin/mv 32410 -lib/live/config/0080-gdm3 32407 -lib/live/config/0085-sddm 32406 -lib/live/config/0090-kdm 32405 -lib/live/config/0100-lightdm 32404 -lib/live/config/0110-lxdm 32403 -lib/live/config/0120-nodm 32402 -lib/live/config/0130-slim 32401 -lib/live/config/0140-xinit 32400 -lib/live/config/0150-keyboard-configuration 32399 -lib/live/config/1000-remount-procfs 32398 -bin/mount 32397 -etc/fstab 32396 +bin/mkdir 32763 +bin/touch 32762 +bin/dash 32761 +bin/udevadm 32760 +bin/egrep 32759 +bin/grep 32758 +etc/laptop-mode/conf.d/ac97-powersave.conf 32757 +etc/laptop-mode/conf.d/auto-hibernate.conf 32756 +etc/laptop-mode/conf.d/battery-level-polling.conf 32755 +etc/laptop-mode/conf.d/bluetooth.conf 32754 +etc/laptop-mode/conf.d/configuration-file-control.conf 32753 +etc/laptop-mode/conf.d/cpufreq.conf 32752 +etc/laptop-mode/conf.d/cpuhotplug.conf 32751 +etc/laptop-mode/conf.d/dpms-standby.conf 32750 +etc/laptop-mode/conf.d/eee-superhe.conf 32749 +etc/laptop-mode/conf.d/ethernet.conf 32748 +etc/laptop-mode/conf.d/exec-commands.conf 32747 +etc/laptop-mode/conf.d/hal-polling.conf 32746 +etc/laptop-mode/conf.d/intel-hda-powersave.conf 32745 +etc/laptop-mode/conf.d/intel-sata-powermgmt.conf 32744 +etc/laptop-mode/conf.d/intel_pstate.conf 32743 +etc/laptop-mode/conf.d/kbd-backlight.conf 32742 +etc/laptop-mode/conf.d/lcd-brightness.conf 32741 +etc/laptop-mode/conf.d/nmi-watchdog.conf 32740 +etc/laptop-mode/conf.d/nouveau.conf 32739 +etc/laptop-mode/conf.d/pcie-aspm.conf 32738 +etc/laptop-mode/conf.d/radeon-dpm.conf 32737 +etc/laptop-mode/conf.d/runtime-pm.conf 32736 +etc/laptop-mode/conf.d/sched-mc-power-savings.conf 32735 +etc/laptop-mode/conf.d/sched-smt-power-savings.conf 32734 +etc/laptop-mode/conf.d/start-stop-programs.conf 32733 +etc/laptop-mode/conf.d/terminal-blanking.conf 32732 +etc/laptop-mode/conf.d/vgaswitcheroo.conf 32731 +etc/laptop-mode/conf.d/video-out.conf 32730 +etc/laptop-mode/conf.d/wireless-ipw-power.conf 32729 +etc/laptop-mode/conf.d/wireless-iwl-power.conf 32728 +etc/laptop-mode/conf.d/wireless-power.conf 32727 +etc/laptop-mode/laptop-mode.conf 32726 +etc/udev/udev.conf 32725 +etc/amnesia/version 32724 +bin/date 32722 +lib/x86_64-linux-gnu/ld-2.31.so 32721 +lib/x86_64-linux-gnu/libc-2.31.so 32720 +usr/lib/locale/locale-archive 32719 +usr/share/zoneinfo/Etc/UTC 32718 +etc/locale.alias 32717 +lib/live/config/0005-nss-systemd 32714 +lib/live/config.sh 32713 +lib/x86_64-linux-gnu/libpcre.so.3.13.3 32712 +lib/x86_64-linux-gnu/libdl-2.31.so 32711 +lib/x86_64-linux-gnu/libpthread-2.31.so 32710 +usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 32709 +bin/cp 32707 +lib/x86_64-linux-gnu/libselinux.so.1 32706 +usr/lib/x86_64-linux-gnu/libacl.so.1.1.2253 32705 +usr/lib/x86_64-linux-gnu/libattr.so.1.1.2448 32704 +usr/lib/x86_64-linux-gnu/libpcre2-8.so.0.10.1 32703 +lib/live/config/0010-debconf 32700 +lib/live/setup-network.sh 32699 +usr/bin/dpkg-query 32698 +var/lib/dpkg/status 32697 +var/lib/dpkg/triggers/File 32696 +var/lib/dpkg/triggers/Unincorp 32695 +lib/live/config/0020-hostname 32694 +etc/hostname 32693 +etc/hosts 32692 +bin/hostname 32691 +lib/live/config/0030-live-debconfig_passwd 32689 +lib/live/config/0030-user-setup 32688 +usr/bin/debconf-set-selections 32686 +usr/bin/perl 32685 +lib/x86_64-linux-gnu/libm-2.31.so 32684 +lib/x86_64-linux-gnu/libcrypt.so.1.1.0 32683 +usr/lib/x86_64-linux-gnu/perl-base/warnings.pm 32682 +usr/lib/x86_64-linux-gnu/perl-base/strict.pm 32681 +usr/share/perl5/Debconf/Db.pm 32680 +usr/share/perl5/Debconf/Log.pm 32679 +usr/lib/x86_64-linux-gnu/perl-base/base.pm 32678 +usr/lib/x86_64-linux-gnu/perl-base/Exporter.pm 32677 +usr/share/perl5/Debconf/Config.pm 32676 +usr/share/perl5/Debconf/Question.pm 32675 +usr/share/perl5/Debconf/Template.pm 32674 +usr/lib/x86_64-linux-gnu/perl-base/POSIX.pm 32673 +usr/lib/x86_64-linux-gnu/perl-base/Fcntl.pm 32672 +usr/lib/x86_64-linux-gnu/perl-base/XSLoader.pm 32671 +usr/lib/x86_64-linux-gnu/perl-base/auto/Fcntl/Fcntl.so 32670 +usr/lib/x86_64-linux-gnu/perl-base/auto/POSIX/POSIX.so 32669 +usr/lib/x86_64-linux-gnu/perl-base/Tie/Hash.pm 32668 +usr/lib/x86_64-linux-gnu/perl-base/Carp.pm 32667 +usr/lib/x86_64-linux-gnu/perl-base/overloading.pm 32666 +usr/lib/x86_64-linux-gnu/perl-base/warnings/register.pm 32665 +usr/lib/x86_64-linux-gnu/perl-base/Exporter/Heavy.pm 32664 +usr/lib/x86_64-linux-gnu/perl-base/FileHandle.pm 32663 +usr/lib/x86_64-linux-gnu/perl-base/IO/File.pm 32662 +usr/lib/x86_64-linux-gnu/perl-base/Symbol.pm 32661 +usr/lib/x86_64-linux-gnu/perl-base/SelectSaver.pm 32660 +usr/lib/x86_64-linux-gnu/perl-base/IO/Seekable.pm 32659 +usr/lib/x86_64-linux-gnu/perl-base/IO/Handle.pm 32658 +usr/lib/x86_64-linux-gnu/perl-base/IO.pm 32657 +usr/lib/x86_64-linux-gnu/perl-base/auto/IO/IO.so 32656 +usr/share/perl5/Debconf/Gettext.pm 32655 +usr/lib/x86_64-linux-gnu/perl5/5.32/Locale/gettext.pm 32654 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode.pm 32653 +usr/lib/x86_64-linux-gnu/perl-base/constant.pm 32652 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Encode/Encode.so 32651 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Alias.pm 32650 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/MIME/Name.pm 32649 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Storable.pm 32648 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Storable/Storable.so 32647 +usr/lib/x86_64-linux-gnu/perl-base/parent.pm 32646 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Encoding.pm 32645 +usr/lib/x86_64-linux-gnu/perl-base/bytes.pm 32644 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Encode/Config.pm 32643 +usr/lib/x86_64-linux-gnu/perl-base/DynaLoader.pm 32642 +usr/lib/x86_64-linux-gnu/perl-base/Config.pm 32641 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Locale/gettext/gettext.so 32640 +usr/lib/x86_64-linux-gnu/perl-base/Text/Wrap.pm 32639 +usr/lib/x86_64-linux-gnu/perl-base/vars.pm 32638 +usr/lib/x86_64-linux-gnu/perl-base/Text/Tabs.pm 32637 +usr/lib/x86_64-linux-gnu/perl-base/re.pm 32636 +usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so 32635 +usr/share/perl5/Debconf/Iterator.pm 32634 +usr/share/perl5/Debconf/Base.pm 32633 +usr/lib/x86_64-linux-gnu/perl-base/fields.pm 32632 +usr/share/perl5/Debconf/Encoding.pm 32631 +usr/lib/x86_64-linux-gnu/perl5/5.32/Text/Iconv.pm 32630 +usr/lib/x86_64-linux-gnu/perl-base/AutoLoader.pm 32629 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Text/Iconv/Iconv.so 32628 +usr/bin/locale 32627 +usr/share/perl5/Text/WrapI18N.pm 32626 +usr/lib/x86_64-linux-gnu/perl5/5.32/Text/CharWidth.pm 32625 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Text/CharWidth/CharWidth.so 32624 +usr/lib/x86_64-linux-gnu/perl-base/overload.pm 32623 +usr/share/perl5/Debconf/Priority.pm 32622 +usr/lib/x86_64-linux-gnu/perl-base/Hash/Util.pm 32621 +usr/lib/x86_64-linux-gnu/perl-base/Scalar/Util.pm 32620 +usr/lib/x86_64-linux-gnu/perl-base/List/Util.pm 32619 +usr/lib/x86_64-linux-gnu/perl-base/auto/List/Util/Util.so 32618 +usr/lib/x86_64-linux-gnu/perl-base/auto/Hash/Util/Util.so 32617 +lib/x86_64-linux-gnu/libnss_files-2.31.so 32616 +usr/share/perl5/Debconf/DbDriver.pm 32614 +usr/lib/x86_64-linux-gnu/perl-base/Getopt/Long.pm 32613 +etc/debconf.conf 32612 +usr/share/perl5/Debconf/DbDriver/File.pm 32611 +usr/lib/x86_64-linux-gnu/perl-base/Cwd.pm 32610 +usr/lib/x86_64-linux-gnu/perl-base/auto/Cwd/Cwd.so 32609 +usr/share/perl5/Debconf/DbDriver/Cache.pm 32608 +usr/share/perl5/Debconf/Format/822.pm 32607 +usr/share/perl5/Debconf/Format.pm 32606 +usr/share/perl5/Debconf/DbDriver/Stack.pm 32603 +usr/share/perl5/Debconf/DbDriver/Copy.pm 32602 +bin/rm 32597 +usr/lib/user-setup/user-setup-apply 32596 +usr/share/debconf/confmodule 32595 +usr/share/debconf/frontend 32594 +usr/share/perl5/Debconf/AutoSelect.pm 32593 +usr/share/perl5/Debconf/ConfModule.pm 32592 +usr/lib/x86_64-linux-gnu/perl-base/IPC/Open2.pm 32591 +usr/lib/x86_64-linux-gnu/perl-base/IPC/Open3.pm 32590 +usr/share/perl5/Debconf/FrontEnd/Noninteractive.pm 32589 +usr/share/perl5/Debconf/FrontEnd.pm 32588 +usr/lib/x86_64-linux-gnu/perl5/5.32/Glib/Object/Introspection.pm 32587 +usr/lib/x86_64-linux-gnu/perl5/5.32/Glib.pm 32586 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Glib/Glib.so 32585 +usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0.6600.8 32584 +usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.6600.8 32583 +usr/lib/x86_64-linux-gnu/libffi.so.7.1.0 32582 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Glib/Object/Introspection/Introspection.so 32581 +usr/lib/x86_64-linux-gnu/libgirepository-1.0.so.1.0.0 32580 +usr/lib/x86_64-linux-gnu/libgmodule-2.0.so.0.6600.8 32579 +usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.6600.8 32578 +lib/x86_64-linux-gnu/libz.so.1.2.11 32577 +usr/lib/x86_64-linux-gnu/libmount.so.1.1.0 32576 +lib/x86_64-linux-gnu/libresolv-2.31.so 32575 +usr/lib/x86_64-linux-gnu/libblkid.so.1.1.0 32574 +usr/lib/user-setup/functions.sh 32573 +sbin/shadowconfig 32572 +usr/sbin/pwck 32571 +lib/x86_64-linux-gnu/libaudit.so.1.0.0 32570 +lib/x86_64-linux-gnu/libcap-ng.so.0.0.0 32569 +etc/login.defs 32568 +usr/sbin/grpck 32567 +usr/sbin/pwconv 32564 +etc/.pwd.lock 32563 +usr/sbin/grpconv 32560 +bin/chown 32553 +bin/chmod 32552 +usr/bin/cut 32551 +usr/bin/dpkg 32550 +etc/dpkg/dpkg.cfg.d/pkg-config-hook-config 32549 +etc/dpkg/dpkg.cfg 32548 +usr/sbin/usermod 32547 +usr/lib/x86_64-linux-gnu/libsemanage.so.1 32546 +lib/x86_64-linux-gnu/libsepol.so.1 32545 +lib/x86_64-linux-gnu/libbz2.so.1.0.4 32544 +usr/sbin/adduser 32537 +usr/share/perl5/Debian/AdduserCommon.pm 32536 +usr/lib/x86_64-linux-gnu/perl/5.32.1/I18N/Langinfo.pm 32535 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/I18N/Langinfo/Langinfo.so 32534 +etc/adduser.conf 32533 +usr/sbin/groupadd 32532 +usr/sbin/useradd 32529 +etc/default/useradd 32528 +var/log/faillog 32519 +var/log/lastlog 32518 +usr/bin/find 32513 +etc/skel/.bash_logout 32512 +etc/skel/.bashrc 32511 +etc/skel/.config/Trolltech.conf 32510 +etc/skel/.config/keepassxc/keepassxc.ini 32509 +etc/skel/.config/libreoffice/4/user/registrymodifications.xcu 32508 +etc/skel/.config/onionshare/onionshare.json 32507 +etc/skel/.electrum/config 32505 +etc/skel/.gnome2/accels/.placeholder 32504 +etc/skel/.gnome2/keyrings/default 32503 +etc/skel/.gnome2/keyrings/tails.keyring 32502 +etc/skel/.gnome2_private/.placeholder 32501 +etc/skel/.gnupg/dirmngr.conf 32500 +etc/skel/.gnupg/gpg-agent.conf 32499 +etc/skel/.gnupg/gpg.conf 32498 +etc/skel/.local/share/applications/mimeapps.list 32497 +etc/skel/.mkshrc 32496 +etc/skel/.poedit/config 32495 +etc/skel/.profile 32494 +etc/skel/.purple/prefs.xml 32493 +etc/skel/.tor-browser/profile.default/chrome/userChrome.css 32492 +etc/skel/.tor-browser/profile.default/chrome/userContent.css 32491 +etc/skel/.tor-browser/profile.default/prefs.js 32490 +etc/skel/Desktop/Report_an_error.desktop 32489 +etc/skel/Desktop/tails-documentation.desktop 32488 +usr/bin/chfn 32485 +lib/x86_64-linux-gnu/libpam.so.0.85.1 32484 +lib/x86_64-linux-gnu/libpam_misc.so.0.82.1 32483 +etc/pam.d/chfn 32482 +lib/x86_64-linux-gnu/security/pam_rootok.so 32481 +etc/pam.d/common-auth 32480 +lib/x86_64-linux-gnu/security/pam_unix.so 32479 +usr/lib/x86_64-linux-gnu/libnsl.so.2.0.1 32478 +lib/x86_64-linux-gnu/libtirpc.so.3.0.0 32477 +usr/lib/x86_64-linux-gnu/libgssapi_krb5.so.2.2 32476 +usr/lib/x86_64-linux-gnu/libkrb5.so.3.3 32475 +usr/lib/x86_64-linux-gnu/libk5crypto.so.3.1 32474 +lib/x86_64-linux-gnu/libcom_err.so.2.1 32473 +usr/lib/x86_64-linux-gnu/libkrb5support.so.0.1 32472 +lib/x86_64-linux-gnu/libkeyutils.so.1.9 32471 +lib/x86_64-linux-gnu/security/pam_deny.so 32470 +lib/x86_64-linux-gnu/security/pam_permit.so 32469 +etc/pam.d/common-account 32468 +etc/pam.d/common-session 32467 +lib/x86_64-linux-gnu/security/pam_systemd.so 32466 +etc/pam.d/other 32465 +etc/pam.d/common-password 32464 +usr/bin/gpasswd 32460 +lib/live/config/0040-sudo 32440 +lib/live/config/0050-locales 32439 +etc/default/locale 32438 +usr/bin/which 32437 +bin/systemctl 32436 +lib/x86_64-linux-gnu/liblzma.so.5.2.5 32435 +usr/lib/x86_64-linux-gnu/liblz4.so.1.9.3 32434 +usr/lib/x86_64-linux-gnu/libzstd.so.1.4.8 32433 +usr/lib/x86_64-linux-gnu/libgcrypt.so.20.2.8 32432 +lib/x86_64-linux-gnu/libgpg-error.so.0.29.0 32431 +var/lib/systemd/timers/stamp-logrotate.timer 32430 +usr/bin/mawk 32429 +usr/sbin/locale-gen 32426 +lib/live/config/0070-tzdata 32424 +etc/timezone 32423 +usr/sbin/dpkg-reconfigure 32422 +var/lib/dpkg/info/format 32421 +var/lib/dpkg/info/tzdata.templates 32420 +var/lib/dpkg/info/tzdata.config 32419 +usr/bin/head 32418 +usr/share/perl5/Debconf/Element/Noninteractive/Select.pm 32417 +usr/share/perl5/Debconf/Element/Noninteractive.pm 32416 +usr/share/perl5/Debconf/Element.pm 32415 +var/lib/dpkg/info/tzdata.postinst 32414 +bin/ln 32413 +bin/mv 32412 +lib/live/config/0080-gdm3 32409 +lib/live/config/0085-sddm 32408 +lib/live/config/0090-kdm 32407 +lib/live/config/0100-lightdm 32406 +lib/live/config/0110-lxdm 32405 +lib/live/config/0120-nodm 32404 +lib/live/config/0130-slim 32403 +lib/live/config/0140-xinit 32402 +lib/live/config/0150-keyboard-configuration 32401 +lib/live/config/1000-remount-procfs 32400 +bin/mount 32399 +etc/fstab 32398 lib/live/config/1020-gnome-panel-data 32395 -lib/live/config/1030-gnome-power-manager 32392 -usr/bin/sudo 32391 -lib/x86_64-linux-gnu/libutil-2.31.so 32390 -usr/lib/sudo/libsudo_util.so.0.0.0 32389 -etc/sudo.conf 32388 -usr/lib/sudo/sudoers.so 32387 -etc/sudoers 32386 -etc/sudoers.d/README 32385 -etc/sudoers.d/always-ask-password 32384 -etc/sudoers.d/provide-password-feedback 32383 -etc/sudoers.d/tails-greeter-cryptsetup 32382 -etc/sudoers.d/tails-greeter-umount 32381 -etc/sudoers.d/zzz_boot_profile 32380 -etc/sudoers.d/zzz_gdm 32379 -etc/sudoers.d/zzz_gdm-fallback 32378 -etc/sudoers.d/zzz_get_date 32377 -etc/sudoers.d/zzz_halt 32376 -etc/sudoers.d/zzz_onioncircuits 32375 -etc/sudoers.d/zzz_tails-additional-software 32374 -etc/sudoers.d/zzz_tails-backup 32373 -etc/sudoers.d/zzz_tails-debugging-info 32372 -etc/sudoers.d/zzz_tails-installer 32371 -etc/sudoers.d/zzz_tbb 32370 -etc/sudoers.d/zzz_tca 32369 -etc/sudoers.d/zzz_tps 32368 -etc/sudoers.d/zzz_unsafe-browser 32367 -etc/sudoers.d/zzz_upgrade 32366 -etc/host.conf 32365 -etc/resolv.conf 32364 -etc/pam.d/sudo 32363 -etc/pam.d/common-session-noninteractive 32362 -lib/live/config/1040-gnome-screensaver 32360 -lib/live/config/1050-kaboom 32359 -lib/live/config/1060-kde-services 32358 -lib/live/config/1080-policykit 32357 -lib/live/config/1090-ssl-cert 32356 -usr/sbin/make-ssl-cert 32355 -bin/bash 32354 -lib/x86_64-linux-gnu/libtinfo.so.6.2 32353 -usr/bin/basename 32352 -bin/mktemp 32351 -usr/share/ssl-cert/ssleay.cnf 32350 -usr/bin/openssl 32349 -usr/lib/x86_64-linux-gnu/libssl.so.1.1 32348 -usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32347 -etc/ssl/openssl.cnf 32346 -usr/bin/dirname 32343 -lib/live/config/1110-anacron 32341 -lib/live/config/1120-util-linux 32340 -lib/live/config/1130-login 32338 -lib/live/config/1140-xserver-xorg 32334 -lib/live/config/1160-openssh-server 32333 -lib/live/config/1170-xfce4-panel 32332 -lib/live/config/1180-xscreensaver 32331 -lib/live/config/1190-broadcom-sta 32330 -lib/live/config/1500-reconfigure-APT 32329 -lib/live/config/1600-undivert-APT 32296 -usr/bin/dpkg-divert 32295 -lib/live/config/2000-aesthetics 32290 -lib/live/config/2000-import-gnupg-key 32289 -usr/bin/gpg 32287 -usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32286 -lib/x86_64-linux-gnu/libreadline.so.8.1 32285 -usr/lib/x86_64-linux-gnu/libassuan.so.0.8.3 32284 -usr/share/doc/tails/website/tails-accounting.key 32283 -usr/bin/gpg-agent 32282 -usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32281 -usr/share/doc/tails/website/tails-board.key 32280 -usr/share/doc/tails/website/tails-bugs.key 32279 -usr/share/doc/tails/website/tails-email.key 32278 -usr/share/doc/tails/website/tails-foundations.key 32277 -usr/share/doc/tails/website/tails-fundraising.key 32276 -usr/share/doc/tails/website/tails-mirrors.key 32275 -usr/share/doc/tails/website/tails-press.key 32274 -usr/share/doc/tails/website/tails-signing-minimal.key 32273 -usr/share/doc/tails/website/tails-signing.key 32272 -usr/share/doc/tails/website/tails-sysadmins.key 32271 -usr/share/doc/tails/website/tails-weblate.key 32270 -lib/live/config/2030-systemd 32263 -bin/systemd-machine-id-setup 32262 -lib/systemd/libsystemd-shared-247.so 32261 -lib/x86_64-linux-gnu/libcap.so.2.44 32260 -usr/lib/x86_64-linux-gnu/libip4tc.so.2.0.0 32259 -usr/lib/x86_64-linux-gnu/libkmod.so.2.3.6 32258 -lib/x86_64-linux-gnu/librt-2.31.so 32257 -usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.1 32256 -etc/machine-id 32255 -bin/journalctl 32254 -usr/lib/systemd/catalog/systemd.be.catalog 32253 -usr/lib/systemd/catalog/systemd.be@latin.catalog 32252 -usr/lib/systemd/catalog/systemd.bg.catalog 32251 -usr/lib/systemd/catalog/systemd.catalog 32250 -usr/lib/systemd/catalog/systemd.de.catalog 32249 -usr/lib/systemd/catalog/systemd.fr.catalog 32248 -usr/lib/systemd/catalog/systemd.it.catalog 32247 -usr/lib/systemd/catalog/systemd.pl.catalog 32246 -usr/lib/systemd/catalog/systemd.pt_BR.catalog 32245 -usr/lib/systemd/catalog/systemd.ru.catalog 32244 -usr/lib/systemd/catalog/systemd.zh_CN.catalog 32243 -usr/lib/systemd/catalog/systemd.zh_TW.catalog 32242 -lib/live/config/7000-debug 32240 -lib/live/config/8000-rootpw 32239 -lib/live/config/9000-hosts-file 32238 -etc/live/config.d/hostname.conf 32237 -lib/live/config/9980-permissions 32236 -lib/live/config/9990-hooks 32234 -lib/live/config/9995-nss-systemd 32233 -lib/live/config/9999-unset-user-account-comment 32232 -etc/adjtime 32229 -usr/libexec/accounts-daemon 32227 +lib/live/config/1030-gnome-power-manager 32394 +usr/bin/sudo 32393 +lib/x86_64-linux-gnu/libutil-2.31.so 32392 +usr/lib/sudo/libsudo_util.so.0.0.0 32391 +etc/sudo.conf 32390 +usr/lib/sudo/sudoers.so 32389 +etc/sudoers 32388 +etc/sudoers.d/README 32387 +etc/sudoers.d/always-ask-password 32386 +etc/sudoers.d/provide-password-feedback 32385 +etc/sudoers.d/tails-greeter-cryptsetup 32384 +etc/sudoers.d/tails-greeter-umount 32383 +etc/sudoers.d/zzz_boot_profile 32382 +etc/sudoers.d/zzz_gdm 32381 +etc/sudoers.d/zzz_gdm-fallback 32380 +etc/sudoers.d/zzz_get_date 32379 +etc/sudoers.d/zzz_halt 32378 +etc/sudoers.d/zzz_onioncircuits 32377 +etc/sudoers.d/zzz_tails-additional-software 32376 +etc/sudoers.d/zzz_tails-backup 32375 +etc/sudoers.d/zzz_tails-debugging-info 32374 +etc/sudoers.d/zzz_tails-installer 32373 +etc/sudoers.d/zzz_tbb 32372 +etc/sudoers.d/zzz_tca 32371 +etc/sudoers.d/zzz_tps 32370 +etc/sudoers.d/zzz_unsafe-browser 32369 +etc/sudoers.d/zzz_upgrade 32368 +etc/host.conf 32367 +etc/resolv.conf 32366 +etc/pam.d/sudo 32365 +etc/pam.d/common-session-noninteractive 32364 +lib/live/config/1040-gnome-screensaver 32362 +lib/live/config/1050-kaboom 32361 +lib/live/config/1060-kde-services 32360 +lib/live/config/1080-policykit 32359 +lib/live/config/1090-ssl-cert 32358 +usr/sbin/make-ssl-cert 32357 +bin/bash 32356 +lib/x86_64-linux-gnu/libtinfo.so.6.2 32355 +usr/bin/basename 32354 +bin/mktemp 32353 +usr/share/ssl-cert/ssleay.cnf 32352 +usr/bin/openssl 32351 +usr/lib/x86_64-linux-gnu/libssl.so.1.1 32350 +usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 32349 +etc/ssl/openssl.cnf 32348 +usr/bin/dirname 32345 +lib/live/config/1110-anacron 32343 +lib/live/config/1120-util-linux 32342 +lib/live/config/1130-login 32340 +lib/live/config/1140-xserver-xorg 32336 +lib/live/config/1160-openssh-server 32335 +lib/live/config/1170-xfce4-panel 32334 +lib/live/config/1180-xscreensaver 32333 +lib/live/config/1190-broadcom-sta 32332 +lib/live/config/1500-reconfigure-APT 32331 +lib/live/config/1600-undivert-APT 32298 +usr/bin/dpkg-divert 32297 +lib/live/config/2000-aesthetics 32292 +lib/live/config/2000-import-gnupg-key 32291 +usr/bin/gpg 32289 +usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6 32288 +lib/x86_64-linux-gnu/libreadline.so.8.1 32287 +usr/lib/x86_64-linux-gnu/libassuan.so.0.8.3 32286 +usr/share/doc/tails/website/tails-accounting.key 32285 +usr/bin/gpg-agent 32284 +usr/lib/x86_64-linux-gnu/libnpth.so.0.1.2 32283 +usr/share/doc/tails/website/tails-board.key 32282 +usr/share/doc/tails/website/tails-bugs.key 32281 +usr/share/doc/tails/website/tails-email.key 32280 +usr/share/doc/tails/website/tails-foundations.key 32279 +usr/share/doc/tails/website/tails-fundraising.key 32278 +usr/share/doc/tails/website/tails-mirrors.key 32277 +usr/share/doc/tails/website/tails-press.key 32276 +usr/share/doc/tails/website/tails-signing-minimal.key 32275 +usr/share/doc/tails/website/tails-signing.key 32274 +usr/share/doc/tails/website/tails-sysadmins.key 32273 +usr/share/doc/tails/website/tails-weblate.key 32272 +lib/live/config/2030-systemd 32265 +bin/systemd-machine-id-setup 32264 +lib/systemd/libsystemd-shared-247.so 32263 +lib/x86_64-linux-gnu/libcap.so.2.44 32262 +usr/lib/x86_64-linux-gnu/libip4tc.so.2.0.0 32261 +usr/lib/x86_64-linux-gnu/libkmod.so.2.3.6 32260 +lib/x86_64-linux-gnu/librt-2.31.so 32259 +usr/lib/x86_64-linux-gnu/libseccomp.so.2.5.1 32258 +etc/machine-id 32257 +bin/journalctl 32256 +usr/lib/systemd/catalog/systemd.be.catalog 32255 +usr/lib/systemd/catalog/systemd.be@latin.catalog 32254 +usr/lib/systemd/catalog/systemd.bg.catalog 32253 +usr/lib/systemd/catalog/systemd.catalog 32252 +usr/lib/systemd/catalog/systemd.de.catalog 32251 +usr/lib/systemd/catalog/systemd.fr.catalog 32250 +usr/lib/systemd/catalog/systemd.it.catalog 32249 +usr/lib/systemd/catalog/systemd.pl.catalog 32248 +usr/lib/systemd/catalog/systemd.pt_BR.catalog 32247 +usr/lib/systemd/catalog/systemd.ru.catalog 32246 +usr/lib/systemd/catalog/systemd.zh_CN.catalog 32245 +usr/lib/systemd/catalog/systemd.zh_TW.catalog 32244 +lib/live/config/7000-debug 32242 +lib/live/config/8000-rootpw 32241 +lib/live/config/9000-hosts-file 32240 +etc/live/config.d/hostname.conf 32239 +lib/live/config/9980-permissions 32238 +lib/live/config/9990-hooks 32236 +lib/live/config/9995-nss-systemd 32235 +lib/live/config/9999-unset-user-account-comment 32234 +etc/adjtime 32231 +usr/libexec/accounts-daemon 32229 +etc/default/cron 32228 +usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32227 usr/sbin/alsactl 32226 usr/lib/x86_64-linux-gnu/libasound.so.2.0.0 32225 usr/share/alsa/alsa.conf 32223 -etc/default/cron 32221 -usr/lib/x86_64-linux-gnu/libpolkit-gobject-1.so.0.0.0 32220 -sbin/e2scrub_all 32217 -usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32216 -usr/share/alsa/alsa.conf.d/10-samplerate.conf 32215 -usr/share/alsa/alsa.conf.d/10-speexrate.conf 32214 -usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32213 -usr/share/alsa/alsa.conf.d/50-jack.conf 32212 -usr/share/alsa/alsa.conf.d/50-oss.conf 32211 -usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32210 -usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32209 -usr/share/alsa/alsa.conf.d/60-upmix.conf 32208 -usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32207 -usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32206 -usr/share/alsa/alsa.conf.d/pulse.conf 32205 -etc/asound.conf 32204 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32203 -usr/lib/x86_64-linux-gnu/libpulse.so.0.23.0 32202 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so 32201 -lib/x86_64-linux-gnu/libdbus-1.so.3.19.15 32200 -usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32199 -usr/lib/x86_64-linux-gnu/libsystemd.so.0.30.0 32198 -usr/lib/x86_64-linux-gnu/libwrap.so.0.7.6 32197 -usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.31 32196 -usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32195 -usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32194 -usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32193 -usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32192 -usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.9 32191 -usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.12 32190 -usr/lib/x86_64-linux-gnu/libopus.so.0.8.0 32189 -usr/lib/x86_64-linux-gnu/libogg.so.0.8.4 32188 -usr/lib/x86_64-linux-gnu/libbsd.so.0.11.3 32187 -usr/lib/x86_64-linux-gnu/libmd.so.0.0.4 32186 -usr/sbin/cron 32185 -usr/bin/dbus-daemon 32184 -lib/x86_64-linux-gnu/libexpat.so.1.6.12 32183 -usr/lib/x86_64-linux-gnu/libapparmor.so.1.6.3 32182 +usr/share/alsa/alsa.conf.d/10-rate-lav.conf 32222 +usr/share/alsa/alsa.conf.d/10-samplerate.conf 32221 +usr/share/alsa/alsa.conf.d/10-speexrate.conf 32220 +usr/share/alsa/alsa.conf.d/50-arcam-av-ctl.conf 32219 +usr/share/alsa/alsa.conf.d/50-jack.conf 32218 +usr/share/alsa/alsa.conf.d/50-oss.conf 32217 +usr/share/alsa/alsa.conf.d/50-pulseaudio.conf 32216 +usr/share/alsa/alsa.conf.d/60-a52-encoder.conf 32215 +usr/share/alsa/alsa.conf.d/60-upmix.conf 32214 +usr/share/alsa/alsa.conf.d/60-vdownmix.conf 32213 +usr/share/alsa/alsa.conf.d/98-usb-stream.conf 32212 +usr/share/alsa/alsa.conf.d/pulse.conf 32211 +etc/asound.conf 32210 +usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_conf_pulse.so 32209 +usr/lib/x86_64-linux-gnu/libpulse.so.0.23.0 32208 +usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-14.2.so 32207 +lib/x86_64-linux-gnu/libdbus-1.so.3.19.15 32206 +usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0 32205 +usr/lib/x86_64-linux-gnu/libsystemd.so.0.30.0 32204 +usr/lib/x86_64-linux-gnu/libwrap.so.0.7.6 32203 +usr/lib/x86_64-linux-gnu/libsndfile.so.1.0.31 32202 +usr/lib/x86_64-linux-gnu/libasyncns.so.0.3.1 32201 +usr/lib/x86_64-linux-gnu/libXau.so.6.0.0 32200 +usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0 32199 +usr/lib/x86_64-linux-gnu/libFLAC.so.8.3.0 32195 +usr/lib/x86_64-linux-gnu/libvorbis.so.0.4.9 32194 +usr/lib/x86_64-linux-gnu/libvorbisenc.so.2.0.12 32193 +usr/lib/x86_64-linux-gnu/libopus.so.0.8.0 32192 +usr/lib/x86_64-linux-gnu/libogg.so.0.8.4 32191 +usr/sbin/cron 32190 +usr/lib/x86_64-linux-gnu/libbsd.so.0.11.3 32189 +usr/lib/x86_64-linux-gnu/libmd.so.0.0.4 32188 +etc/pulse/client.conf 32187 +usr/share/alsa/init/00main 32186 +usr/share/alsa/init/hda 32185 +usr/share/alsa/init/default 32184 +sbin/e2scrub_all 32183 +etc/e2scrub.conf 32182 etc/crontab 32180 -usr/share/dbus-1/system.conf 32178 -etc/pulse/client.conf 32176 -etc/e2scrub.conf 32175 -usr/share/alsa/init/00main 32174 -usr/share/alsa/init/hda 32173 -usr/share/alsa/init/default 32172 -etc/init.d/rng-tools-debian 32171 -usr/lib/x86_64-linux-gnu/libnss_systemd.so.2 32169 -usr/share/dbus-1/system.d/nm-dispatcher.conf 32163 -usr/libexec/polkitd 32162 -usr/sbin/memlockd 32161 -usr/local/lib/initramfs-restore 32160 -etc/memlockd.cfg 32159 -usr/bin/ldd 32157 -lib/init/vars.sh 32156 -bin/true 32150 -etc/cron.d/e2scrub_all 32147 -usr/local/lib/tails-create-netns 32146 -usr/libexec/udisks2/udisksd 32143 -usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.3.0 32142 -usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32141 -lib/lsb/init-functions 32140 -usr/bin/install 32139 -sbin/wpa_supplicant 32137 -bin/echo 32136 -etc/default/zramswap 32135 -usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32134 -usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32133 -usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0 32132 -usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32131 -bin/readlink 32130 -bin/kill 32129 -lib/x86_64-linux-gnu/libprocps.so.8.0.3 32128 -lib/lsb/init-functions.d/00-verbose 32127 -lib/lsb/init-functions.d/40-systemd 32126 -usr/lib/x86_64-linux-gnu/libudev.so.1.7.0 32125 -usr/local/bin/tails-get-bootinfo 32124 -bin/kmod 32123 -bin/loginctl 32122 -usr/share/dbus-1/system.d/org.freedesktop.Accounts.conf 32121 -usr/local/lib/tails-set-wireless-devices-state 32120 -usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32119 -lib/modprobe.d/aliases.conf 32118 -etc/modprobe.d/all-net-blacklist.conf 32117 -etc/modprobe.d/amd64-microcode-blacklist.conf 32116 -etc/modprobe.d/ath9k_htc.conf 32115 -lib/modprobe.d/fbdev-blacklist.conf 32114 -etc/modprobe.d/intel-microcode-blacklist.conf 32113 -lib/modules/6.1.0-11-amd64/modules.softdep 32112 -etc/modprobe.d/no-bluetooth.conf 32111 -etc/modprobe.d/no-mei.conf 32110 -etc/modprobe.d/no-n-hdlc.conf 32109 -etc/modprobe.d/no-pc-speaker.conf 32108 -lib/modprobe.d/systemd.conf 32107 -etc/modprobe.d/uncommon-network-protocols.conf 32106 -lib/modules/6.1.0-11-amd64/modules.dep.bin 32105 -lib/modules/6.1.0-11-amd64/modules.alias.bin 32104 -lib/modules/6.1.0-11-amd64/modules.symbols.bin 32103 -lib/modules/6.1.0-11-amd64/modules.builtin.alias.bin 32102 -lib/modules/6.1.0-11-amd64/modules.builtin.bin 32101 -bin/ls 32098 -lib/x86_64-linux-gnu/libnl-3.so.200.26.0 32097 -lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 32096 -usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 32095 -usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 32092 -lib/systemd/system-preset/90-systemd.preset 32090 -lib/lsb/init-functions.d/99-plymouth 32089 -lib/systemd/systemd-logind 32088 -usr/bin/env 32087 -usr/bin/python3.9 32086 -usr/bin/plymouth 32085 +sbin/wpa_supplicant 32179 +usr/bin/dbus-daemon 32175 +lib/x86_64-linux-gnu/libexpat.so.1.6.12 32174 +usr/lib/x86_64-linux-gnu/libapparmor.so.1.6.3 32173 +bin/readlink 32172 +etc/init.d/rng-tools-debian 32169 +bin/true 32168 +etc/default/zramswap 32157 +etc/cron.d/e2scrub_all 32156 +usr/share/dbus-1/system.conf 32155 +usr/lib/x86_64-linux-gnu/libnss_systemd.so.2 32154 +usr/sbin/memlockd 32153 +usr/local/lib/initramfs-restore 32152 +usr/bin/install 32150 +usr/local/lib/tails-create-netns 32149 +lib/init/vars.sh 32148 +usr/libexec/udisks2/udisksd 32147 +usr/lib/x86_64-linux-gnu/libgudev-1.0.so.0.3.0 32146 +usr/lib/x86_64-linux-gnu/libblockdev.so.2.0.0 32145 +usr/lib/x86_64-linux-gnu/libbd_utils.so.2.1.0 32144 +usr/lib/x86_64-linux-gnu/libatasmart.so.4.0.5 32143 +usr/lib/x86_64-linux-gnu/libuuid.so.1.3.0 32142 +usr/lib/x86_64-linux-gnu/libudisks2.so.0.0.0 32141 +usr/libexec/polkitd 32140 +etc/memlockd.cfg 32139 +usr/share/dbus-1/system.d/nm-dispatcher.conf 32138 +usr/share/dbus-1/system.d/org.freedesktop.Accounts.conf 32137 +usr/local/lib/tails-set-wireless-devices-state 32136 +lib/lsb/init-functions 32133 +bin/kmod 32132 +bin/run-parts 32131 +lib/modprobe.d/aliases.conf 32130 +etc/modprobe.d/all-net-blacklist.conf 32129 +lib/lsb/init-functions.d/00-verbose 32128 +lib/lsb/init-functions.d/40-systemd 32127 +etc/modprobe.d/amd64-microcode-blacklist.conf 32126 +etc/modprobe.d/ath9k_htc.conf 32125 +lib/modprobe.d/fbdev-blacklist.conf 32124 +etc/modprobe.d/intel-microcode-blacklist.conf 32123 +lib/modules/6.1.0-11-amd64/modules.softdep 32122 +etc/modprobe.d/no-bluetooth.conf 32121 +etc/modprobe.d/no-mei.conf 32120 +etc/modprobe.d/no-n-hdlc.conf 32119 +etc/modprobe.d/no-pc-speaker.conf 32118 +lib/modprobe.d/systemd.conf 32117 +etc/modprobe.d/uncommon-network-protocols.conf 32116 +lib/modules/6.1.0-11-amd64/modules.dep.bin 32115 +lib/modules/6.1.0-11-amd64/modules.alias.bin 32114 +lib/modules/6.1.0-11-amd64/modules.symbols.bin 32113 +lib/modules/6.1.0-11-amd64/modules.builtin.alias.bin 32112 +lib/modules/6.1.0-11-amd64/modules.builtin.bin 32111 +usr/bin/ldd 32110 +usr/lib/x86_64-linux-gnu/libudev.so.1.7.0 32108 +bin/echo 32107 +lib/systemd/system-preset/90-systemd.preset 32102 +lib/lsb/init-functions.d/99-plymouth 32101 +usr/bin/plymouth 32100 +usr/sbin/laptop_mode 32099 +usr/lib/x86_64-linux-gnu/libply.so.5.0.0 32098 +etc/default/rng-tools-debian 32094 +usr/local/bin/tails-get-bootinfo 32093 +usr/share/dbus-1/system.d/org.freedesktop.ColorManager.conf 32092 +usr/bin/env 32091 +usr/bin/python3.9 32090 +lib/x86_64-linux-gnu/libnl-3.so.200.26.0 32089 +lib/x86_64-linux-gnu/libnl-genl-3.so.200.26.0 32088 +usr/lib/x86_64-linux-gnu/libnl-route-3.so.200.26.0 32087 +usr/bin/tor 32086 +usr/share/dbus-1/system.d/org.freedesktop.NetworkManager.conf 32085 usr/sbin/zramswap 32084 -usr/lib/x86_64-linux-gnu/libply.so.5.0.0 32083 -etc/default/rng-tools-debian 32082 +lib/systemd/systemd-logind 32083 +usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 32082 usr/bin/logger 32081 -usr/lib/x86_64-linux-gnu/libpcsclite.so.1.0.0 32080 usr/share/dbus-1/system.d/org.freedesktop.PolicyKit1.conf 32078 -usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 32077 -usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 32076 -usr/share/dbus-1/system.d/org.freedesktop.bolt.conf 32075 -usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 32074 -usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 32073 -usr/share/dbus-1/system.d/org.freedesktop.login1.conf 32072 -usr/share/dbus-1/system.d/org.freedesktop.network1.conf 32071 -usr/bin/unmkinitramfs 32054 -usr/bin/tor 32052 -usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 32051 -usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 32050 -usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 32049 -usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 32048 +usr/share/dbus-1/system.d/org.freedesktop.UDisks2.conf 32068 +lib/modules/6.1.0-11-amd64/kernel/mm/zsmalloc.ko 32066 +usr/share/dbus-1/system.d/org.freedesktop.UPower.conf 32065 +usr/share/dbus-1/system.d/org.freedesktop.bolt.conf 32059 +usr/share/dbus-1/system.d/org.freedesktop.hostname1.conf 32058 +usr/share/dbus-1/system.d/org.freedesktop.locale1.conf 32057 +usr/share/dbus-1/system.d/org.freedesktop.login1.conf 32056 +usr/share/dbus-1/system.d/org.freedesktop.network1.conf 32055 +usr/share/dbus-1/system.d/org.freedesktop.resolve1.conf 32054 +usr/share/dbus-1/system.d/org.freedesktop.systemd1.conf 32053 +usr/share/dbus-1/system.d/org.freedesktop.timedate1.conf 32052 +etc/systemd/logind.conf 32051 +usr/share/dbus-1/system.d/org.freedesktop.timesync1.conf 32050 +usr/lib/x86_64-linux-gnu/libevent-2.1.so.7.0.1 32049 +usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 32048 usr/share/dbus-1/system.d/org.kde.kf5auth.conf 32047 -usr/sbin/laptop_mode 32045 -etc/dbus-1/system.d/avahi-dbus.conf 32044 -etc/systemd/logind.conf 32043 -usr/bin/getopt 32042 -lib/modules/6.1.0-11-amd64/kernel/mm/zsmalloc.ko 32041 -usr/lib/systemd/logind.conf.d/lower-NAutoVTs.conf 32039 -etc/dbus-1/system.d/com.hp.hplip.conf 32038 -usr/lib/x86_64-linux-gnu/libevent-2.1.so.7.0.1 32037 -etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 32036 -etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 32035 -etc/dbus-1/system.d/gdm.conf 32034 -etc/dbus-1/system.d/org.boum.tails.PersistentStorage.conf 32033 -etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 32032 -bin/sleep 32031 -etc/dbus-1/system.d/org.linuxtv.Zbar.conf 32030 -lib/modules/6.1.0-11-amd64/kernel/drivers/block/zram/zram.ko 32029 -bin/dd 32026 -usr/bin/flock 32005 -etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 32001 -lib/modules/6.1.0-11-amd64/kernel/lib/lz4/lz4_compress.ko 32000 -etc/dbus-1/system.d/pulseaudio-system.conf 31999 -etc/dbus-1/system.d/wpa_supplicant.conf 31998 -usr/local/share/dbus-1/system-services/org.boum.tails.PersistentStorage.service 31997 -lib/x86_64-linux-gnu/libgcc_s.so.1 31996 -lib/modules/6.1.0-11-amd64/kernel/crypto/lz4.ko 31995 -usr/share/dbus-1/system-services/com.hp.hplip.service 31994 -usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 31993 -usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 31992 -usr/share/dbus-1/system-services/org.freedesktop.Avahi.service 31991 -usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 31990 -usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 31989 -usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 31988 -usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 31987 -usr/share/dbus-1/system-services/org.freedesktop.UPower.service 31986 -usr/share/dbus-1/system-services/org.freedesktop.bolt.service 31985 -usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 31984 -usr/share/dbus-1/system-services/org.freedesktop.locale1.service 31983 -usr/share/dbus-1/system-services/org.freedesktop.login1.service 31982 -usr/share/tor/tor-service-defaults-torrc 31981 -usr/share/dbus-1/system-services/org.freedesktop.network1.service 31980 -usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 31979 -usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 31978 -usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 31977 -usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 31976 -usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 31975 -usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 31974 -bin/umount 31973 -bin/ip 31972 -usr/lib/x86_64-linux-gnu/libbpf.so.0.3.0 31970 -etc/libblockdev/conf.d/00-default.cfg 31969 -usr/lib/x86_64-linux-gnu/libelf-0.183.so 31968 -usr/lib/x86_64-linux-gnu/libmnl.so.0.2.0 31967 -lib/systemd/system/tails-remove-overlayfs-dirs.service 31966 -usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 31965 -lib/systemd/system-shutdown/tails 31964 -usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 31963 -usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 31962 -sbin/mkswap 31961 -usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 31960 -lib/systemd/systemd-shutdown 31959 -usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 31958 -lib/udev/ifupdown-hotplug 31955 -usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 31952 -lib/x86_64-linux-gnu/libcryptsetup.so.12.6.0 31951 -etc/shells 31950 -var/log/wtmp 31949 +etc/dbus-1/system.d/avahi-dbus.conf 32046 +etc/dbus-1/system.d/com.hp.hplip.conf 32045 +etc/dbus-1/system.d/com.redhat.NewPrinterNotification.conf 32044 +etc/dbus-1/system.d/com.redhat.PrinterDriversInstaller.conf 32043 +etc/dbus-1/system.d/gdm.conf 32042 +usr/bin/unmkinitramfs 32041 +etc/dbus-1/system.d/org.boum.tails.PersistentStorage.conf 32040 +etc/dbus-1/system.d/org.freedesktop.ModemManager1.conf 32039 +etc/dbus-1/system.d/org.linuxtv.Zbar.conf 32038 +etc/dbus-1/system.d/org.opensuse.CupsPkHelper.Mechanism.conf 32037 +etc/dbus-1/system.d/pulseaudio-system.conf 32036 +bin/kill 32035 +usr/bin/flock 32026 +etc/dbus-1/system.d/wpa_supplicant.conf 32012 +lib/modules/6.1.0-11-amd64/kernel/drivers/block/zram/zram.ko 32011 +usr/local/share/dbus-1/system-services/org.boum.tails.PersistentStorage.service 32010 +usr/share/dbus-1/system-services/com.hp.hplip.service 32007 +usr/share/dbus-1/system-services/fi.w1.wpa_supplicant1.service 32006 +usr/share/dbus-1/system-services/org.freedesktop.Accounts.service 32005 +usr/share/dbus-1/system-services/org.freedesktop.Avahi.service 32004 +usr/share/dbus-1/system-services/org.freedesktop.ColorManager.service 32003 +usr/share/dbus-1/system-services/org.freedesktop.ModemManager1.service 32002 +usr/share/dbus-1/system-services/org.freedesktop.PolicyKit1.service 32001 +usr/share/dbus-1/system-services/org.freedesktop.UDisks2.service 32000 +usr/share/dbus-1/system-services/org.freedesktop.UPower.service 31999 +usr/share/dbus-1/system-services/org.freedesktop.bolt.service 31998 +usr/share/dbus-1/system-services/org.freedesktop.hostname1.service 31997 +usr/share/dbus-1/system-services/org.freedesktop.locale1.service 31996 +usr/share/dbus-1/system-services/org.freedesktop.login1.service 31995 +usr/share/dbus-1/system-services/org.freedesktop.network1.service 31994 +usr/share/dbus-1/system-services/org.freedesktop.nm_dispatcher.service 31993 +usr/share/dbus-1/system-services/org.freedesktop.resolve1.service 31992 +usr/share/dbus-1/system-services/org.freedesktop.systemd1.service 31991 +usr/share/dbus-1/system-services/org.freedesktop.timedate1.service 31990 +usr/share/dbus-1/system-services/org.freedesktop.timesync1.service 31989 +usr/share/dbus-1/system-services/org.opensuse.CupsPkHelper.Mechanism.service 31988 +usr/lib/x86_64-linux-gnu/gio/modules/giomodule.cache 31987 +lib/x86_64-linux-gnu/libgcc_s.so.1 31986 +usr/bin/getopt 31985 +lib/x86_64-linux-gnu/libprocps.so.8.0.3 31984 +bin/loginctl 31983 +usr/share/tor/tor-service-defaults-torrc 31982 +usr/lib/x86_64-linux-gnu/gio/modules/libgvfsdbus.so 31980 +lib/modules/6.1.0-11-amd64/kernel/lib/lz4/lz4_compress.ko 31978 +etc/libblockdev/conf.d/00-default.cfg 31977 +bin/ls 31976 +bin/dd 31974 +usr/lib/x86_64-linux-gnu/libbd_swap.so.2.0.0 31973 +usr/lib/x86_64-linux-gnu/libbd_loop.so.2.0.0 31972 +usr/lib/x86_64-linux-gnu/libbd_crypto.so.2.0.0 31971 +lib/x86_64-linux-gnu/libcryptsetup.so.12.9.0 31970 +usr/bin/tr 31964 +usr/share/laptop-mode-tools/modules/ac97-powersave 31963 +bin/ip 31962 +usr/lib/x86_64-linux-gnu/libbpf.so.0.3.0 31961 +usr/lib/x86_64-linux-gnu/libelf-0.183.so 31960 +usr/lib/x86_64-linux-gnu/libmnl.so.0.2.0 31959 +usr/lib/x86_64-linux-gnu/libnss3.so 31958 +usr/share/tor/geoip 31957 +usr/share/laptop-mode-tools/modules/battery-level-polling 31956 +usr/lib/x86_64-linux-gnu/gvfs/libgvfscommon.so 31955 +usr/lib/x86_64-linux-gnu/libsmime3.so 31954 +etc/shells 31953 +var/log/wtmp 31952 +lib/modules/6.1.0-11-amd64/kernel/crypto/lz4.ko 31951 +usr/share/laptop-mode-tools/modules/bluetooth 31950 +usr/sbin/logrotate 31949 +usr/lib/x86_64-linux-gnu/libpopt.so.0.0.1 31948 etc/gdm3/daemon.conf 31947 -usr/lib/x86_64-linux-gnu/libnss3.so 31946 -sbin/ifup 31944 -etc/network/interfaces 31943 -usr/sbin/ModemManager 31940 -lib/systemd/systemd-sysctl 31939 -usr/bin/tr 31936 -usr/lib/sysctl.d/30-tracker.conf 31935 -usr/lib/sysctl.d/50-bubblewrap.conf 31934 -usr/lib/sysctl.d/50-pid-max.conf 31933 -etc/sysctl.conf 31932 -etc/sysctl.d/bpf_jit_harden.conf 31931 -etc/sysctl.d/disable_ipv6.conf 31930 -etc/sysctl.d/fs_protected.conf 31929 -etc/sysctl.d/kexec.conf 31928 -etc/sysctl.d/kptr_restrict.conf 31927 -etc/sysctl.d/mmap_aslr.conf 31926 -etc/sysctl.d/pmtud.conf 31925 -usr/lib/sysctl.d/protect-links.conf 31924 -etc/sysctl.d/ptrace_scope.conf 31923 -etc/sysctl.d/tty_line_disciplines.conf 31922 -etc/sysctl.d/unprivileged_bpf.conf 31921 -etc/sysctl.d/unprivileged_userfaultfd.conf 31920 -sbin/swapon.tails 31918 -usr/share/tor/geoip 31917 -usr/share/laptop-mode-tools/modules/ac97-powersave 31916 -sbin/swapon.distrib 31915 -usr/bin/eject 31913 -usr/lib/x86_64-linux-gnu/libmm-glib.so.0.6.0 31912 -usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0 31911 -usr/lib/x86_64-linux-gnu/libsmime3.so 31910 -lib/systemd/system/blockdev@.target 31908 -usr/share/laptop-mode-tools/modules/battery-level-polling 31907 -usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.7.0 31906 -usr/sbin/logrotate 31905 -usr/sbin/xtables-legacy-multi 31904 -usr/lib/x86_64-linux-gnu/libip6tc.so.2.0.0 31903 -usr/lib/x86_64-linux-gnu/libxtables.so.12.4.0 31902 -usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 31901 -usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31899 -lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 31898 -usr/lib/x86_64-linux-gnu/libargon2.so.1 31897 -usr/bin/pgrep 31896 -usr/share/laptop-mode-tools/modules/bluetooth 31895 -usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.5.0 31894 -sbin/sysctl 31893 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-xmm.so 31892 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-telit.so 31891 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-sierra.so 31890 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-option.so 31889 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-novatel.so 31888 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-icera.so 31887 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-foxconn.so 31886 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31885 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31884 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31883 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31882 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31881 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-tplink.so 31880 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31879 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31878 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31877 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31876 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31875 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31874 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31873 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31872 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31871 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31870 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31869 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31868 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31867 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31866 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31865 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31864 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31863 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31862 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31861 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31860 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31859 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31858 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-foxconn.so 31857 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31856 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31855 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dlink.so 31854 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31853 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31852 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-broadmobi.so 31851 -usr/local/sbin/udev-watchdog 31850 -usr/lib/x86_64-linux-gnu/libjson-c.so.5.1.0 31849 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31848 -usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31847 -usr/share/laptop-mode-tools/modules/configuration-file-control 31846 -usr/lib/x86_64-linux-gnu/libpopt.so.0.0.1 31756 -usr/share/laptop-mode-tools/modules/cpufreq 31755 -etc/logrotate.conf 31754 -usr/share/laptop-mode-tools/modules/cpuhotplug 31753 -usr/lib/x86_64-linux-gnu/libnssutil3.so 31752 -usr/lib/x86_64-linux-gnu/xtables/libipt_MASQUERADE.so 31751 -usr/share/laptop-mode-tools/modules/dpms-standby 31750 -usr/lib/x86_64-linux-gnu/libplc4.so 31749 -usr/lib/x86_64-linux-gnu/libplds4.so 31748 -usr/lib/x86_64-linux-gnu/libnspr4.so 31747 -usr/lib/x86_64-linux-gnu/libgpgme.so.11.23.0 31746 -usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31745 -usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31744 -lib/x86_64-linux-gnu/libparted.so.2.0.3 31743 -etc/logrotate.d/alternatives 31742 -usr/sbin/dmidecode 31741 -usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31740 -lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.3 31739 -etc/udisks2/udisks2.conf 31738 -usr/share/laptop-mode-tools/modules/eee-superhe 31737 -usr/share/laptop-mode-tools/modules/ethernet 31721 -usr/share/tor/geoip6 31718 -usr/share/laptop-mode-tools/modules/exec-commands 31717 -usr/share/laptop-mode-tools/modules/hal-polling 31716 -usr/share/laptop-mode-tools/modules/hdparm 31715 -etc/logrotate.d/apt 31714 -usr/share/laptop-mode-tools/modules/intel-hda-powersave 31709 -usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31708 -usr/share/laptop-mode-tools/modules/intel_pstate 31705 -usr/share/laptop-mode-tools/modules/kbd-backlight 31704 -etc/logrotate.d/bootlog 31703 -etc/logrotate.d/btmp 31702 -bin/cpio 31701 -usr/share/laptop-mode-tools/modules/laptop-mode 31700 -sbin/blockdev 31699 -etc/logrotate.d/cups-daemon 31694 -etc/logrotate.d/dpkg 31693 -etc/logrotate.d/macchanger 31692 -etc/logrotate.d/ppp 31691 -etc/logrotate.d/sane-utils 31690 -etc/logrotate.d/speech-dispatcher 31689 -etc/logrotate.d/tor 31688 -usr/share/laptop-mode-tools/modules/lcd-brightness 31687 -usr/share/laptop-mode-tools/modules/nmi-watchdog 31685 -usr/share/laptop-mode-tools/modules/nouveau 31683 -usr/share/laptop-mode-tools/modules/pcie-aspm 31682 -etc/logrotate.d/wtmp 31681 -usr/share/laptop-mode-tools/modules/radeon-dpm 31678 -usr/share/laptop-mode-tools/modules/runtime-pm 31676 -usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31675 -usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31674 -usr/local/lib/tor_wait_until_bootstrapped 31673 -usr/share/laptop-mode-tools/modules/start-stop-programs 31672 -usr/lib/python3.9/argparse.py 31670 -usr/share/laptop-mode-tools/modules/syslog-conf 31669 -usr/lib/python3.9/gettext.py 31655 -usr/share/laptop-mode-tools/modules/terminal-blanking 31654 -usr/lib/python3/dist-packages/stem/__init__.py 31653 -usr/lib/python3/dist-packages/stem/util/__init__.py 31648 -usr/lib/python3/dist-packages/stem/prereq.py 31646 -usr/lib/python3.9/hashlib.py 31645 -usr/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so 31644 -usr/lib/python3.9/inspect.py 31643 -usr/share/laptop-mode-tools/modules/vgaswitcheroo 31642 -usr/lib/python3.9/ast.py 31637 -usr/share/laptop-mode-tools/modules/video-out 31636 -usr/lib/python3.9/dis.py 31634 -usr/lib/python3.9/opcode.py 31633 -usr/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so 31631 -usr/lib/python3.9/importlib/__init__.py 31629 -usr/lib/python3.9/importlib/machinery.py 31627 -usr/share/laptop-mode-tools/modules/wireless-ipw-power 31626 -usr/lib/python3.9/platform.py 31625 -usr/share/laptop-mode-tools/modules/wireless-iwl-power 31624 -usr/share/laptop-mode-tools/modules/wireless-power 31620 -usr/lib/python3/dist-packages/stem/util/enum.py 31616 -sbin/iw 31615 -usr/lib/python3/dist-packages/stem/util/str_tools.py 31614 -etc/iproute2/group 31613 -usr/lib/python3.9/base64.py 31612 -usr/lib/python3/dist-packages/stem/util/connection.py 31610 -usr/lib/python3/dist-packages/stem/util/proc.py 31608 -usr/lib/python3/dist-packages/stem/util/log.py 31607 -usr/lib/python3/dist-packages/stem/util/system.py 31603 -usr/lib/python3.9/lib-dynload/_ctypes.cpython-39-x86_64-linux-gnu.so 31601 -usr/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so 31594 -usr/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so 31592 -usr/lib/python3.9/mimetypes.py 31588 -usr/lib/python3.9/urllib/__init__.py 31587 -usr/lib/python3.9/urllib/parse.py 31586 -usr/lib/python3.9/multiprocessing/__init__.py 31585 -usr/lib/python3.9/multiprocessing/context.py 31584 -usr/lib/python3.9/multiprocessing/process.py 31583 -usr/lib/python3.9/multiprocessing/reduction.py 31582 -etc/protocols 31581 -usr/lib/python3.9/pickle.py 31580 -usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 31579 -usr/lib/x86_64-linux-gnu/xtables/libipt_DNAT.so 31578 -usr/lib/python3.9/_compat_pickle.py 31577 -usr/lib/python3.9/tarfile.py 31576 -usr/lib/python3.9/copy.py 31575 -usr/lib/python3/dist-packages/stem/util/conf.py 31574 -usr/lib/python3.9/urllib/request.py 31573 -usr/lib/python3.9/email/__init__.py 31572 -usr/lib/python3.9/http/__init__.py 31571 -usr/lib/python3.9/http/client.py 31570 -usr/lib/python3.9/email/parser.py 31569 -usr/lib/python3.9/email/feedparser.py 31568 -usr/lib/python3.9/email/errors.py 31567 -usr/lib/python3.9/email/_policybase.py 31566 -usr/lib/python3.9/email/header.py 31565 -usr/lib/python3.9/email/quoprimime.py 31564 -usr/lib/python3.9/email/base64mime.py 31563 -usr/lib/python3.9/email/charset.py 31562 -usr/lib/python3.9/email/encoders.py 31561 -usr/lib/python3.9/quopri.py 31560 -usr/lib/python3.9/email/utils.py 31559 -usr/lib/python3.9/email/_parseaddr.py 31558 -usr/lib/python3.9/calendar.py 31557 -usr/lib/python3.9/email/message.py 31555 -usr/lib/python3.9/uu.py 31554 -usr/lib/python3.9/email/_encoded_words.py 31553 -usr/lib/python3.9/email/iterators.py 31552 -usr/lib/python3.9/ssl.py 31551 -usr/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so 31550 -usr/lib/python3.9/urllib/error.py 31549 -usr/lib/python3.9/urllib/response.py 31548 -usr/lib/python3/dist-packages/stem/connection.py 31547 -usr/lib/python3.9/getpass.py 31546 -usr/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so 31545 -usr/lib/python3.9/hmac.py 31544 -usr/lib/python3/dist-packages/stem/control.py 31543 -usr/lib/python3.9/queue.py 31542 -usr/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so 31541 -usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31540 -usr/lib/python3/dist-packages/stem/descriptor/bandwidth_file.py 31539 -usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31538 -usr/lib/python3/dist-packages/stem/descriptor/hidden_service.py 31537 -usr/lib/python3/dist-packages/stem/client/__init__.py 31536 -usr/lib/python3/dist-packages/stem/client/cell.py 31535 -usr/lib/python3/dist-packages/stem/client/datatype.py 31534 -usr/lib/python3/dist-packages/stem/socket.py 31533 -usr/lib/python3.9/__future__.py 31532 -usr/lib/python3/dist-packages/stem/response/__init__.py 31531 -usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31530 -usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31529 -usr/lib/python3/dist-packages/stem/exit_policy.py 31528 -usr/lib/python3/dist-packages/stem/util/tor_tools.py 31527 -usr/lib/python3/dist-packages/stem/version.py 31526 -usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31525 -usr/lib/python3/dist-packages/cryptography/__init__.py 31524 -usr/lib/python3/dist-packages/cryptography/__about__.py 31523 -usr/lib/python3/dist-packages/cryptography/utils.py 31522 -usr/lib/python3/dist-packages/cryptography/hazmat/__init__.py 31521 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/__init__.py 31520 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__init__.py 31519 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/backend.py 31518 -usr/lib/python3/dist-packages/six.py 31517 -usr/lib/python3.9/importlib/util.py 31516 -usr/lib/python3.9/importlib/abc.py 31515 -usr/lib/python3.9/typing.py 31514 -usr/lib/python3/dist-packages/cryptography/x509/__init__.py 31513 -usr/lib/python3/dist-packages/cryptography/x509/certificate_transparency.py 31512 -usr/lib/python3/dist-packages/cryptography/x509/base.py 31511 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__init__.py 31510 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__init__.py 31509 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dsa.py 31508 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ec.py 31507 -usr/lib/python3/dist-packages/cryptography/hazmat/_oid.py 31506 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py 31505 -usr/lib/python3/dist-packages/cryptography/exceptions.py 31504 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed448.py 31503 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/rsa.py 31502 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/interfaces.py 31501 -usr/lib/python3/dist-packages/cryptography/x509/extensions.py 31500 -usr/lib/python3.9/ipaddress.py 31499 -usr/lib/python3/dist-packages/cryptography/hazmat/_der.py 31498 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/constant_time.py 31497 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/__init__.py 31496 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/base.py 31495 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/ssh.py 31494 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__init__.py 31493 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/base.py 31492 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/modes.py 31491 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/algorithms.py 31490 -usr/lib/python3/dist-packages/cryptography/x509/general_name.py 31489 -usr/lib/python3/dist-packages/cryptography/x509/name.py 31488 -usr/lib/python3/dist-packages/cryptography/x509/oid.py 31487 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/hashes.py 31486 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/aead.py 31485 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py 31484 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/cmac.py 31483 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/decode_asn1.py 31482 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dh.py 31481 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dh.py 31480 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dsa.py 31479 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/utils.py 31478 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/utils.py 31477 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ec.py 31476 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed25519.py 31475 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed448.py 31474 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/encode_asn1.py 31473 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hashes.py 31472 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hmac.py 31471 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ocsp.py 31470 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x509.py 31469 -usr/lib/python3/dist-packages/cryptography/x509/ocsp.py 31468 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/poly1305.py 31467 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/rsa.py 31466 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/padding.py 31465 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x25519.py 31464 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x25519.py 31463 -usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x448.py 31462 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x448.py 31461 -usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__init__.py 31460 -usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__init__.py 31459 -usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py 31458 -usr/lib/python3/dist-packages/cryptography/hazmat/bindings/_openssl.abi3.so 31457 -usr/lib/python3/dist-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so 31455 -usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/_conditional.py 31454 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__init__.py 31453 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/scrypt.py 31452 -usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/pkcs7.py 31451 -usr/local/sbin/tails-add-session-firewall-rule 31450 -usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31449 -usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31448 -usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 31447 -usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31446 -usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 31445 -lib/systemd/systemd-user-sessions 31441 -usr/sbin/cupsd 31440 -usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 31439 -usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.4 31438 -usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 31437 -usr/lib/x86_64-linux-gnu/libcups.so.2 31436 -usr/lib/x86_64-linux-gnu/libgnutls.so.30.29.1 31435 -usr/share/gdm/generate-config 31432 -usr/lib/python3/dist-packages/stem/descriptor/reader.py 31431 -usr/local/lib/onion-grater 31430 -usr/lib/python3/dist-packages/stem/response/events.py 31429 -usr/bin/dconf 31428 -usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31427 -usr/lib/python3/dist-packages/stem/response/add_onion.py 31426 -usr/lib/python3/dist-packages/stem/response/authchallenge.py 31425 -usr/lib/python3/dist-packages/stem/response/getinfo.py 31424 -usr/lib/python3/dist-packages/stem/response/getconf.py 31423 -usr/lib/python3/dist-packages/stem/response/mapaddress.py 31422 -usr/lib/python3/dist-packages/stem/response/protocolinfo.py 31421 -etc/gdm3/greeter.dconf-defaults 31420 -usr/share/gdm/dconf/50-tails 31419 -usr/share/gdm/dconf/00-upstream-settings 31418 -usr/share/gdm/dconf/locks/00-upstream-settings-locks 31417 -usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0 31415 -usr/sbin/gdm3 31412 -usr/lib/x86_64-linux-gnu/libidn2.so.0.3.7 31411 -usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0 31410 -usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31409 -usr/share/gdm/gdm.schemas 31408 -usr/lib/python3.9/socketserver.py 31407 -usr/lib/python3.9/textwrap.py 31406 -usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.0 31405 -usr/lib/x86_64-linux-gnu/libnettle.so.8.4 31404 -usr/lib/python3/dist-packages/psutil/__init__.py 31403 +lib/udev/ifupdown-hotplug 31943 +usr/lib/x86_64-linux-gnu/libvolume_key.so.1.2.3 31942 +usr/sbin/ModemManager 31941 +usr/share/laptop-mode-tools/modules/configuration-file-control 31938 +sbin/ifup 31937 +etc/network/interfaces 31936 +lib/systemd/systemd-sysctl 31935 +usr/lib/sysctl.d/30-tracker.conf 31934 +usr/lib/sysctl.d/50-bubblewrap.conf 31933 +usr/lib/sysctl.d/50-pid-max.conf 31932 +etc/sysctl.conf 31931 +etc/sysctl.d/bpf_jit_harden.conf 31930 +etc/sysctl.d/disable_ipv6.conf 31929 +etc/sysctl.d/fs_protected.conf 31928 +etc/sysctl.d/kexec.conf 31927 +etc/sysctl.d/kptr_restrict.conf 31926 +etc/sysctl.d/mmap_aslr.conf 31925 +etc/sysctl.d/pmtud.conf 31924 +usr/lib/sysctl.d/protect-links.conf 31923 +etc/sysctl.d/ptrace_scope.conf 31922 +etc/sysctl.d/tty_line_disciplines.conf 31921 +etc/sysctl.d/unprivileged_bpf.conf 31920 +etc/sysctl.d/unprivileged_userfaultfd.conf 31919 +lib/x86_64-linux-gnu/libdevmapper.so.1.02.1 31917 +usr/lib/x86_64-linux-gnu/libargon2.so.1 31916 +usr/lib/x86_64-linux-gnu/libjson-c.so.5.1.0 31915 +usr/lib/x86_64-linux-gnu/libnssutil3.so 31914 +usr/lib/x86_64-linux-gnu/libplc4.so 31913 +usr/lib/x86_64-linux-gnu/libplds4.so 31912 +usr/lib/x86_64-linux-gnu/libnspr4.so 31911 +usr/lib/x86_64-linux-gnu/libgpgme.so.11.23.0 31910 +sbin/mkswap 31909 +usr/share/laptop-mode-tools/modules/cpufreq 31908 +bin/sleep 31907 +usr/sbin/xtables-legacy-multi 31906 +usr/lib/x86_64-linux-gnu/libip6tc.so.2.0.0 31905 +usr/lib/x86_64-linux-gnu/libxtables.so.12.4.0 31904 +usr/lib/x86_64-linux-gnu/xtables/libipt_REJECT.so 31903 +usr/lib/x86_64-linux-gnu/libmm-glib.so.0.6.0 31900 +sbin/sysctl 31899 +usr/lib/x86_64-linux-gnu/libqmi-glib.so.5.7.0 31898 +sbin/swapon.tails 31897 +usr/share/laptop-mode-tools/modules/cpuhotplug 31896 +etc/logrotate.conf 31895 +usr/lib/x86_64-linux-gnu/libbd_part.so.2.0.0 31894 +sbin/swapon.distrib 31893 +usr/lib/x86_64-linux-gnu/libsmartcols.so.1.1.0 31892 +usr/lib/x86_64-linux-gnu/libbd_part_err.so.2.0.0 31891 +lib/x86_64-linux-gnu/libparted.so.2.0.3 31890 +bin/umount 31889 +lib/systemd/system/blockdev@.target 31887 +usr/sbin/dmidecode 31886 +usr/lib/x86_64-linux-gnu/libbd_fs.so.2.0.0 31885 +lib/x86_64-linux-gnu/libparted-fs-resize.so.0.0.3 31884 +usr/lib/x86_64-linux-gnu/libmbim-glib.so.4.5.0 31883 +usr/share/laptop-mode-tools/modules/dpms-standby 31882 +etc/udisks2/udisks2.conf 31881 +usr/share/tor/geoip6 31880 +lib/systemd/system/tails-remove-overlayfs-dirs.service 31868 +lib/systemd/system-shutdown/tails 31867 +usr/lib/x86_64-linux-gnu/xtables/libipt_MASQUERADE.so 31866 +usr/share/laptop-mode-tools/modules/eee-superhe 31865 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-xmm.so 31864 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-telit.so 31863 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-sierra.so 31862 +lib/systemd/systemd-shutdown 31861 +usr/share/laptop-mode-tools/modules/ethernet 31860 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-option.so 31859 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-novatel.so 31858 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-icera.so 31857 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-shared-foxconn.so 31856 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-zte.so 31855 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-x22x.so 31854 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-wavecom.so 31853 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-via.so 31852 +usr/share/laptop-mode-tools/modules/exec-commands 31851 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ublox.so 31850 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-tplink.so 31849 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-thuraya.so 31848 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-telit.so 31847 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-simtech.so 31846 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra.so 31845 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-sierra-legacy.so 31844 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-samsung.so 31843 +usr/bin/eject 31842 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-quectel.so 31841 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-pantech.so 31840 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option.so 31839 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-option-hso.so 31838 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel.so 31837 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-novatel-lte.so 31836 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia.so 31835 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-nokia-icera.so 31834 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-mtk.so 31833 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-motorola.so 31832 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-longcheer.so 31831 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-linktop.so 31830 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-iridium.so 31829 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-huawei.so 31828 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-haier.so 31827 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-generic.so 31824 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-foxconn.so 31823 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-fibocom.so 31822 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-ericsson-mbm.so 31821 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dlink.so 31820 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-dell.so 31819 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-cinterion.so 31818 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-broadmobi.so 31817 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-anydata.so 31816 +usr/lib/x86_64-linux-gnu/ModemManager/libmm-plugin-altair-lte.so 31815 +usr/share/laptop-mode-tools/modules/hal-polling 31814 +usr/share/laptop-mode-tools/modules/hdparm 31740 +usr/bin/pgrep 31739 +usr/local/sbin/udev-watchdog 31718 +usr/share/laptop-mode-tools/modules/intel-hda-powersave 31717 +usr/share/laptop-mode-tools/modules/intel-sata-powermgmt 31716 +usr/share/laptop-mode-tools/modules/intel_pstate 31715 +bin/cpio 31710 +usr/share/laptop-mode-tools/modules/kbd-backlight 31709 +usr/share/laptop-mode-tools/modules/laptop-mode 31708 +sbin/blockdev 31707 +usr/share/laptop-mode-tools/modules/lcd-brightness 31704 +etc/logrotate.d/alternatives 31703 +usr/share/laptop-mode-tools/modules/nmi-watchdog 31702 +usr/share/laptop-mode-tools/modules/nouveau 31696 +usr/local/lib/tor_wait_until_bootstrapped 31695 +usr/share/laptop-mode-tools/modules/pcie-aspm 31694 +etc/logrotate.d/apt 31691 +usr/lib/python3.9/argparse.py 31690 +usr/share/laptop-mode-tools/modules/radeon-dpm 31689 +etc/logrotate.d/bootlog 31675 +usr/lib/python3.9/gettext.py 31674 +usr/share/laptop-mode-tools/modules/runtime-pm 31673 +etc/logrotate.d/btmp 31672 +usr/lib/python3/dist-packages/stem/__init__.py 31671 +usr/lib/python3/dist-packages/stem/util/__init__.py 31666 +usr/lib/python3/dist-packages/stem/prereq.py 31664 +usr/lib/python3.9/hashlib.py 31663 +usr/lib/python3.9/lib-dynload/_hashlib.cpython-39-x86_64-linux-gnu.so 31662 +usr/lib/python3.9/inspect.py 31661 +usr/share/laptop-mode-tools/modules/sched-mc-power-savings 31660 +usr/lib/python3.9/ast.py 31659 +usr/lib/python3.9/dis.py 31657 +usr/lib/python3.9/opcode.py 31656 +usr/lib/python3.9/lib-dynload/_opcode.cpython-39-x86_64-linux-gnu.so 31655 +usr/lib/python3.9/importlib/__init__.py 31653 +usr/lib/python3.9/importlib/machinery.py 31651 +usr/lib/python3.9/platform.py 31650 +usr/share/laptop-mode-tools/modules/sched-smt-power-savings 31647 +usr/lib/python3/dist-packages/stem/util/enum.py 31643 +usr/lib/python3/dist-packages/stem/util/str_tools.py 31642 +etc/logrotate.d/cups-daemon 31641 +etc/logrotate.d/dpkg 31640 +etc/logrotate.d/macchanger 31639 +etc/logrotate.d/ppp 31638 +etc/logrotate.d/sane-utils 31637 +etc/logrotate.d/speech-dispatcher 31636 +etc/logrotate.d/tor 31635 +etc/logrotate.d/wtmp 31634 +usr/share/laptop-mode-tools/modules/start-stop-programs 31631 +usr/lib/python3.9/base64.py 31630 +usr/lib/python3/dist-packages/stem/util/connection.py 31627 +usr/lib/python3/dist-packages/stem/util/proc.py 31623 +usr/share/laptop-mode-tools/modules/syslog-conf 31622 +usr/lib/python3/dist-packages/stem/util/log.py 31619 +usr/lib/python3/dist-packages/stem/util/system.py 31615 +usr/lib/python3.9/lib-dynload/_ctypes.cpython-39-x86_64-linux-gnu.so 31613 +usr/share/laptop-mode-tools/modules/terminal-blanking 31612 +usr/lib/python3.9/lib-dynload/_bz2.cpython-39-x86_64-linux-gnu.so 31605 +usr/lib/python3.9/lib-dynload/_lzma.cpython-39-x86_64-linux-gnu.so 31603 +usr/lib/python3.9/mimetypes.py 31598 +usr/lib/python3.9/urllib/__init__.py 31596 +usr/lib/python3.9/urllib/parse.py 31595 +usr/lib/python3.9/multiprocessing/__init__.py 31594 +usr/share/laptop-mode-tools/modules/vgaswitcheroo 31593 +usr/lib/python3.9/multiprocessing/context.py 31592 +usr/lib/python3.9/multiprocessing/process.py 31591 +usr/lib/python3.9/multiprocessing/reduction.py 31590 +usr/lib/python3.9/pickle.py 31589 +usr/share/laptop-mode-tools/modules/video-out 31588 +etc/iproute2/group 31587 +usr/lib/python3.9/_compat_pickle.py 31586 +usr/lib/python3.9/tarfile.py 31585 +usr/share/laptop-mode-tools/modules/wireless-ipw-power 31584 +usr/share/laptop-mode-tools/modules/wireless-iwl-power 31583 +etc/protocols 31582 +usr/lib/x86_64-linux-gnu/xtables/libxt_tcp.so 31581 +usr/lib/x86_64-linux-gnu/xtables/libipt_DNAT.so 31580 +usr/lib/python3.9/copy.py 31579 +usr/lib/python3/dist-packages/stem/util/conf.py 31578 +usr/lib/python3.9/urllib/request.py 31577 +usr/share/laptop-mode-tools/modules/wireless-power 31576 +sbin/iw 31575 +usr/lib/python3.9/email/__init__.py 31574 +usr/lib/python3.9/http/__init__.py 31573 +usr/lib/python3.9/http/client.py 31572 +usr/lib/python3.9/email/parser.py 31571 +usr/lib/python3.9/email/feedparser.py 31570 +usr/lib/python3.9/email/errors.py 31569 +usr/lib/python3.9/email/_policybase.py 31568 +usr/lib/python3.9/email/header.py 31567 +usr/lib/python3.9/email/quoprimime.py 31566 +usr/lib/python3.9/email/base64mime.py 31565 +usr/lib/python3.9/email/charset.py 31564 +usr/lib/python3.9/email/encoders.py 31563 +usr/lib/python3.9/quopri.py 31562 +usr/lib/python3.9/email/utils.py 31561 +usr/lib/python3.9/email/_parseaddr.py 31560 +usr/lib/python3.9/calendar.py 31559 +usr/lib/python3.9/email/message.py 31557 +usr/lib/python3.9/uu.py 31556 +usr/lib/python3.9/email/_encoded_words.py 31555 +usr/lib/python3.9/email/iterators.py 31554 +usr/lib/python3.9/ssl.py 31553 +usr/lib/python3.9/lib-dynload/_ssl.cpython-39-x86_64-linux-gnu.so 31552 +usr/lib/python3.9/urllib/error.py 31551 +usr/lib/python3.9/urllib/response.py 31550 +usr/lib/python3/dist-packages/stem/connection.py 31549 +usr/lib/python3.9/getpass.py 31548 +usr/lib/python3.9/lib-dynload/termios.cpython-39-x86_64-linux-gnu.so 31547 +usr/lib/python3.9/hmac.py 31546 +usr/lib/python3/dist-packages/stem/control.py 31545 +usr/lib/python3.9/queue.py 31544 +usr/lib/python3.9/lib-dynload/_queue.cpython-39-x86_64-linux-gnu.so 31543 +usr/lib/python3/dist-packages/stem/descriptor/__init__.py 31542 +usr/lib/python3/dist-packages/stem/descriptor/bandwidth_file.py 31541 +usr/lib/python3/dist-packages/stem/descriptor/extrainfo_descriptor.py 31540 +usr/lib/python3/dist-packages/stem/descriptor/hidden_service.py 31539 +usr/lib/python3/dist-packages/stem/client/__init__.py 31538 +usr/lib/python3/dist-packages/stem/client/cell.py 31537 +usr/lib/python3/dist-packages/stem/client/datatype.py 31536 +usr/lib/python3/dist-packages/stem/socket.py 31534 +usr/lib/python3.9/__future__.py 31533 +usr/lib/python3/dist-packages/stem/response/__init__.py 31532 +usr/lib/python3/dist-packages/stem/descriptor/certificate.py 31531 +usr/lib/python3/dist-packages/stem/descriptor/server_descriptor.py 31530 +usr/lib/python3/dist-packages/stem/exit_policy.py 31529 +usr/lib/python3/dist-packages/stem/util/tor_tools.py 31528 +usr/lib/python3/dist-packages/stem/version.py 31527 +usr/lib/python3/dist-packages/stem/descriptor/router_status_entry.py 31526 +usr/lib/python3/dist-packages/cryptography/__init__.py 31525 +usr/lib/python3/dist-packages/cryptography/__about__.py 31524 +usr/lib/python3/dist-packages/cryptography/utils.py 31523 +usr/lib/python3/dist-packages/cryptography/hazmat/__init__.py 31522 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/__init__.py 31521 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/__init__.py 31520 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/backend.py 31519 +usr/lib/python3/dist-packages/six.py 31518 +usr/lib/python3.9/importlib/util.py 31517 +usr/lib/python3.9/importlib/abc.py 31516 +usr/lib/python3.9/typing.py 31515 +usr/lib/python3/dist-packages/cryptography/x509/__init__.py 31514 +usr/lib/python3/dist-packages/cryptography/x509/certificate_transparency.py 31513 +usr/lib/python3/dist-packages/cryptography/x509/base.py 31512 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/__init__.py 31511 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/__init__.py 31510 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dsa.py 31509 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ec.py 31508 +usr/lib/python3/dist-packages/cryptography/hazmat/_oid.py 31507 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py 31506 +usr/lib/python3/dist-packages/cryptography/exceptions.py 31505 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/ed448.py 31504 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/rsa.py 31503 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/interfaces.py 31502 +usr/lib/python3/dist-packages/cryptography/x509/extensions.py 31501 +usr/lib/python3.9/ipaddress.py 31500 +usr/lib/python3/dist-packages/cryptography/hazmat/_der.py 31499 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/constant_time.py 31498 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/__init__.py 31497 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/base.py 31496 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/ssh.py 31495 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/__init__.py 31494 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/base.py 31493 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/modes.py 31492 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/ciphers/algorithms.py 31491 +usr/lib/python3/dist-packages/cryptography/x509/general_name.py 31490 +usr/lib/python3/dist-packages/cryptography/x509/name.py 31489 +usr/lib/python3/dist-packages/cryptography/x509/oid.py 31488 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/hashes.py 31487 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/aead.py 31486 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ciphers.py 31485 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/cmac.py 31484 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/decode_asn1.py 31483 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dh.py 31482 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/dh.py 31481 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/dsa.py 31480 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/utils.py 31479 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/utils.py 31478 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ec.py 31477 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed25519.py 31476 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ed448.py 31475 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/encode_asn1.py 31474 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hashes.py 31473 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/hmac.py 31472 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/ocsp.py 31471 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x509.py 31470 +usr/lib/python3/dist-packages/cryptography/x509/ocsp.py 31469 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/poly1305.py 31468 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/rsa.py 31467 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/padding.py 31466 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x25519.py 31465 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x25519.py 31464 +usr/lib/python3/dist-packages/cryptography/hazmat/backends/openssl/x448.py 31463 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/asymmetric/x448.py 31462 +usr/lib/python3/dist-packages/cryptography/hazmat/bindings/__init__.py 31461 +usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/__init__.py 31460 +usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/binding.py 31459 +usr/lib/python3/dist-packages/cryptography/hazmat/bindings/_openssl.abi3.so 31458 +usr/lib/python3/dist-packages/_cffi_backend.cpython-39-x86_64-linux-gnu.so 31457 +usr/lib/python3/dist-packages/cryptography/hazmat/bindings/openssl/_conditional.py 31456 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/__init__.py 31455 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/kdf/scrypt.py 31454 +usr/lib/python3/dist-packages/cryptography/hazmat/primitives/serialization/pkcs7.py 31453 +usr/lib/python3/dist-packages/stem/descriptor/microdescriptor.py 31452 +usr/local/sbin/tails-add-session-firewall-rule 31451 +usr/lib/python3/dist-packages/stem/descriptor/networkstatus.py 31450 +usr/lib/x86_64-linux-gnu/xtables/libxt_standard.so 31449 +usr/lib/x86_64-linux-gnu/xtables/libxt_conntrack.so 31448 +usr/lib/python3/dist-packages/stem/descriptor/tordnsel.py 31447 +usr/lib/python3/dist-packages/stem/descriptor/reader.py 31446 +usr/sbin/cupsd 31445 +usr/lib/x86_64-linux-gnu/libpaper.so.1.1.2 31444 +usr/lib/x86_64-linux-gnu/libavahi-common.so.3.5.4 31443 +usr/lib/x86_64-linux-gnu/libavahi-client.so.3.2.9 31441 +usr/lib/x86_64-linux-gnu/libcups.so.2 31439 +usr/local/lib/onion-grater 31438 +usr/lib/x86_64-linux-gnu/libgnutls.so.30.29.1 31437 +usr/lib/python3/dist-packages/stem/response/events.py 31435 +lib/systemd/systemd-user-sessions 31434 +usr/lib/python3/dist-packages/stem/response/add_onion.py 31433 +usr/lib/python3/dist-packages/stem/response/authchallenge.py 31432 +usr/lib/python3/dist-packages/stem/response/getinfo.py 31431 +usr/lib/python3/dist-packages/stem/response/getconf.py 31430 +usr/lib/python3/dist-packages/stem/response/mapaddress.py 31429 +usr/lib/python3/dist-packages/stem/response/protocolinfo.py 31428 +usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0 31427 +usr/share/gdm/generate-config 31425 +usr/lib/x86_64-linux-gnu/libidn2.so.0.3.7 31422 +usr/bin/dconf 31421 +usr/lib/x86_64-linux-gnu/libdconf.so.1.0.0 31420 +etc/gdm3/greeter.dconf-defaults 31419 +usr/share/gdm/dconf/50-tails 31418 +usr/share/gdm/dconf/00-upstream-settings 31417 +usr/share/gdm/dconf/locks/00-upstream-settings-locks 31416 +usr/lib/python3.9/socketserver.py 31414 +usr/lib/python3.9/textwrap.py 31413 +usr/lib/x86_64-linux-gnu/libunistring.so.2.1.0 31412 +usr/lib/python3/dist-packages/psutil/__init__.py 31411 +usr/sbin/gdm3 31410 +usr/lib/x86_64-linux-gnu/libaccountsservice.so.0.0.0 31408 +usr/lib/x86_64-linux-gnu/libtasn1.so.6.6.0 31407 +usr/lib/x86_64-linux-gnu/libnettle.so.8.4 31406 +usr/share/gdm/gdm.schemas 31405 +usr/lib/x86_64-linux-gnu/libhogweed.so.6.4 31403 +usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1 31402 usr/lib/python3/dist-packages/psutil/_common.py 31401 usr/lib/python3/dist-packages/psutil/_compat.py 31400 usr/lib/python3/dist-packages/psutil/_pslinux.py 31399 -usr/lib/x86_64-linux-gnu/libhogweed.so.6.4 31398 -usr/lib/x86_64-linux-gnu/libgmp.so.10.4.1 31397 -etc/cups/cups-files.conf 31395 -etc/cups/cupsd.conf 31394 -etc/papersize 31393 -usr/libexec/gdm-session-worker 31392 -usr/share/cups/mime/braille.types 31389 -usr/share/cups/mime/command.types 31388 -usr/share/cups/mime/cupsfilters.types 31387 -usr/share/cups/mime/mime.types 31386 -usr/share/cups/mime/pstotiff.types 31385 -etc/cups/raw.types 31384 -usr/lib/python3/dist-packages/psutil/_psposix.py 31383 -usr/share/cups/mime/braille.convs 31382 -usr/share/cups/mime/cupsfilters-ghostscript.convs 31381 -usr/share/cups/mime/cupsfilters-mupdf.convs 31380 -usr/share/cups/mime/cupsfilters-poppler.convs 31379 -usr/share/cups/mime/cupsfilters.convs 31378 -usr/share/cups/mime/mime.convs 31377 -usr/share/cups/mime/pstotiff.convs 31376 -etc/cups/raw.convs 31375 -usr/share/cups/banners/classified 31374 -usr/share/cups/banners/confidential 31373 -usr/share/cups/banners/form 31372 -usr/share/cups/banners/secret 31371 -usr/share/cups/banners/standard 31370 -usr/share/cups/banners/topsecret 31369 -usr/share/cups/banners/unclassified 31368 -usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-39-x86_64-linux-gnu.so 31366 -usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-39-x86_64-linux-gnu.so 31365 -usr/lib/python3.9/lib-dynload/resource.cpython-39-x86_64-linux-gnu.so 31364 -etc/pam.d/gdm-launch-environment 31362 -lib/x86_64-linux-gnu/security/pam_nologin.so 31361 -lib/x86_64-linux-gnu/security/pam_keyinit.so 31360 -usr/sbin/cups-browsed 31358 -lib/x86_64-linux-gnu/security/pam_limits.so 31357 -usr/lib/x86_64-linux-gnu/libavahi-glib.so.1.0.2 31356 -usr/lib/x86_64-linux-gnu/libcupsfilters.so.1.0.0 31355 -lib/x86_64-linux-gnu/security/pam_env.so 31354 -usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.11.5 31353 -usr/share/polkit-1/actions/com.hp.hplip.policy 31352 -usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31351 -usr/share/polkit-1/actions/org.boum.tails.AdditionalSoftware.policy 31350 -usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31349 -usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31348 -usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31347 -usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0 31346 -usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31345 -usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31344 -usr/lib/x86_64-linux-gnu/libtiff.so.5.6.0 31343 -usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0 31342 -usr/share/polkit-1/actions/org.freedesktop.accounts.policy 31341 -usr/share/polkit-1/actions/org.freedesktop.bolt.policy 31340 -usr/share/polkit-1/actions/org.freedesktop.color.policy 31339 -usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31338 -usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31337 -usr/share/polkit-1/actions/org.freedesktop.login1.policy 31336 -usr/share/polkit-1/actions/org.freedesktop.network1.policy 31335 -usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31334 -usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.11.5 31333 -usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 31332 -usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31331 -usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2 31330 -usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31329 -usr/lib/x86_64-linux-gnu/libjbig.so.0 31328 -usr/lib/x86_64-linux-gnu/libdeflate.so.0 31327 -etc/cups/cups-browsed.conf 31326 -lib/x86_64-linux-gnu/libnss_dns-2.31.so 31325 -usr/share/cups/locale/en/cups_en.po 31324 -usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31321 -usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31320 -usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31319 -usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31318 -usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31317 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31316 -usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31315 -usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31314 -usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31313 -usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31312 -etc/security/limits.conf 31309 -etc/security/pam_env.conf 31308 -etc/environment 31307 -lib/systemd/system/user@.service 31305 -lib/systemd/system/user-.slice.d/10-defaults.conf 31304 -lib/systemd/system/user-runtime-dir@.service 31303 -lib/systemd/systemd-user-runtime-dir 31282 -usr/lib/pam.d/systemd-user 31280 -lib/x86_64-linux-gnu/security/pam_selinux.so 31279 -lib/x86_64-linux-gnu/security/pam_loginuid.so 31278 -lib/systemd/systemd 31277 -etc/systemd/user.conf 31276 -usr/lib/systemd/user.conf.d/set-StatusUnitFormat-to-name.conf 31275 -usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31274 -etc/environment.d/90atk-adaptor.conf 31273 -etc/environment.d/90qt-a11y.conf 31272 -usr/lib/systemd/user-environment-generators/90gpg-agent 31271 -usr/bin/gpgconf 31270 -usr/lib/systemd/user-generators/systemd-xdg-autostart-generator 31269 -etc/xdg/autostart/at-spi-dbus-bus.desktop 31268 -etc/xdg/autostart/gnome-keyring-pkcs11.desktop 31267 -etc/xdg/autostart/gnome-keyring-secrets.desktop 31266 -etc/xdg/autostart/gnome-keyring-ssh.desktop 31265 -etc/xdg/autostart/gnome-shell-overrides-migration.desktop 31264 -etc/xdg/autostart/ibus-mozc-gnome-initial-setup.desktop 31263 -etc/xdg/autostart/nm-applet.desktop 31262 -etc/xdg/autostart/orca-autostart.desktop 31261 -etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 31260 -etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31259 -etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31258 -etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31257 -etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 31256 -etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31255 -etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31254 -etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31253 -etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31252 -etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31251 -etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31250 -etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31249 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31248 -etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31247 -etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31246 -etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop 31245 -etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31244 -etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop 31243 -etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31242 -etc/xdg/autostart/pulseaudio.desktop 31241 -etc/xdg/autostart/spice-vdagent.desktop 31240 -etc/xdg/autostart/systemd-desktop-target.desktop 31239 -etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 31238 -etc/xdg/autostart/tracker-extract.desktop 31237 -etc/xdg/autostart/tracker-miner-fs.desktop 31236 -etc/xdg/autostart/user-dirs-update-gtk.desktop 31235 -etc/xdg/autostart/xdg-user-dirs.desktop 31234 -usr/lib/systemd/user/sound.target 31232 -usr/lib/systemd/user/shutdown.target 31231 -usr/lib/systemd/user/smartcard.target 31230 -usr/lib/python3/dist-packages/yaml/__init__.py 31229 -usr/lib/python3/dist-packages/yaml/error.py 31226 -usr/lib/python3/dist-packages/yaml/tokens.py 31225 -usr/lib/python3/dist-packages/yaml/events.py 31224 -usr/lib/python3/dist-packages/yaml/nodes.py 31223 -usr/lib/python3/dist-packages/yaml/loader.py 31222 -usr/lib/python3/dist-packages/yaml/reader.py 31221 -usr/lib/python3/dist-packages/yaml/scanner.py 31220 -usr/lib/systemd/user/default.target 31219 -etc/xdg/systemd/user 31218 -usr/lib/systemd/user/tracker-miner-fs.service 31217 -usr/lib/systemd/user/dbus.socket 31216 -usr/lib/systemd/user/sockets.target 31215 -usr/lib/systemd/user/pulseaudio.socket 31214 -usr/lib/systemd/user/pipewire.socket 31213 -usr/lib/systemd/user/gpg-agent.socket 31212 -usr/lib/systemd/user/gpg-agent.service 31211 -usr/lib/systemd/user/gpg-agent-ssh.socket 31210 -usr/lib/systemd/user/gpg-agent-extra.socket 31209 -usr/lib/systemd/user/gpg-agent-browser.socket 31208 -usr/lib/systemd/user/dirmngr.socket 31207 -usr/lib/systemd/user/dirmngr.service 31206 -usr/lib/systemd/user/dbus.service 31205 -usr/lib/systemd/user/app.slice 31204 -usr/lib/systemd/user/tracker-extract.service 31203 -usr/lib/systemd/user/pulseaudio.service 31202 -usr/lib/systemd/user/pipewire.service 31201 -usr/lib/systemd/user/basic.target 31200 -usr/lib/systemd/user/paths.target 31199 -usr/lib/systemd/user/timers.target 31198 -usr/lib/python3/dist-packages/yaml/parser.py 31196 -usr/lib/python3/dist-packages/yaml/composer.py 31195 -usr/lib/python3/dist-packages/yaml/constructor.py 31194 -usr/lib/python3/dist-packages/yaml/resolver.py 31193 -usr/bin/dirmngr 31192 -bin/gzip 31191 -usr/bin/pipewire 31190 -usr/lib/python3/dist-packages/yaml/dumper.py 31189 -usr/bin/pulseaudio 31188 -usr/share/wayland-sessions/gnome.desktop 31181 -usr/libexec/gdm-wayland-session.tails 31180 -usr/libexec/tracker-extract 31179 -usr/libexec/tracker-miner-fs 31172 -usr/lib/x86_64-linux-gnu/libpipewire-0.3.so.0.319.0 31171 -usr/lib/python3/dist-packages/yaml/emitter.py 31170 -usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-14.2.so 31169 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/libtracker-extract.so 31168 -usr/lib/x86_64-linux-gnu/libtracker-miner-2.0.so.0.306.0 31167 -usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.306.0 31166 -usr/lib/x86_64-linux-gnu/libgsf-1.so.114.0.47 31165 -usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1 31164 -usr/libexec/gdm-wayland-session.real 31163 -usr/bin/xz 31162 -usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-support.so 31161 -usr/lib/x86_64-linux-gnu/libicui18n.so.67.1 31160 -usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1 31159 -usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 31158 -usr/lib/x86_64-linux-gnu/libX11.so.6.4.0 31157 -usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-journal.so 31156 -usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.32.0 31154 -usr/lib/x86_64-linux-gnu/libtdb.so.1.4.3 31153 -etc/pipewire/pipewire.conf 31152 -usr/share/dbus-1/session.conf 31151 -usr/lib/python3/dist-packages/yaml/serializer.py 31150 -usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-dbus.so 31149 -usr/lib/python3/dist-packages/yaml/representer.py 31148 -usr/lib/x86_64-linux-gnu/libexempi.so.8.0.2 31147 -usr/lib/python3/dist-packages/yaml/cyaml.py 31146 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-rtkit.so 31145 -usr/lib/python3/dist-packages/_yaml.cpython-39-x86_64-linux-gnu.so 31144 -usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6 31143 -etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31142 -usr/local/share/dbus-1/services/org.boum.tails.AdditionalSoftware.service 31141 -usr/lib/x86_64-linux-gnu/libexif.so.12.3.4 31140 -usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0 31139 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-protocol-native.so 31138 -usr/share/dbus-1/services/ca.desrt.dconf.service 31137 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-profiler.so 31136 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-metadata.so 31135 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-device-factory.so 31134 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-node-factory.so 31133 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-node.so 31132 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-device.so 31131 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-portal.so 31130 -usr/lib/x86_64-linux-gnu/libiptcdata.so.0.3.3 31129 -usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so 31128 -usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.600.2 31127 -usr/share/dbus-1/services/org.a11y.Bus.service 31126 -usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31125 -usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31124 -usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31123 -usr/share/dbus-1/services/org.freedesktop.IBus.service 31122 -usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Extract.service 31121 -usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service 31120 -usr/share/dbus-1/services/org.freedesktop.Tracker1.Writeback.service 31119 -usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31118 -usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31117 -usr/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service 31116 -usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.11.0 31115 -usr/lib/x86_64-linux-gnu/libxml2.so.2.9.10 31114 -usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31113 +etc/cups/cups-files.conf 31397 +etc/cups/cupsd.conf 31396 +etc/papersize 31395 +usr/share/cups/mime/braille.types 31394 +usr/share/cups/mime/command.types 31393 +usr/share/cups/mime/cupsfilters.types 31392 +usr/share/cups/mime/indexbraille.types 31391 +usr/libexec/gdm-session-worker 31390 +etc/pam.d/gdm-launch-environment 31387 +lib/x86_64-linux-gnu/security/pam_nologin.so 31386 +usr/lib/python3/dist-packages/psutil/_psposix.py 31385 +lib/x86_64-linux-gnu/security/pam_keyinit.so 31384 +lib/x86_64-linux-gnu/security/pam_limits.so 31383 +usr/lib/python3/dist-packages/psutil/_psutil_linux.cpython-39-x86_64-linux-gnu.so 31382 +usr/lib/python3/dist-packages/psutil/_psutil_posix.cpython-39-x86_64-linux-gnu.so 31381 +usr/share/cups/mime/mime.types 31380 +usr/share/cups/mime/mimefx.types 31379 +usr/lib/python3.9/lib-dynload/resource.cpython-39-x86_64-linux-gnu.so 31378 +usr/share/cups/mime/pstotiff.types 31377 +etc/cups/raw.types 31376 +usr/share/cups/mime/braille.convs 31375 +usr/share/cups/mime/cupsfilters-ghostscript.convs 31374 +usr/share/cups/mime/cupsfilters-mupdf.convs 31373 +usr/share/cups/mime/cupsfilters-poppler.convs 31372 +usr/share/cups/mime/cupsfilters.convs 31371 +usr/share/cups/mime/mime.convs 31370 +usr/share/cups/mime/mimefx.convs 31369 +lib/x86_64-linux-gnu/security/pam_env.so 31368 +usr/share/cups/mime/pstotiff.convs 31367 +etc/cups/raw.convs 31366 +usr/share/cups/banners/classified 31365 +usr/share/cups/banners/confidential 31364 +usr/share/cups/banners/form 31363 +usr/share/cups/banners/secret 31362 +usr/share/cups/banners/standard 31361 +usr/share/cups/banners/topsecret 31360 +usr/share/cups/banners/unclassified 31359 +usr/share/polkit-1/actions/com.hp.hplip.policy 31357 +usr/share/polkit-1/actions/com.ubuntu.pkexec.synaptic.policy 31356 +usr/share/polkit-1/actions/org.boum.tails.AdditionalSoftware.policy 31355 +usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy 31354 +usr/share/polkit-1/actions/org.dpkg.pkexec.update-alternatives.policy 31353 +usr/share/polkit-1/actions/org.freedesktop.ModemManager1.policy 31352 +usr/share/polkit-1/actions/org.freedesktop.NetworkManager.policy 31351 +usr/share/polkit-1/actions/org.freedesktop.UDisks2.policy 31349 +usr/share/polkit-1/actions/org.freedesktop.accounts.policy 31348 +usr/sbin/cups-browsed 31346 +usr/lib/x86_64-linux-gnu/libavahi-glib.so.1.0.2 31345 +usr/lib/x86_64-linux-gnu/libcupsfilters.so.1.0.0 31344 +usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.11.5 31343 +usr/lib/x86_64-linux-gnu/libpng16.so.16.37.0 31342 +usr/lib/x86_64-linux-gnu/libtiff.so.5.6.0 31341 +usr/lib/x86_64-linux-gnu/libjpeg.so.62.3.0 31340 +usr/lib/x86_64-linux-gnu/liblber-2.4.so.2.11.5 31339 +usr/lib/x86_64-linux-gnu/libsasl2.so.2.0.25 31338 +usr/lib/x86_64-linux-gnu/libwebp.so.6.0.2 31337 +usr/share/polkit-1/actions/org.freedesktop.bolt.policy 31336 +usr/share/polkit-1/actions/org.freedesktop.color.policy 31335 +usr/share/polkit-1/actions/org.freedesktop.hostname1.policy 31334 +usr/share/polkit-1/actions/org.freedesktop.locale1.policy 31333 +usr/share/polkit-1/actions/org.freedesktop.login1.policy 31332 +usr/share/polkit-1/actions/org.freedesktop.network1.policy 31331 +usr/share/polkit-1/actions/org.freedesktop.policykit.policy 31330 +usr/share/polkit-1/actions/org.freedesktop.resolve1.policy 31329 +usr/share/polkit-1/actions/org.freedesktop.systemd1.policy 31328 +usr/share/polkit-1/actions/org.freedesktop.timedate1.policy 31327 +usr/share/polkit-1/actions/org.gnome.controlcenter.datetime.policy 31326 +usr/share/polkit-1/actions/org.gnome.controlcenter.remote-login-helper.policy 31325 +usr/share/polkit-1/actions/org.gnome.controlcenter.user-accounts.policy 31324 +usr/share/polkit-1/actions/org.gnome.gnome-system-monitor.policy 31323 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.power.policy 31322 +usr/share/polkit-1/actions/org.gnome.settings-daemon.plugins.wacom.policy 31321 +usr/share/polkit-1/actions/org.gtk.vfs.file-operations.policy 31320 +usr/share/polkit-1/actions/org.linux.lmt.gui.policy 31319 +usr/share/polkit-1/actions/org.opensuse.cupspkhelper.mechanism.policy 31318 +etc/security/limits.conf 31315 +etc/security/pam_env.conf 31314 +etc/environment 31313 +lib/systemd/system/user@.service 31311 +lib/systemd/system/user-.slice.d/10-defaults.conf 31310 +lib/systemd/system/user-runtime-dir@.service 31309 +usr/lib/x86_64-linux-gnu/libjbig.so.0 31307 +usr/lib/x86_64-linux-gnu/libdeflate.so.0 31306 +etc/cups/cups-browsed.conf 31305 +lib/systemd/systemd-user-runtime-dir 31303 +lib/x86_64-linux-gnu/libnss_dns-2.31.so 31284 +usr/share/cups/locale/en/cups_en.po 31283 +usr/lib/pam.d/systemd-user 31279 +lib/x86_64-linux-gnu/security/pam_selinux.so 31278 +lib/x86_64-linux-gnu/security/pam_loginuid.so 31277 +lib/systemd/systemd 31276 +etc/systemd/user.conf 31275 +usr/lib/systemd/user.conf.d/set-StatusUnitFormat-to-name.conf 31274 +usr/lib/systemd/user-environment-generators/30-systemd-environment-d-generator 31273 +etc/environment.d/90atk-adaptor.conf 31272 +etc/environment.d/90qt-a11y.conf 31271 +usr/lib/systemd/user-environment-generators/90gpg-agent 31270 +usr/bin/gpgconf 31269 +bin/gzip 31268 +usr/bin/xz 31267 +usr/lib/systemd/user-generators/systemd-xdg-autostart-generator 31266 +etc/xdg/autostart/at-spi-dbus-bus.desktop 31265 +etc/xdg/autostart/gnome-keyring-pkcs11.desktop 31264 +etc/xdg/autostart/gnome-keyring-secrets.desktop 31263 +etc/xdg/autostart/gnome-keyring-ssh.desktop 31262 +etc/xdg/autostart/gnome-shell-overrides-migration.desktop 31261 +etc/xdg/autostart/ibus-mozc-gnome-initial-setup.desktop 31260 +etc/xdg/autostart/nm-applet.desktop 31259 +etc/xdg/autostart/orca-autostart.desktop 31258 +etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop 31257 +etc/xdg/autostart/org.gnome.SettingsDaemon.A11ySettings.desktop 31256 +etc/xdg/autostart/org.gnome.SettingsDaemon.Color.desktop 31255 +etc/xdg/autostart/org.gnome.SettingsDaemon.Datetime.desktop 31254 +etc/xdg/autostart/org.gnome.SettingsDaemon.DiskUtilityNotify.desktop 31253 +etc/xdg/autostart/org.gnome.SettingsDaemon.Housekeeping.desktop 31252 +etc/xdg/autostart/org.gnome.SettingsDaemon.Keyboard.desktop 31251 +etc/xdg/autostart/org.gnome.SettingsDaemon.MediaKeys.desktop 31250 +etc/xdg/autostart/org.gnome.SettingsDaemon.Power.desktop 31249 +etc/xdg/autostart/org.gnome.SettingsDaemon.PrintNotifications.desktop 31248 +etc/xdg/autostart/org.gnome.SettingsDaemon.Rfkill.desktop 31247 +etc/xdg/autostart/org.gnome.SettingsDaemon.ScreensaverProxy.desktop 31246 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sharing.desktop 31245 +etc/xdg/autostart/org.gnome.SettingsDaemon.Smartcard.desktop 31244 +etc/xdg/autostart/org.gnome.SettingsDaemon.Sound.desktop 31243 +etc/xdg/autostart/org.gnome.SettingsDaemon.UsbProtection.desktop 31242 +etc/xdg/autostart/org.gnome.SettingsDaemon.Wacom.desktop 31241 +etc/xdg/autostart/org.gnome.SettingsDaemon.Wwan.desktop 31240 +etc/xdg/autostart/org.gnome.SettingsDaemon.XSettings.desktop 31239 +etc/xdg/autostart/pulseaudio.desktop 31238 +etc/xdg/autostart/spice-vdagent.desktop 31237 +etc/xdg/autostart/systemd-desktop-target.desktop 31236 +etc/xdg/autostart/systemd-gnome-early-initialization-target.desktop 31235 +etc/xdg/autostart/tracker-extract.desktop 31234 +etc/xdg/autostart/tracker-miner-fs.desktop 31233 +etc/xdg/autostart/user-dirs-update-gtk.desktop 31232 +etc/xdg/autostart/xdg-user-dirs.desktop 31231 +usr/lib/systemd/user/sound.target 31229 +usr/lib/systemd/user/shutdown.target 31228 +usr/lib/systemd/user/smartcard.target 31227 +usr/lib/systemd/user/default.target 31224 +etc/xdg/systemd/user 31223 +usr/lib/systemd/user/tracker-miner-fs.service 31222 +usr/lib/systemd/user/dbus.socket 31221 +usr/lib/systemd/user/sockets.target 31220 +usr/lib/systemd/user/pulseaudio.socket 31219 +usr/lib/systemd/user/pipewire.socket 31218 +usr/lib/systemd/user/gpg-agent.socket 31217 +usr/lib/systemd/user/gpg-agent.service 31216 +usr/lib/systemd/user/gpg-agent-ssh.socket 31215 +usr/lib/systemd/user/gpg-agent-extra.socket 31214 +usr/lib/systemd/user/gpg-agent-browser.socket 31213 +usr/lib/systemd/user/dirmngr.socket 31212 +usr/lib/systemd/user/dirmngr.service 31211 +usr/lib/systemd/user/dbus.service 31210 +usr/lib/systemd/user/app.slice 31209 +usr/lib/systemd/user/tracker-extract.service 31208 +usr/lib/systemd/user/pulseaudio.service 31207 +usr/lib/systemd/user/pipewire.service 31206 +usr/lib/systemd/user/basic.target 31205 +usr/lib/systemd/user/paths.target 31204 +usr/lib/systemd/user/timers.target 31203 +usr/bin/dirmngr 31201 +usr/bin/pipewire 31200 +usr/bin/pulseaudio 31199 +usr/share/wayland-sessions/gnome.desktop 31192 +usr/libexec/tracker-extract 31190 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/libtracker-extract.so 31188 +usr/libexec/tracker-miner-fs 31186 +usr/lib/x86_64-linux-gnu/libpipewire-0.3.so.0.319.0 31184 +usr/libexec/gdm-wayland-session.tails 31183 +usr/libexec/gdm-wayland-session.real 31182 +usr/lib/x86_64-linux-gnu/libtracker-miner-2.0.so.0.306.0 31179 +usr/lib/x86_64-linux-gnu/libtracker-sparql-2.0.so.0.306.0 31178 +usr/lib/x86_64-linux-gnu/libgsf-1.so.114.0.47 31177 +usr/lib/x86_64-linux-gnu/libicui18n.so.67.1 31176 +usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-support.so 31175 +usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-journal.so 31174 +usr/lib/x86_64-linux-gnu/libupower-glib.so.3.0.1 31173 +etc/pipewire/pipewire.conf 31171 +usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecore-14.2.so 31170 +usr/share/dbus-1/session.conf 31169 +etc/dbus-1/session.d/im.pidgin.purple.PurpleService.conf 31168 +usr/lib/python3/dist-packages/yaml/__init__.py 31167 +usr/lib/x86_64-linux-gnu/spa-0.2/support/libspa-dbus.so 31166 +usr/lib/x86_64-linux-gnu/libexempi.so.8.0.2 31165 +usr/lib/x86_64-linux-gnu/libltdl.so.7.3.1 31164 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-rtkit.so 31163 +usr/local/share/dbus-1/services/org.boum.tails.AdditionalSoftware.service 31162 +usr/lib/python3/dist-packages/yaml/error.py 31161 +usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0 31160 +usr/lib/x86_64-linux-gnu/libX11.so.6.4.0 31159 +usr/lib/x86_64-linux-gnu/libexif.so.12.3.4 31158 +usr/lib/x86_64-linux-gnu/libiptcdata.so.0.3.3 31157 +usr/lib/x86_64-linux-gnu/tracker-2.0/libtracker-data.so 31156 +usr/share/dbus-1/services/ca.desrt.dconf.service 31155 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-protocol-native.so 31154 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-profiler.so 31153 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-metadata.so 31152 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-device-factory.so 31151 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-spa-node-factory.so 31150 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-node.so 31149 +usr/lib/x86_64-linux-gnu/liborc-0.4.so.0.32.0 31148 +usr/lib/x86_64-linux-gnu/libjson-glib-1.0.so.0.600.2 31147 +usr/lib/x86_64-linux-gnu/libsoup-2.4.so.1.11.0 31146 +usr/share/dbus-1/services/org.a11y.Bus.service 31145 +usr/lib/python3/dist-packages/yaml/tokens.py 31144 +usr/lib/x86_64-linux-gnu/libxml2.so.2.9.10 31143 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-client-device.so 31142 +usr/lib/x86_64-linux-gnu/libtdb.so.1.4.3 31141 +usr/lib/python3/dist-packages/yaml/events.py 31140 +usr/lib/python3/dist-packages/yaml/nodes.py 31139 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-portal.so 31138 +usr/lib/python3/dist-packages/yaml/loader.py 31137 +usr/share/dbus-1/services/org.fedoraproject.Config.Printing.service 31136 +usr/lib/x86_64-linux-gnu/libspeexdsp.so.1.5.0 31135 +usr/lib/x86_64-linux-gnu/libicuuc.so.67.1 31134 +usr/share/dbus-1/services/org.freedesktop.ColorHelper.service 31133 +usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.2 31132 +usr/lib/python3/dist-packages/yaml/reader.py 31131 +usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 31130 +usr/lib/python3/dist-packages/yaml/scanner.py 31129 +usr/share/dbus-1/services/org.freedesktop.FileManager1.service 31128 +usr/share/dbus-1/services/org.freedesktop.IBus.service 31127 +usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Extract.service 31126 +usr/share/dbus-1/services/org.freedesktop.Tracker1.Miner.Files.service 31125 +usr/share/dbus-1/services/org.freedesktop.Tracker1.Writeback.service 31124 +usr/share/dbus-1/services/org.freedesktop.Tracker1.service 31123 +usr/share/dbus-1/services/org.freedesktop.impl.portal.PermissionStore.service 31122 +usr/share/dbus-1/services/org.freedesktop.impl.portal.Secret.service 31121 +usr/share/dbus-1/services/org.freedesktop.portal.Desktop.service 31120 +etc/pulse/daemon.conf 31119 +usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 31118 +usr/lib/python3/dist-packages/yaml/parser.py 31117 +usr/lib/python3/dist-packages/yaml/composer.py 31116 +usr/lib/python3/dist-packages/yaml/constructor.py 31115 +usr/lib/python3/dist-packages/yaml/resolver.py 31114 +usr/lib/python3/dist-packages/yaml/dumper.py 31113 usr/share/dbus-1/services/org.freedesktop.portal.Documents.service 31112 usr/share/dbus-1/services/org.freedesktop.portal.IBus.service 31111 usr/share/dbus-1/services/org.freedesktop.secrets.service 31110 @@ -1247,3187 +1248,3189 @@ usr/share/dbus-1/services/org.kde.kioexecd.service 31070 usr/share/dbus-1/services/org.kde.kpasswdserver.service 31069 usr/share/dbus-1/services/org.kde.kssld5.service 31068 usr/share/dbus-1/services/org.kde.kwalletd5.service 31067 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-access.so 31066 -usr/lib/x86_64-linux-gnu/libsoxr.so.0.1.2 31065 -usr/lib/x86_64-linux-gnu/libgomp.so.1.0.0 31064 -usr/bin/dbus-run-session 31063 -etc/pulse/daemon.conf 31062 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-adapter.so 31060 +usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 31066 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-access.so 31065 +usr/lib/python3/dist-packages/yaml/emitter.py 31064 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-adapter.so 31063 +usr/lib/x86_64-linux-gnu/libpsl.so.5.3.2 31062 +usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9 31061 +usr/lib/x86_64-linux-gnu/libicudata.so.67.1 31060 usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-link-factory.so 31059 -usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-session-manager.so 31058 +usr/lib/python3/dist-packages/yaml/serializer.py 31058 etc/pulse/default.pa 31057 -usr/lib/pulse-14.2/modules/module-device-restore.so 31056 -usr/bin/gnome-session 31055 -usr/lib/pulse-14.2/modules/libprotocol-native.so 31054 -usr/lib/x86_64-linux-gnu/libicuuc.so.67.1 31053 -usr/bin/pipewire-media-session 31052 +usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9 31056 +usr/lib/x86_64-linux-gnu/pipewire-0.3/libpipewire-module-session-manager.so 31055 +usr/lib/pulse-14.2/modules/module-device-restore.so 31054 +usr/lib/pulse-14.2/modules/libprotocol-native.so 31053 +usr/lib/python3/dist-packages/yaml/representer.py 31052 usr/lib/pulse-14.2/modules/module-stream-restore.so 31051 -usr/lib/pulse-14.2/modules/module-card-restore.so 31050 -etc/pipewire/media-session.d/media-session.conf 31049 -usr/lib/pulse-14.2/modules/module-augment-properties.so 31048 -usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.28 31047 -usr/bin/gsettings 31046 -usr/lib/x86_64-linux-gnu/spa-0.2/v4l2/libspa-v4l2.so 31045 -usr/lib/pulse-14.2/modules/module-switch-on-port-available.so 31044 -usr/lib/x86_64-linux-gnu/libstemmer.so.0d.0.0 31043 -usr/lib/pulse-14.2/modules/module-udev-detect.so 31042 -usr/lib/x86_64-linux-gnu/libpsl.so.5.3.2 31041 -usr/lib/x86_64-linux-gnu/libbrotlidec.so.1.0.9 31040 -usr/lib/x86_64-linux-gnu/libicudata.so.67.1 31037 -usr/lib/x86_64-linux-gnu/libbrotlicommon.so.1.0.9 31036 -usr/share/glib-2.0/schemas/gschemas.compiled 31035 -usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31034 -usr/lib/pulse-14.2/modules/module-alsa-card.so 31033 -usr/lib/pulse-14.2/modules/libalsa-util.so 31032 -usr/share/dconf/profile/gdm 31031 -usr/share/tracker/domain-ontologies/default.rule 31029 -usr/libexec/gnome-session-binary 31027 -usr/share/alsa/cards/aliases.conf 31026 -usr/share/alsa/pcm/default.conf 31025 -usr/share/alsa/pcm/dmix.conf 31024 -usr/share/alsa/pcm/dsnoop.conf 31023 -usr/share/alsa/cards/HDA-Intel.conf 31022 -usr/share/alsa/pcm/front.conf 31021 -usr/share/alsa/pcm/surround21.conf 31020 -usr/share/alsa/pcm/surround40.conf 31019 -usr/share/alsa/pcm/surround41.conf 31018 -usr/share/alsa/pcm/surround50.conf 31017 -usr/share/alsa/pcm/surround51.conf 31016 -usr/share/alsa/pcm/surround71.conf 31015 -usr/share/alsa/pcm/iec958.conf 31014 -usr/share/alsa/pcm/hdmi.conf 31013 -usr/share/alsa/pcm/modem.conf 31012 -usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so 31011 -usr/lib/x86_64-linux-gnu/libavcodec.so.58.91.100 31010 -usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.19.0.10 31009 -usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 31008 -usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 31007 -usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.4200.2 31006 -usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.20 31005 -usr/lib/x86_64-linux-gnu/libavutil.so.56.51.100 31004 -usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.20 31003 -etc/dconf/profile/user 31002 -usr/lib/x86_64-linux-gnu/libswresample.so.3.7.100 31001 -usr/lib/x86_64-linux-gnu/libvpx.so.6.3.0 31000 -usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 30999 -usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1 30998 -usr/lib/x86_64-linux-gnu/libxkbregistry.so.0.0.0 30996 -usr/lib/x86_64-linux-gnu/libdav1d.so.4.0.2 30995 -usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4600.2 30994 -usr/lib/x86_64-linux-gnu/librsvg-2.so.2.47.0 30993 -usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 30992 -usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 30991 -usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 30990 -usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23609.1 30989 -usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 30988 -usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 30987 -usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2 30986 -usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 30985 -usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4600.2 30984 -usr/lib/systemd/user/gvfs-daemon.service 30983 -usr/libexec/gvfsd 30981 -usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4600.2 30980 -usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0 30979 -usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.8 30978 -usr/share/tracker-miners/extract-rules/10-abw.rule 30977 -usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 30976 -usr/lib/x86_64-linux-gnu/libfreetype.so.6.17.4 30975 -usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 30974 -usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 30973 -usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 30972 -usr/lib/x86_64-linux-gnu/libaom.so.0 30971 -usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 30970 -usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0 30969 -usr/share/tracker-miners/extract-rules/10-bmp.rule 30968 -usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 30967 -usr/lib/x86_64-linux-gnu/libcodec2.so.0.9 30966 -usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 30965 -usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 30964 -usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 30963 -usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 30962 -usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 30961 -usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 30960 -usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 30959 -usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 30958 -usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0 30957 -usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 30956 -usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 30955 -usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 30954 -usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 30953 -usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 30952 -usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 30951 -usr/lib/x86_64-linux-gnu/libdatrie.so.1.4.0 30950 -usr/share/tracker-miners/extract-rules/10-comics.rule 30949 -usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18 30948 -usr/share/gvfs/mounts/admin.mount 30947 -usr/share/gvfs/mounts/afc.mount 30945 -usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0 30944 -usr/share/gvfs/mounts/afp-browse.mount 30943 -usr/share/gvfs/mounts/afp.mount 30942 -usr/share/gvfs/mounts/archive.mount 30941 -usr/share/gvfs/mounts/burn.mount 30940 -usr/share/gvfs/mounts/cdda.mount 30939 -usr/share/gvfs/mounts/computer.mount 30938 -usr/share/gvfs/mounts/dav+sd.mount 30937 -usr/share/gvfs/mounts/dav.mount 30936 -usr/share/gvfs/mounts/dns-sd.mount 30935 -usr/share/gvfs/mounts/ftp.mount 30934 -usr/share/gvfs/mounts/ftpis.mount 30933 -usr/share/gvfs/mounts/ftps.mount 30932 -usr/share/gvfs/mounts/google.mount 30931 -usr/share/gvfs/mounts/gphoto2.mount 30930 -usr/share/gvfs/mounts/http.mount 30929 -usr/share/gvfs/mounts/localtest.mount 30928 -usr/share/gvfs/mounts/mtp.mount 30927 -usr/share/gvfs/mounts/network.mount 30926 -usr/share/gvfs/mounts/nfs.mount 30925 -usr/share/gvfs/mounts/recent.mount 30924 -usr/share/gvfs/mounts/sftp.mount 30923 -usr/share/gvfs/mounts/smb-browse.mount 30922 -usr/share/gvfs/mounts/smb.mount 30921 -usr/share/gvfs/mounts/trash.mount 30920 -usr/lib/x86_64-linux-gnu/libopenjp2.so.2.4.0 30919 -usr/lib/x86_64-linux-gnu/libshine.so.3.0.1 30918 -usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0 30917 -usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2 30916 -usr/share/tracker-miners/extract-rules/10-desktop.rule 30915 -usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4 30914 -usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0 30913 -usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.3 30912 -usr/lib/x86_64-linux-gnu/libx264.so.160 30911 -usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30910 -usr/share/gvfs/remote-volume-monitors/afc.monitor 30909 -usr/share/gvfs/remote-volume-monitors/goa.monitor 30908 -usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 30907 -usr/share/gvfs/remote-volume-monitors/mtp.monitor 30906 -usr/share/gvfs/remote-volume-monitors/udisks2.monitor 30905 -usr/share/gnome-session/sessions/gdm-tails.session 30904 -usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 30903 -usr/share/applications/tails-greeter.desktop 30902 -usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 30901 -usr/share/gdm/greeter/autostart/orca-autostart.desktop 30900 -usr/share/tracker-miners/extract-rules/10-dvi.rule 30899 -usr/lib/x86_64-linux-gnu/libx265.so.192 30898 -usr/libexec/gvfs-udisks2-volume-monitor 30896 -usr/bin/gnome-shell 30893 -usr/lib/x86_64-linux-gnu/libbluray.so.2.3.0 30892 -usr/lib/x86_64-linux-gnu/libudfread.so.0.1.0 30891 -usr/lib/gnome-shell/libgnome-shell.so 30890 -usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3 30889 -usr/lib/x86_64-linux-gnu/libva.so.2.1000.0 30888 -usr/lib/x86_64-linux-gnu/libmfx.so.1.34 30887 -usr/lib/x86_64-linux-gnu/libgjs.so.0.0.0 30886 -usr/share/tracker-miners/extract-rules/10-ebooks.rule 30885 -usr/lib/x86_64-linux-gnu/libva-drm.so.2.1000.0 30884 -usr/lib/x86_64-linux-gnu/libva-x11.so.2.1000.0 30883 -usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0 30882 -usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 30881 -usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0 30880 -usr/lib/x86_64-linux-gnu/mutter-7/libmutter-clutter-7.so.0.0.0 30879 -usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 30878 -usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 30877 +usr/lib/python3/dist-packages/yaml/cyaml.py 31050 +usr/lib/python3/dist-packages/_yaml.cpython-39-x86_64-linux-gnu.so 31049 +usr/lib/x86_64-linux-gnu/libyaml-0.so.2.0.6 31048 +usr/share/tracker/domain-ontologies/default.rule 31047 +usr/bin/dbus-run-session 31046 +usr/bin/pipewire-media-session 31045 +etc/pipewire/media-session.d/media-session.conf 31044 +usr/lib/x86_64-linux-gnu/spa-0.2/v4l2/libspa-v4l2.so 31043 +usr/lib/pulse-14.2/modules/module-card-restore.so 31042 +usr/bin/gnome-session 31041 +usr/bin/gsettings 31040 +usr/share/glib-2.0/schemas/gschemas.compiled 31038 +usr/lib/pulse-14.2/modules/module-augment-properties.so 31037 +usr/lib/x86_64-linux-gnu/gio/modules/libdconfsettings.so 31036 +usr/share/dconf/profile/gdm 31035 +etc/dconf/profile/user 31033 +usr/libexec/gnome-session-binary 31032 +usr/lib/x86_64-linux-gnu/libgnome-desktop-3.so.19.0.10 31031 +usr/lib/x86_64-linux-gnu/libICE.so.6.3.0 31029 +usr/lib/x86_64-linux-gnu/libSM.so.6.0.1 31028 +usr/share/tracker-miners/extract-rules/10-abw.rule 31027 +usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.4200.2 31026 +usr/lib/x86_64-linux-gnu/libgtk-3.so.0.2404.20 31025 +usr/lib/pulse-14.2/modules/module-switch-on-port-available.so 31024 +usr/lib/systemd/user/gvfs-daemon.service 31023 +usr/lib/x86_64-linux-gnu/libgdk-3.so.0.2404.20 31022 +usr/lib/pulse-14.2/modules/module-udev-detect.so 31021 +usr/share/tracker-miners/extract-rules/10-bmp.rule 31020 +usr/libexec/gvfsd 31017 +usr/lib/x86_64-linux-gnu/gvfs/libgvfsdaemon.so 31015 +usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0 31014 +usr/lib/x86_64-linux-gnu/libgcr-base-3.so.1.0.0 31013 +usr/lib/x86_64-linux-gnu/libxkbregistry.so.0.0.0 31012 +usr/lib/x86_64-linux-gnu/libsecret-1.so.0.0.0 31011 +usr/lib/x86_64-linux-gnu/libgck-1.so.0.0.0 31010 +usr/lib/pulse-14.2/modules/module-alsa-card.so 31009 +usr/lib/x86_64-linux-gnu/libpangocairo-1.0.so.0.4600.2 31008 +usr/share/tracker-miners/extract-rules/10-comics.rule 31007 +usr/lib/x86_64-linux-gnu/libXi.so.6.1.0 31006 +usr/lib/pulse-14.2/modules/libalsa-util.so 31005 +usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0 31004 +usr/lib/x86_64-linux-gnu/libcairo-gobject.so.2.11600.0 31003 +usr/lib/x86_64-linux-gnu/libatk-1.0.so.0.23609.1 31002 +usr/lib/x86_64-linux-gnu/libatk-bridge-2.0.so.0.0.0 31001 +usr/lib/x86_64-linux-gnu/libepoxy.so.0.0.0 31000 +usr/share/gvfs/mounts/admin.mount 30999 +usr/share/gvfs/mounts/afc.mount 30998 +usr/share/gvfs/mounts/afp-browse.mount 30997 +usr/share/gvfs/mounts/afp.mount 30996 +usr/share/gvfs/mounts/archive.mount 30995 +usr/share/gvfs/mounts/burn.mount 30994 +usr/share/gvfs/mounts/cdda.mount 30993 +usr/share/gvfs/mounts/computer.mount 30992 +usr/share/gvfs/mounts/dav+sd.mount 30991 +usr/share/gvfs/mounts/dav.mount 30990 +usr/share/gvfs/mounts/dns-sd.mount 30989 +usr/share/gvfs/mounts/ftp.mount 30988 +usr/share/gvfs/mounts/ftpis.mount 30987 +usr/share/gvfs/mounts/ftps.mount 30986 +usr/share/gvfs/mounts/google.mount 30985 +usr/share/gvfs/mounts/gphoto2.mount 30984 +usr/share/gvfs/mounts/http.mount 30983 +usr/share/gvfs/mounts/localtest.mount 30982 +usr/share/gvfs/mounts/mtp.mount 30981 +usr/share/gvfs/mounts/network.mount 30980 +usr/share/gvfs/mounts/nfs.mount 30979 +usr/share/gvfs/mounts/recent.mount 30978 +usr/share/gvfs/mounts/sftp.mount 30977 +usr/share/gvfs/mounts/smb-browse.mount 30976 +usr/share/gvfs/mounts/smb.mount 30975 +usr/share/gvfs/mounts/trash.mount 30974 +usr/lib/x86_64-linux-gnu/libfribidi.so.0.4.0 30972 +usr/share/tracker-miners/extract-rules/10-desktop.rule 30971 +usr/lib/x86_64-linux-gnu/libpangoft2-1.0.so.0.4600.2 30970 +usr/lib/x86_64-linux-gnu/libpango-1.0.so.0.4600.2 30969 +usr/share/tracker-miners/extract-rules/10-dvi.rule 30968 +usr/share/alsa/cards/aliases.conf 30967 +usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.20704.0 30966 +usr/share/alsa/pcm/default.conf 30965 +usr/share/alsa/pcm/dmix.conf 30964 +usr/share/alsa/pcm/dsnoop.conf 30963 +usr/lib/x86_64-linux-gnu/libfontconfig.so.1.12.0 30962 +usr/share/alsa/cards/HDA-Intel.conf 30961 +usr/share/alsa/pcm/front.conf 30960 +usr/share/alsa/pcm/surround21.conf 30959 +usr/share/alsa/pcm/surround40.conf 30958 +usr/share/alsa/pcm/surround41.conf 30957 +usr/share/alsa/pcm/surround50.conf 30956 +usr/share/alsa/pcm/surround51.conf 30955 +usr/lib/x86_64-linux-gnu/libfreetype.so.6.17.4 30954 +usr/share/alsa/pcm/surround71.conf 30953 +usr/share/alsa/pcm/iec958.conf 30952 +usr/share/alsa/pcm/hdmi.conf 30951 +usr/share/alsa/pcm/modem.conf 30950 +usr/lib/x86_64-linux-gnu/alsa-lib/libasound_module_pcm_a52.so 30949 +usr/lib/x86_64-linux-gnu/libavcodec.so.58.91.100 30948 +usr/lib/x86_64-linux-gnu/libXinerama.so.1.0.0 30947 +usr/lib/x86_64-linux-gnu/gio/modules/libgioremote-volume-monitor.so 30946 +usr/share/tracker-miners/extract-rules/10-ebooks.rule 30945 +usr/lib/x86_64-linux-gnu/libXrandr.so.2.2.0 30944 +usr/share/tracker-miners/extract-rules/10-epub.rule 30943 +usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2 30942 +usr/lib/x86_64-linux-gnu/libXcomposite.so.1.0.0 30941 +usr/lib/x86_64-linux-gnu/libXdamage.so.1.1.0 30940 +usr/share/gvfs/remote-volume-monitors/afc.monitor 30939 +usr/lib/x86_64-linux-gnu/libxkbcommon.so.0.0.0 30938 +usr/lib/x86_64-linux-gnu/libwayland-cursor.so.0.0.0 30937 +usr/lib/x86_64-linux-gnu/libwayland-egl.so.1.0.0 30936 +usr/lib/x86_64-linux-gnu/libavutil.so.56.51.100 30935 +usr/share/tracker-miners/extract-rules/10-flac.rule 30934 +usr/share/gvfs/remote-volume-monitors/goa.monitor 30933 +usr/share/gvfs/remote-volume-monitors/gphoto2.monitor 30932 +usr/share/gvfs/remote-volume-monitors/mtp.monitor 30931 +usr/share/gvfs/remote-volume-monitors/udisks2.monitor 30930 +usr/share/tracker-miners/extract-rules/10-gif.rule 30929 +usr/lib/x86_64-linux-gnu/libswresample.so.3.7.100 30928 +usr/lib/x86_64-linux-gnu/libwayland-client.so.0.3.0 30927 +usr/lib/x86_64-linux-gnu/libvpx.so.6.3.0 30926 +usr/lib/systemd/user/gvfs-udisks2-volume-monitor.service 30925 +usr/share/tracker-miners/extract-rules/10-html.rule 30924 +usr/lib/x86_64-linux-gnu/libXext.so.6.4.0 30923 +usr/lib/x86_64-linux-gnu/libpixman-1.so.0.40.0 30922 +usr/libexec/gvfs-udisks2-volume-monitor 30921 +usr/lib/x86_64-linux-gnu/libxcb-shm.so.0.0.0 30919 +usr/lib/x86_64-linux-gnu/libxcb-render.so.0.0.0 30918 +usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0 30917 +usr/lib/x86_64-linux-gnu/libwebpmux.so.3.0.1 30916 +usr/lib/x86_64-linux-gnu/libatspi.so.0.0.1 30915 +usr/lib/x86_64-linux-gnu/libbluray.so.2.3.0 30914 +usr/lib/x86_64-linux-gnu/libudfread.so.0.1.0 30913 +usr/lib/x86_64-linux-gnu/libthai.so.0.3.1 30912 +usr/lib/x86_64-linux-gnu/libgraphite2.so.3.2.1 30911 +usr/lib/x86_64-linux-gnu/libdatrie.so.1.4.0 30910 +usr/lib/x86_64-linux-gnu/libdav1d.so.4.0.2 30909 +usr/share/tracker-miners/extract-rules/10-ico.rule 30907 +usr/lib/x86_64-linux-gnu/librsvg-2.so.2.47.0 30906 +usr/share/tracker-miners/extract-rules/10-jpeg.rule 30905 +usr/share/tracker-miners/extract-rules/10-mp3.rule 30904 +usr/share/tracker-miners/extract-rules/10-msoffice.rule 30903 +usr/share/tracker-miners/extract-rules/10-oasis.rule 30902 +usr/share/tracker-miners/extract-rules/10-pdf.rule 30901 +usr/share/tracker-miners/extract-rules/10-png.rule 30900 +usr/share/tracker-miners/extract-rules/10-ps.rule 30899 +usr/share/tracker-miners/extract-rules/10-raw.rule 30898 +usr/share/tracker-miners/extract-rules/10-svg.rule 30897 +usr/share/tracker-miners/extract-rules/10-tiff.rule 30896 +usr/share/tracker-miners/extract-rules/10-vorbis.rule 30895 +usr/share/tracker-miners/extract-rules/10-xmp.rule 30894 +usr/share/tracker-miners/extract-rules/10-xps.rule 30893 +usr/share/tracker-miners/extract-rules/11-iso.rule 30892 +usr/share/tracker-miners/extract-rules/11-msoffice-xml.rule 30891 +usr/share/tracker-miners/extract-rules/15-gstreamer-guess.rule 30890 +usr/share/gnome-session/sessions/gdm-tails.session 30889 +usr/share/tracker-miners/extract-rules/15-playlist.rule 30888 +usr/share/tracker-miners/extract-rules/15-source-code.rule 30887 +usr/share/tracker-miners/extract-rules/90-gstreamer-audio-generic.rule 30886 +usr/share/tracker-miners/extract-rules/90-gstreamer-video-generic.rule 30885 +usr/share/tracker-miners/extract-rules/90-text-generic.rule 30884 +usr/lib/x86_64-linux-gnu/libzvbi.so.0.13.2 30883 +usr/lib/x86_64-linux-gnu/libsnappy.so.1.1.8 30882 +usr/lib/x86_64-linux-gnu/libaom.so.0 30881 +usr/lib/systemd/user/gvfs-mtp-volume-monitor.service 30880 +usr/share/gdm/greeter/applications/gdm-shell-tails.desktop 30879 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-abw.so 30878 +usr/share/applications/tails-greeter.desktop 30877 usr/libexec/gvfs-mtp-volume-monitor 30875 -usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-pango-7.so.0.0.0 30874 -usr/lib/x86_64-linux-gnu/libmutter-7.so.0.0.0 30873 -usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 30872 -usr/libexec/gvfs-gphoto2-volume-monitor 30871 -usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 30870 -usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 30868 -usr/share/tracker-miners/extract-rules/10-epub.rule 30867 -usr/lib/gnome-shell/libgnome-shell-menu.so 30866 -usr/lib/gnome-shell/libst-1.0.so 30865 -usr/lib/systemd/user/gvfs-goa-volume-monitor.service 30864 -usr/share/tracker-miners/extract-rules/10-flac.rule 30863 -usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-7.so.0.0.0 30862 -usr/share/tracker-miners/extract-rules/10-gif.rule 30861 -usr/libexec/gvfs-goa-volume-monitor 30859 -usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 30858 -usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 30857 -usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0 30856 -usr/share/tracker-miners/extract-rules/10-html.rule 30855 -usr/share/tracker-miners/extract-rules/10-ico.rule 30854 -usr/share/tracker-miners/extract-rules/10-jpeg.rule 30853 -usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 30852 -usr/share/tracker-miners/extract-rules/10-mp3.rule 30851 -usr/share/tracker-miners/extract-rules/10-msoffice.rule 30850 -usr/share/tracker-miners/extract-rules/10-oasis.rule 30849 -usr/share/tracker-miners/extract-rules/10-pdf.rule 30848 -usr/share/tracker-miners/extract-rules/10-png.rule 30847 -usr/share/tracker-miners/extract-rules/10-ps.rule 30846 -usr/share/tracker-miners/extract-rules/10-raw.rule 30845 -usr/share/tracker-miners/extract-rules/10-svg.rule 30844 -usr/share/tracker-miners/extract-rules/10-tiff.rule 30843 -usr/share/tracker-miners/extract-rules/10-vorbis.rule 30842 -usr/share/tracker-miners/extract-rules/10-xmp.rule 30841 -usr/share/tracker-miners/extract-rules/10-xps.rule 30840 -usr/share/tracker-miners/extract-rules/11-iso.rule 30839 -usr/share/tracker-miners/extract-rules/11-msoffice-xml.rule 30838 -usr/share/tracker-miners/extract-rules/15-gstreamer-guess.rule 30837 -usr/share/tracker-miners/extract-rules/15-playlist.rule 30836 -usr/lib/x86_64-linux-gnu/libmozjs-78.so.78.4.0 30835 -usr/lib/systemd/user/gvfs-afc-volume-monitor.service 30834 -usr/lib/x86_64-linux-gnu/libgraphene-1.0.so.0.1000.4 30833 -usr/libexec/gvfs-afc-volume-monitor 30831 -usr/lib/x86_64-linux-gnu/libimobiledevice-1.0.so.6.0.0 30830 -usr/lib/x86_64-linux-gnu/libplist-2.0.so.3.3.0 30829 -usr/lib/x86_64-linux-gnu/libusbmuxd-2.0.so.6.0.0 30828 -usr/share/tracker-miners/extract-rules/15-source-code.rule 30827 -usr/share/tracker-miners/extract-rules/90-gstreamer-audio-generic.rule 30826 -usr/share/tracker-miners/extract-rules/90-gstreamer-video-generic.rule 30825 -usr/share/tracker-miners/extract-rules/90-text-generic.rule 30824 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-abw.so 30823 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-bmp.so 30822 -usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 30821 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-desktop.so 30820 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-dvi.so 30819 -usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 30818 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-epub.so 30817 -lib/systemd/system/upower.service 30816 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-flac.so 30815 -usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 30812 -usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1 30811 -usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 30810 -usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 30809 -usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2 30808 -usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0 30807 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gif.so 30806 -usr/lib/x86_64-linux-gnu/libgif.so.7.1.0 30805 -usr/libexec/upowerd 30804 -usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0 30802 -usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0 30801 -usr/lib/x86_64-linux-gnu/libinput.so.10.13.0 30800 -usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 30799 -usr/lib/x86_64-linux-gnu/libGLESv2.so.2.1.0 30798 -usr/lib/x86_64-linux-gnu/libusb-1.0.so.0.3.0 30797 -usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 30796 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-html.so 30794 -usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 30793 -usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.8 30792 -usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0 30791 -usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0 30790 -usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0 30789 -usr/lib/x86_64-linux-gnu/libevdev.so.2.3.0 30788 -etc/UPower/UPower.conf 30787 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-icon.so 30786 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-jpeg.so 30785 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-mp3.so 30784 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice.so 30783 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-oasis.so 30782 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-pdf.so 30780 -usr/lib/x86_64-linux-gnu/libpoppler-glib.so.8.19.0 30779 -usr/lib/x86_64-linux-gnu/libpoppler.so.102.0.0 30778 -usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.12 30738 -usr/lib/systemd/user/tracker-store.service 30737 -usr/share/libwacom/libwacom.stylus 30736 -usr/lib/pulse-14.2/modules/module-native-protocol-unix.so 30735 -usr/libexec/tracker-store 30733 -usr/share/libwacom/xp-pen-star03.tablet 30732 -usr/share/libwacom/xp-pen-g640.tablet 30731 -usr/share/libwacom/xp-pen-g430.tablet 30730 -usr/share/libwacom/wacom-one.tablet 30729 -usr/share/libwacom/volito-4x5.tablet 30728 -usr/share/libwacom/serial-wacf004.tablet 30727 -usr/share/libwacom/one-by-wacom-s-p.tablet 30726 -usr/share/libwacom/one-by-wacom-s-p2.tablet 30725 -usr/share/libwacom/one-by-wacom-m-p.tablet 30724 -usr/share/libwacom/one-by-wacom-m-p2.tablet 30723 -usr/lib/pulse-14.2/modules/module-default-device-restore.so 30722 -usr/share/libwacom/n-trig-pen.tablet 30721 -usr/share/libwacom/mobilestudio-pro-16.tablet 30720 -usr/share/libwacom/mobilestudio-pro-16-3.tablet 30719 -usr/share/libwacom/mobilestudio-pro-16-2.tablet 30718 -usr/share/libwacom/mobilestudio-pro-13.tablet 30717 -usr/share/libwacom/mobilestudio-pro-13-2.tablet 30716 -usr/lib/pulse-14.2/modules/module-always-sink.so 30715 -usr/share/libwacom/isdv4-ef.tablet 30714 -usr/lib/pulse-14.2/modules/module-intended-roles.so 30713 -usr/share/libwacom/isdv4-ed.tablet 30712 -usr/share/libwacom/isdv4-ec.tablet 30711 -usr/share/libwacom/isdv4-e6.tablet 30710 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-png.so 30709 -usr/share/libwacom/isdv4-e5.tablet 30708 -usr/lib/pulse-14.2/modules/module-suspend-on-idle.so 30707 -usr/share/libwacom/isdv4-e3.tablet 30706 -usr/share/libwacom/isdv4-e2.tablet 30705 -usr/share/libwacom/isdv4-93.tablet 30704 -usr/share/libwacom/isdv4-90.tablet 30703 -usr/share/libwacom/isdv4-5222.tablet 30702 -usr/share/libwacom/isdv4-5221.tablet 30701 -usr/share/libwacom/isdv4-5220.tablet 30700 -usr/share/libwacom/isdv4-521f.tablet 30699 -usr/share/libwacom/isdv4-5215.tablet 30698 -usr/lib/pulse-14.2/modules/module-systemd-login.so 30697 -usr/share/libwacom/isdv4-5202.tablet 30696 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-ps.so 30695 -usr/lib/pulse-14.2/modules/module-position-event-sounds.so 30694 -usr/lib/pulse-14.2/modules/module-role-cork.so 30693 -usr/lib/pulse-14.2/modules/module-filter-heuristics.so 30692 -usr/share/libwacom/isdv4-51f6.tablet 30691 -usr/share/libwacom/isdv4-51f5.tablet 30690 -usr/share/libwacom/isdv4-51e9.tablet 30689 -usr/share/libwacom/isdv4-51e2.tablet 30688 -usr/share/libwacom/isdv4-51c7.tablet 30687 -usr/share/libwacom/isdv4-51c4.tablet 30686 -usr/share/libwacom/isdv4-51bf.tablet 30685 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-raw.so 30684 -usr/share/libwacom/isdv4-51be.tablet 30683 -usr/share/libwacom/isdv4-51bd.tablet 30682 -usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 30681 -usr/share/libwacom/isdv4-51bc.tablet 30680 -usr/share/libwacom/isdv4-51bb.tablet 30679 -usr/lib/x86_64-linux-gnu/libexiv2.so.0.27.3 30678 -usr/share/libwacom/isdv4-51ba.tablet 30677 -usr/share/libwacom/isdv4-51b9.tablet 30676 -usr/share/libwacom/isdv4-51b8.tablet 30675 -usr/share/libwacom/isdv4-51b7.tablet 30674 -usr/share/libwacom/isdv4-51b6.tablet 30673 -usr/share/libwacom/isdv4-51b3.tablet 30672 -usr/share/libwacom/isdv4-51b2.tablet 30671 -usr/share/libwacom/isdv4-51b1.tablet 30670 -usr/share/libwacom/isdv4-51b0.tablet 30669 -usr/share/libwacom/isdv4-51af.tablet 30668 -usr/share/libwacom/isdv4-51a0.tablet 30667 -usr/share/libwacom/isdv4-5196.tablet 30666 -usr/share/libwacom/isdv4-517d.tablet 30665 -usr/share/libwacom/isdv4-516b.tablet 30664 -usr/share/libwacom/isdv4-5169.tablet 30663 -usr/share/libwacom/isdv4-515a.tablet 30662 -usr/share/libwacom/isdv4-5158.tablet 30661 -usr/share/libwacom/isdv4-5157.tablet 30660 -usr/share/libwacom/isdv4-5150.tablet 30659 -usr/share/libwacom/isdv4-5148.tablet 30658 -usr/share/libwacom/isdv4-5147.tablet 30657 -usr/share/libwacom/isdv4-5146.tablet 30656 -usr/share/libwacom/isdv4-5144.tablet 30655 -usr/share/libwacom/isdv4-513b.tablet 30654 -usr/share/libwacom/isdv4-5128.tablet 30653 -usr/share/libwacom/isdv4-5122.tablet 30652 -usr/share/libwacom/isdv4-5115.tablet 30651 -usr/share/libwacom/isdv4-5110.tablet 30650 -usr/share/libwacom/isdv4-50fd.tablet 30649 -usr/share/libwacom/isdv4-50f8.tablet 30648 -usr/share/libwacom/isdv4-50f1.tablet 30647 -usr/share/libwacom/isdv4-50ef.tablet 30646 -usr/share/libwacom/isdv4-50e9.tablet 30645 -usr/share/libwacom/isdv4-50db.tablet 30644 -usr/share/libwacom/isdv4-50b8.tablet 30643 -usr/share/libwacom/isdv4-50b6.tablet 30642 -usr/share/libwacom/isdv4-50b4.tablet 30641 -usr/share/libwacom/isdv4-509f.tablet 30640 -usr/share/libwacom/isdv4-509d.tablet 30639 -usr/share/libwacom/isdv4-5099.tablet 30638 -usr/share/libwacom/isdv4-5090.tablet 30637 -usr/share/libwacom/isdv4-5072.tablet 30636 -usr/share/libwacom/isdv4-504a.tablet 30635 -usr/share/libwacom/isdv4-5048.tablet 30634 -usr/share/libwacom/isdv4-5044.tablet 30633 -usr/share/libwacom/isdv4-5040.tablet 30632 -usr/share/libwacom/isdv4-503f.tablet 30631 -usr/share/libwacom/isdv4-503e.tablet 30630 -usr/share/libwacom/isdv4-502a.tablet 30629 -usr/share/libwacom/isdv4-5014.tablet 30628 -usr/share/libwacom/isdv4-5013.tablet 30627 -usr/share/libwacom/isdv4-5010.tablet 30626 -usr/share/libwacom/isdv4-5002.tablet 30625 -usr/share/libwacom/isdv4-5000.tablet 30624 -usr/share/libwacom/isdv4-4988.tablet 30623 -usr/share/libwacom/isdv4-496c.tablet 30622 -usr/share/libwacom/isdv4-495f.tablet 30621 -usr/lib/pulse-14.2/modules/module-filter-apply.so 30620 -usr/share/tracker/ontologies/nepomuk/30-nie.ontology 30619 -usr/share/libwacom/isdv4-4957.tablet 30618 -usr/share/libwacom/isdv4-490b.tablet 30617 -usr/share/libwacom/isdv4-490a.tablet 30616 -usr/share/libwacom/isdv4-48f6.tablet 30615 -usr/share/libwacom/isdv4-48ee.tablet 30614 -usr/share/libwacom/isdv4-48ed.tablet 30613 -usr/share/libwacom/isdv4-48ec.tablet 30612 -usr/share/libwacom/isdv4-48eb.tablet 30611 -usr/share/libwacom/isdv4-48d6.tablet 30610 -usr/share/libwacom/isdv4-48ce.tablet 30609 -usr/share/libwacom/isdv4-48ca.tablet 30608 -usr/share/libwacom/isdv4-48c9.tablet 30607 -usr/share/libwacom/isdv4-488f.tablet 30606 -usr/share/libwacom/isdv4-4875.tablet 30605 -usr/share/libwacom/isdv4-4870.tablet 30604 -usr/share/libwacom/isdv4-486a.tablet 30603 -usr/share/libwacom/isdv4-4865.tablet 30602 -usr/share/libwacom/isdv4-485e.tablet 30601 -usr/share/tracker/ontologies/nepomuk/32-nco.ontology 30600 -usr/share/libwacom/isdv4-4851.tablet 30599 -usr/share/libwacom/isdv4-484c.tablet 30598 -usr/share/libwacom/isdv4-4841.tablet 30597 -usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 30596 -usr/share/libwacom/isdv4-4838.tablet 30595 -usr/share/libwacom/isdv4-4834.tablet 30594 -usr/share/libwacom/isdv4-4831.tablet 30593 -usr/share/libwacom/isdv4-4824.tablet 30592 -usr/share/libwacom/isdv4-4822.tablet 30591 -usr/share/libwacom/isdv4-481a.tablet 30590 -usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 30589 -usr/share/libwacom/isdv4-4814.tablet 30588 -usr/share/libwacom/isdv4-4809.tablet 30587 -usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 30586 -usr/share/libwacom/isdv4-4807.tablet 30585 -usr/share/libwacom/isdv4-4806.tablet 30584 -usr/share/libwacom/isdv4-4800.tablet 30583 -usr/share/libwacom/isdv4-4004.tablet 30582 -usr/share/libwacom/isdv4-2d1f-002e.tablet 30581 -usr/share/libwacom/isdv4-2d1f-001e.tablet 30580 -usr/share/tracker/ontologies/nepomuk/36-scal.ontology 30579 -usr/share/libwacom/isdv4-149.tablet 30578 -usr/share/libwacom/isdv4-12c.tablet 30577 -usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 30576 -usr/share/libwacom/isdv4-124.tablet 30575 -usr/share/libwacom/isdv4-117.tablet 30574 -usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 30573 -usr/share/tracker/ontologies/nepomuk/39-mto.ontology 30572 -usr/share/libwacom/isdv4-116.tablet 30571 -usr/share/libwacom/isdv4-114.tablet 30570 -usr/share/libwacom/isdv4-10f.tablet 30569 -usr/share/libwacom/isdv4-10e.tablet 30568 -usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 30567 -usr/share/libwacom/isdv4-10d.tablet 30566 -usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 30565 -usr/share/libwacom/isdv4-104.tablet 30564 -usr/share/libwacom/isdv4-101.tablet 30563 -usr/share/libwacom/isdv4-100.tablet 30562 -usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 30561 -usr/share/libwacom/intuos-s-pt.tablet 30560 -usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 30559 -usr/share/libwacom/intuos-s-p.tablet 30558 -usr/share/libwacom/intuos-s-pt2.tablet 30557 -usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 30556 -usr/share/libwacom/intuos-s-p3-wl.tablet 30555 -usr/share/libwacom/intuos-s-p3-wl-android.tablet 30554 -usr/share/tracker/ontologies/nepomuk/92-slo.ontology 30553 -usr/share/libwacom/intuos-s-p3.tablet 30552 -usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 30551 -usr/share/libwacom/intuos-s-p3-android.tablet 30550 -usr/share/libwacom/intuos-s-p2.tablet 30549 -usr/share/libwacom/intuos-pro-s.tablet 30548 -usr/share/libwacom/intuos-pro-m.tablet 30547 -usr/share/libwacom/intuos-pro-l.tablet 30546 -usr/share/libwacom/intuos-pro-2-s.tablet 30545 -usr/share/libwacom/intuos-pro-2-m.tablet 30544 -usr/share/libwacom/intuos-pro-2-l.tablet 30543 -usr/share/libwacom/intuos-m-pt.tablet 30542 -usr/share/libwacom/intuos-m-p.tablet 30541 -usr/share/libwacom/intuos-m-pt2.tablet 30540 -usr/share/libwacom/intuos-m-p3-wl.tablet 30539 -usr/share/libwacom/intuos-m-p3-wl-android.tablet 30538 -usr/share/libwacom/intuos-m-p3.tablet 30537 -usr/share/libwacom/intuos-m-p3-android.tablet 30536 -usr/share/libwacom/intuos-m-p2.tablet 30535 -usr/share/libwacom/intuos-9x12.tablet 30534 -usr/share/libwacom/intuos-6x8.tablet 30533 -usr/share/libwacom/intuos5-touch-s.tablet 30532 -usr/share/libwacom/intuos5-touch-m.tablet 30531 -usr/share/libwacom/intuos5-touch-l.tablet 30530 -usr/share/libwacom/intuos5-s.tablet 30529 -usr/share/libwacom/intuos5-m.tablet 30528 -usr/share/libwacom/intuos-4x5.tablet 30527 -usr/share/libwacom/intuos4-8x13.tablet 30526 -usr/share/libwacom/intuos4-6x9-wl.tablet 30525 -usr/share/libwacom/intuos4-6x9.tablet 30524 -usr/share/libwacom/intuos4-4x6.tablet 30523 -usr/share/libwacom/intuos4-12x19.tablet 30522 -usr/share/libwacom/intuos3-9x12.tablet 30521 -usr/share/libwacom/intuos3-6x8.tablet 30520 -usr/share/libwacom/intuos3-6x11.tablet 30519 -usr/share/libwacom/intuos3-4x6.tablet 30518 -usr/share/libwacom/intuos3-4x5.tablet 30517 -usr/share/libwacom/intuos3-12x19.tablet 30516 -usr/share/libwacom/intuos3-12x12.tablet 30515 -usr/share/libwacom/intuos2-9x12.tablet 30514 -usr/share/libwacom/intuos2-6x8.tablet 30513 -usr/share/libwacom/intuos2-4x5.tablet 30512 -usr/share/libwacom/intuos2-12x18.tablet 30511 -usr/share/libwacom/intuos2-12x12.tablet 30510 -usr/share/libwacom/intuos-12x18.tablet 30509 -usr/share/libwacom/intuos-12x12.tablet 30508 -usr/share/libwacom/huion-new-1060-plus.tablet 30507 -usr/share/libwacom/huion-h950p.tablet 30506 -usr/share/libwacom/huion-h610-pro.tablet 30505 -usr/share/libwacom/huion-h420.tablet 30504 -usr/share/libwacom/huion-420.tablet 30503 -usr/share/libwacom/graphire-wireless-8x6.tablet 30502 -usr/share/libwacom/graphire-usb.tablet 30501 -usr/share/libwacom/graphire4-6x8.tablet 30500 -usr/share/libwacom/graphire4-4x5.tablet 30499 -usr/share/libwacom/graphire3-6x8.tablet 30498 -usr/share/libwacom/graphire3-4x5.tablet 30497 -usr/share/libwacom/graphire2-5x7.tablet 30496 -usr/share/libwacom/graphire2-4x5.tablet 30495 -usr/share/libwacom/generic.tablet 30494 -usr/share/libwacom/gaomon-s620.tablet 30493 -usr/share/libwacom/gaomon-s56k.tablet 30492 -usr/share/libwacom/elan-5515.tablet 30491 -usr/share/libwacom/elan-29b6.tablet 30490 -usr/share/libwacom/elan-29a1.tablet 30489 -usr/share/libwacom/elan-264c.tablet 30488 -usr/share/libwacom/elan-262b.tablet 30487 -usr/share/libwacom/elan-2628.tablet 30486 -usr/share/libwacom/elan-2627.tablet 30485 -usr/share/libwacom/elan-2537.tablet 30484 -usr/share/libwacom/elan-2514.tablet 30483 -usr/share/libwacom/elan-2514-alt.tablet 30482 -usr/share/libwacom/elan-24db.tablet 30481 -usr/share/libwacom/elan-22e2.tablet 30480 -usr/share/libwacom/elan-2072.tablet 30479 -usr/share/libwacom/elan-0732.tablet 30478 -usr/share/libwacom/ek-remote.tablet 30477 -usr/share/libwacom/dtu-2231.tablet 30476 -usr/share/libwacom/dtu-1931.tablet 30475 -usr/share/libwacom/dtu-1631.tablet 30474 -usr/share/libwacom/dtu-1141.tablet 30473 -usr/share/libwacom/dtu-1141b.tablet 30472 -usr/share/libwacom/dtu-1031x.tablet 30471 -usr/share/libwacom/dtu-1031.tablet 30470 -usr/share/libwacom/dtk-2451.tablet 30469 -usr/share/libwacom/dtk-2241.tablet 30468 -usr/share/libwacom/dtk-1660e.tablet 30467 -usr/share/libwacom/dtk-1660e-2.tablet 30466 -usr/share/libwacom/dtk-1651.tablet 30465 -usr/share/libwacom/dti-520.tablet 30464 -usr/share/libwacom/dth-2452.tablet 30463 -usr/share/libwacom/dth-2242.tablet 30462 -usr/share/libwacom/dth-1152.tablet 30461 -usr/share/libwacom/dtf-720.tablet 30460 -usr/share/libwacom/dell-canvas-27.tablet 30459 -usr/share/libwacom/cintiq-pro-32.tablet 30458 -usr/share/libwacom/cintiq-pro-24-pt.tablet 30457 -usr/share/libwacom/cintiq-pro-24-p.tablet 30456 -usr/share/libwacom/cintiq-pro-16.tablet 30455 -usr/share/libwacom/cintiq-pro-13.tablet 30454 -usr/share/libwacom/cintiq-companion.tablet 30453 -usr/share/libwacom/cintiq-companion-hybrid.tablet 30452 -usr/share/libwacom/cintiq-companion-2.tablet 30451 -usr/share/libwacom/cintiq-27hdt.tablet 30450 -usr/share/libwacom/cintiq-27hd.tablet 30449 -usr/share/libwacom/cintiq-24hd-touch.tablet 30448 -usr/share/libwacom/cintiq-24hd.tablet 30447 -usr/share/libwacom/cintiq-22.tablet 30446 -usr/share/libwacom/cintiq-22hdt.tablet 30445 -usr/share/libwacom/cintiq-22hd.tablet 30444 -usr/share/libwacom/cintiq-21ux.tablet 30443 -usr/share/libwacom/cintiq-21ux2.tablet 30442 -usr/share/libwacom/cintiq-20wsx.tablet 30441 -usr/share/libwacom/cintiq-16.tablet 30440 -usr/share/libwacom/cintiq-16-2.tablet 30439 -usr/share/libwacom/cintiq-13hdt.tablet 30438 -usr/share/libwacom/cintiq-13hd.tablet 30437 -usr/share/libwacom/cintiq-12wx.tablet 30436 -usr/share/libwacom/bamboo-pad-wireless.tablet 30435 -usr/share/libwacom/bamboo-pad.tablet 30434 -usr/share/libwacom/bamboo-one.tablet 30433 -usr/share/libwacom/bamboo-one-m-p.tablet 30432 -usr/share/libwacom/bamboo-4fg-s-t.tablet 30431 -usr/share/libwacom/bamboo-4fg-s-pt.tablet 30430 -usr/share/libwacom/bamboo-4fg-se-s-pt.tablet 30429 -usr/share/libwacom/bamboo-4fg-se-m-pt.tablet 30428 -usr/share/libwacom/bamboo-4fg-fun-s.tablet 30427 -usr/share/libwacom/bamboo-4fg-fun-m.tablet 30426 -usr/share/libwacom/bamboo-2fg-s-t.tablet 30425 -usr/share/libwacom/bamboo-2fg-s-pt.tablet 30424 -usr/share/libwacom/bamboo-2fg-s-p.tablet 30423 -usr/share/libwacom/bamboo-2fg-m-p.tablet 30422 -usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet 30421 -usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet 30420 -usr/share/libwacom/bamboo-16fg-s-t.tablet 30419 -usr/share/libwacom/bamboo-16fg-s-pt.tablet 30418 -usr/share/libwacom/bamboo-16fg-s-p.tablet 30417 -usr/share/libwacom/bamboo-16fg-m-pt.tablet 30416 -usr/share/libwacom/bamboo-0fg-s-p.tablet 30415 -usr/share/libwacom/bamboo-0fg-s-p-alt.tablet 30414 -usr/share/libwacom/bamboo-0fg-m-p-alt.tablet 30413 -usr/share/glvnd/egl_vendor.d/50_mesa.json 30410 -usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 30409 -usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 30408 -usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 30407 -usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 30406 -usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 30405 -usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 30404 -usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 30403 -usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 30402 -usr/share/drirc.d/00-mesa-defaults.conf 30401 -usr/lib/x86_64-linux-gnu/dri/i965_dri.so 30400 -usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 30399 -usr/share/tracker/stop-words/stopwords.en 30398 -usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 30397 -usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 30396 -usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 30395 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-tiff.so 30394 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-vorbis.so 30393 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xmp.so 30392 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xps.so 30391 -usr/lib/x86_64-linux-gnu/libgxps.so.2.2.4 30390 -usr/lib/x86_64-linux-gnu/libarchive.so.13.4.3 30389 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-iso.so 30388 -usr/lib/x86_64-linux-gnu/libosinfo-1.0.so.0.1008.0 30387 -usr/share/locale/en/LC_MESSAGES/gtk30.mo 30386 -usr/lib/x86_64-linux-gnu/libxslt.so.1.1.34 30385 -usr/share/libinput/10-generic-keyboard.quirks 30384 -usr/share/libinput/10-generic-lid.quirks 30383 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice-xml.so 30382 -usr/share/libinput/10-generic-trackball.quirks 30381 -usr/share/libinput/30-vendor-aiptek.quirks 30380 -usr/share/libinput/30-vendor-alps.quirks 30379 -usr/share/libinput/30-vendor-contour.quirks 30378 -usr/share/libinput/30-vendor-cypress.quirks 30377 -usr/share/libinput/30-vendor-elantech.quirks 30376 -usr/share/libinput/30-vendor-ibm.quirks 30375 -usr/share/libinput/30-vendor-kensington.quirks 30374 -usr/share/libinput/30-vendor-logitech.quirks 30373 -usr/share/libinput/30-vendor-madcatz.quirks 30372 -usr/share/libinput/30-vendor-microsoft.quirks 30371 -usr/share/libinput/30-vendor-razer.quirks 30370 -usr/share/libinput/30-vendor-synaptics.quirks 30369 -usr/share/libinput/30-vendor-trust.quirks 30368 -usr/share/libinput/30-vendor-vmware.quirks 30367 -usr/share/libinput/30-vendor-wacom.quirks 30366 -usr/share/libinput/50-system-acer.quirks 30365 -usr/share/libinput/50-system-apple.quirks 30364 -usr/share/libinput/50-system-asus.quirks 30363 -usr/share/libinput/50-system-chicony.quirks 30362 -usr/share/libinput/50-system-cyborg.quirks 30361 -usr/share/libinput/50-system-dell.quirks 30360 -usr/share/libinput/50-system-google.quirks 30359 -usr/share/libinput/50-system-hp.quirks 30358 -usr/share/libinput/50-system-lenovo.quirks 30357 -usr/share/libinput/50-system-sony.quirks 30356 -usr/share/libinput/50-system-system76.quirks 30355 -usr/share/libinput/50-system-toshiba.quirks 30354 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gstreamer.so 30350 -usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1804.0 30345 -usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1804.0 30337 -usr/lib/x86_64-linux-gnu/libcue.so.2.2.1 30336 -usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 30335 -usr/lib/x86_64-linux-gnu/libdw-0.183.so 30334 -usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1804.0 30333 -usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1804.0 30332 -usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1804.0 30329 -usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1804.0 30328 -usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-plugin-scanner 30327 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libcluttergst3.so 30324 -usr/lib/x86_64-linux-gnu/libclutter-1.0.so.0.2600.4 30323 -usr/lib/x86_64-linux-gnu/libclutter-gst-3.0.so.0.27.0 30319 -usr/lib/x86_64-linux-gnu/libcogl-path.so.20.4.3 30318 -usr/lib/x86_64-linux-gnu/libcogl-pango.so.20.4.3 30317 -usr/lib/x86_64-linux-gnu/libcogl.so.20.4.3 30316 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrawconference.so 30313 -usr/lib/x86_64-linux-gnu/libfarstream-0.2.so.5.1.1 30312 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpconference.so 30311 -usr/lib/x86_64-linux-gnu/libgstrtp-1.0.so.0.1804.0 30310 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpxdata.so 30309 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsvideoanyrate.so 30308 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgst1394.so 30307 -usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0 30306 -usr/lib/x86_64-linux-gnu/libavc1394.so.0.3.0 30305 -usr/lib/x86_64-linux-gnu/librom1394.so.0.3.0 30304 -usr/lib/x86_64-linux-gnu/libiec61883.so.0.1.1 30303 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsta52dec.so 30302 -usr/lib/x86_64-linux-gnu/liba52-0.7.4.so 30301 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaasink.so 30300 -usr/lib/x86_64-linux-gnu/libaa.so.1.0.4 30297 -lib/x86_64-linux-gnu/libncurses.so.6.2 30296 -usr/lib/x86_64-linux-gnu/libslang.so.2.3.2 30295 -usr/lib/x86_64-linux-gnu/libgpm.so.2 30292 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaccurip.so 30291 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadder.so 30290 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmdec.so 30289 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmenc.so 30288 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaiff.so 30287 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalaw.so 30286 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalpha.so 30285 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalphacolor.so 30284 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrnb.so 30283 -usr/lib/x86_64-linux-gnu/libopencore-amrnb.so.0.0.3 30282 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrwbdec.so 30281 -usr/lib/x86_64-linux-gnu/libopencore-amrwb.so.0.0.3 30280 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaom.so 30279 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapetag.so 30278 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapp.so 30277 -usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1804.0 30276 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasf.so 30273 -usr/lib/x86_64-linux-gnu/libgstriff-1.0.so.0.1804.0 30272 -usr/lib/x86_64-linux-gnu/libgstrtsp-1.0.so.0.1804.0 30271 -usr/lib/x86_64-linux-gnu/libgstsdp-1.0.so.0.1804.0 30270 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasfmux.so 30269 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstassrender.so 30268 -usr/lib/x86_64-linux-gnu/libass.so.9.1.1 30267 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiobuffersplit.so 30266 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioconvert.so 30265 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofx.so 30264 -usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1804.0 30263 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofxbad.so 30262 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiolatency.so 30261 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixer.so 30260 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixmatrix.so 30259 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so 30258 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiorate.so 30257 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioresample.so 30256 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiotestsrc.so 30255 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiovisualizers.so 30254 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstauparse.so 30253 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautoconvert.so 30252 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautodetect.so 30251 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstavi.so 30250 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbayer.so 30249 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbluez.so 30248 -usr/share/X11/xkb/rules/evdev 30244 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbs2b.so 30243 -usr/lib/x86_64-linux-gnu/libbs2b.so.0.0.0 30242 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbz2.so 30241 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcacasink.so 30240 -usr/lib/x86_64-linux-gnu/libcaca.so.0.99.19 30239 -lib/x86_64-linux-gnu/libncursesw.so.6.2 30238 -usr/share/X11/xkb/keycodes/evdev 30237 -usr/share/X11/xkb/keycodes/aliases 30236 -usr/share/X11/xkb/types/complete 30235 -usr/share/X11/xkb/types/basic 30234 -usr/share/X11/xkb/types/mousekeys 30233 -usr/share/X11/xkb/types/pc 30232 -usr/share/X11/xkb/types/iso9995 30231 -usr/share/X11/xkb/types/level5 30230 -usr/share/X11/xkb/types/extra 30229 -usr/share/X11/xkb/types/numpad 30228 -usr/share/X11/xkb/compat/complete 30227 -usr/share/X11/xkb/compat/basic 30226 -usr/share/X11/xkb/compat/ledcaps 30225 -usr/share/X11/xkb/compat/lednum 30224 -usr/share/X11/xkb/compat/iso9995 30223 -usr/share/X11/xkb/compat/mousekeys 30222 -usr/share/X11/xkb/compat/accessx 30221 -usr/share/X11/xkb/compat/misc 30220 -usr/share/X11/xkb/compat/ledscroll 30219 -usr/share/X11/xkb/compat/xfree86 30218 -usr/share/X11/xkb/compat/level5 30217 -usr/share/X11/xkb/compat/caps 30216 -usr/share/X11/xkb/symbols/pc 30215 -usr/share/X11/xkb/symbols/srvr_ctrl 30214 -usr/share/X11/xkb/symbols/keypad 30213 -usr/share/X11/xkb/symbols/altwin 30212 -usr/share/X11/xkb/symbols/us 30211 -usr/share/X11/xkb/symbols/inet 30210 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcairo.so 30209 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcamerabin.so 30208 -usr/lib/x86_64-linux-gnu/libgstbasecamerabinsrc-1.0.so.0.1804.0 30207 -usr/lib/x86_64-linux-gnu/libgstphotography-1.0.so.0.1804.0 30206 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdio.so 30205 -usr/lib/x86_64-linux-gnu/libcdio.so.19.0.0 30204 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdparanoia.so 30203 -usr/lib/x86_64-linux-gnu/libcdda_paranoia.so.0.10.2 30202 -usr/lib/x86_64-linux-gnu/libcdda_interface.so.0.10.2 30201 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstchromaprint.so 30200 -usr/libexec/at-spi-bus-launcher 30199 -usr/lib/x86_64-linux-gnu/libchromaprint.so.1.5.0 30198 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstclosedcaption.so 30197 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoloreffects.so 30196 -usr/share/defaults/at-spi2/accessibility.conf 30195 -usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 30194 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcolormanagement.so 30193 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcompositor.so 30192 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so 30191 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoretracers.so 30190 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcurl.so 30189 -usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.7.0 30188 -usr/lib/x86_64-linux-gnu/libnghttp2.so.14.20.1 30187 -usr/share/icons/Adwaita/cursors/left_ptr 30186 -usr/lib/x86_64-linux-gnu/librtmp.so.1 30185 -usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 30184 -usr/bin/Xwayland 30183 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcutter.so 30182 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdash.so 30181 -usr/lib/x86_64-linux-gnu/libgstadaptivedemux-1.0.so.0.1804.0 30180 -usr/lib/x86_64-linux-gnu/libgsturidownloader-1.0.so.0.1804.0 30179 -usr/lib/x86_64-linux-gnu/libgstisoff-1.0.so.0.1804.0 30178 -usr/lib/x86_64-linux-gnu/libgstnet-1.0.so.0.1804.0 30177 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdc1394.so 30176 -usr/lib/x86_64-linux-gnu/libdc1394.so.25.0.0 30175 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstde265.so 30174 -usr/lib/x86_64-linux-gnu/libde265.so.0.1.4 30173 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebug.so 30172 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebugutilsbad.so 30171 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdecklink.so 30170 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdeinterlace.so 30169 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtls.so 30168 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache 30167 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtmf.so 30166 -usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 30165 -usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 30164 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtsdec.so 30163 -usr/lib/x86_64-linux-gnu/libdca.so.0.0.0 30162 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdv.so 30161 -usr/lib/x86_64-linux-gnu/libdv.so.4.0.3 30160 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvb.so 30159 -usr/lib/x86_64-linux-gnu/libgstmpegts-1.0.so.0.1804.0 30158 -usr/lib/x86_64-linux-gnu/mutter-7/Clutter-7.typelib 30157 -usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib 30156 -usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib 30155 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib 30154 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsubenc.so 30153 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsuboverlay.so 30152 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdlpcmdec.so 30151 -usr/lib/xorg/protocol.txt 30150 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdread.so 30149 -usr/lib/x86_64-linux-gnu/libdvdread.so.8.0.0 30148 -usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib 30147 -usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib 30146 -usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib 30145 -usr/lib/x86_64-linux-gnu/mutter-7/CoglPango-7.typelib 30144 -usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib 30143 -usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib 30142 -usr/lib/x86_64-linux-gnu/girepository-1.0/HarfBuzz-0.0.typelib 30141 -usr/lib/x86_64-linux-gnu/mutter-7/Cogl-7.typelib 30140 -usr/lib/x86_64-linux-gnu/girepository-1.0/Graphene-1.0.typelib 30139 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib 30138 -usr/lib/x86_64-linux-gnu/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30137 -usr/lib/x86_64-linux-gnu/mutter-7/Meta-7.typelib 30136 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdspu.so 30135 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdsub.so 30134 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsteffectv.so 30133 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstencoding.so 30132 -usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib 30131 -usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib 30130 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib 30129 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib 30128 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib 30127 -usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib 30126 -usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib 30125 -usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib 30124 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstequalizer.so 30123 -usr/lib/gnome-shell/Shell-0.1.typelib 30122 -usr/lib/gnome-shell/St-1.0.typelib 30121 -usr/lib/x86_64-linux-gnu/mutter-7/Cally-7.typelib 30120 -usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib 30119 -usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib 30118 -usr/lib/gnome-shell/Gvc-1.0.typelib 30117 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib 30116 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib 30115 -usr/lib/x86_64-linux-gnu/mutter-7/ClutterX11-7.typelib 30114 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib 30113 -usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource 30112 -usr/lib/x86_64-linux-gnu/girepository-1.0/AccountsService-1.0.typelib 30111 -usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib 30110 -usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib 30109 -usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib 30108 -usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.523 30107 -usr/lib/x86_64-linux-gnu/girepository-1.0/GIRepository-2.0.typelib 30106 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib 30105 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaad.so 30104 -usr/lib/x86_64-linux-gnu/libfaad.so.2.0.0 30103 -usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 30102 -usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib 30101 -usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib 30100 -usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib 30099 -usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30098 -usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30097 -usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib 30096 -usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib 30095 -usr/share/gnome-shell/modes/classic.json 30094 -usr/share/gnome-shell/modes/gdm-tails.json 30093 -usr/share/desktop-directories/ActionGames.directory 30092 -usr/share/desktop-directories/AdventureGames.directory 30091 -usr/share/desktop-directories/ArcadeGames.directory 30090 -usr/share/desktop-directories/AudioVideo.directory 30089 -usr/share/desktop-directories/BlocksGames.directory 30088 -usr/share/desktop-directories/BoardGames.directory 30087 -usr/share/desktop-directories/CardGames.directory 30086 -usr/share/desktop-directories/Debian.directory 30085 -usr/share/desktop-directories/Development.directory 30084 -usr/share/desktop-directories/Education.directory 30083 -usr/share/desktop-directories/Game.directory 30082 -usr/share/desktop-directories/GnomeScience.directory 30081 -usr/share/desktop-directories/Graphics.directory 30080 -usr/share/desktop-directories/KidsGames.directory 30079 -usr/share/desktop-directories/LogicGames.directory 30078 -usr/share/desktop-directories/Network.directory 30077 -usr/share/desktop-directories/Office.directory 30076 -usr/share/desktop-directories/RolePlayingGames.directory 30075 -usr/share/desktop-directories/Settings-System.directory 30074 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaceoverlay.so 30073 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfbdevsink.so 30072 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfestival.so 30071 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfieldanalysis.so 30070 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflac.so 30069 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflite.so 30068 -usr/share/desktop-directories/Settings.directory 30067 -usr/share/desktop-directories/SimulationGames.directory 30066 -usr/share/desktop-directories/SportsGames.directory 30065 -usr/share/desktop-directories/StrategyGames.directory 30064 -usr/share/desktop-directories/System-Tools.directory 30063 -usr/share/desktop-directories/Tails.directory 30062 -usr/share/desktop-directories/Utility-Accessibility.directory 30061 -usr/share/desktop-directories/Utility.directory 30060 -usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 30059 -usr/share/desktop-directories/X-GNOME-Other.directory 30058 -usr/share/desktop-directories/X-GNOME-Sundry.directory 30057 -usr/share/desktop-directories/X-GNOME-SystemSettings.directory 30056 -usr/share/desktop-directories/X-GNOME-Utilities.directory 30055 -usr/share/desktop-directories/X-GNOME-WebApplications.directory 30054 -etc/xdg/gnome-mimeapps.list 30053 -usr/local/share/mime/mime.cache 30052 -usr/share/mime/mime.cache 30051 -usr/share/gdm/greeter/applications/mimeapps.list 30050 -usr/share/applications/gnome-mimeapps.list 30049 -usr/share/applications/mimeinfo.cache 30048 -usr/share/gdm/greeter/applications/mime-dummy-handler.desktop 30047 -usr/share/applications/gnome-applications-panel.desktop 30046 -usr/share/applications/tails-documentation.desktop 30045 -usr/share/applications/org.gnome.gedit.desktop 30044 -usr/share/applications/bookletimposer.desktop 30043 -usr/share/applications/org.gnome.Shell.Extensions.desktop 30042 -usr/share/applications/tor-browser.desktop 30041 -usr/share/applications/libreoffice-xsltfilter.desktop 30040 -usr/share/applications/org.kde.kded5.desktop 30039 -usr/share/applications/vim.desktop 30038 -usr/share/applications/libreoffice-startcenter.desktop 30037 -usr/share/applications/org.gnome.Terminal.desktop 30036 -usr/share/applications/ibus-setup-hangul.desktop 30035 -usr/share/applications/gnome-datetime-panel.desktop 30034 -usr/share/applications/gnome-system-monitor-kde.desktop 30033 -usr/share/applications/nm-applet.desktop 30032 -usr/lib/x86_64-linux-gnu/libflite.so.2.2 30031 -usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal.so.2.2 30030 -usr/share/applications/pidgin.desktop 30029 -usr/share/applications/gcr-viewer.desktop 30026 -usr/share/applications/evolution-calendar.desktop 30025 -usr/share/applications/electrum.desktop 30024 -usr/share/applications/gnome-user-accounts-panel.desktop 30023 -usr/share/applications/unlock-veracrypt-volumes.desktop 30022 -usr/share/applications/org.boum.tails.AdditionalSoftware.desktop 30021 -usr/share/applications/libreoffice-writer.desktop 30020 -usr/share/applications/tails-installer.desktop 30019 -usr/share/applications/gnome-microphone-panel.desktop 30018 -usr/share/applications/org.gnome.Nautilus.desktop 30017 -usr/share/applications/org.gnome.Evince.desktop 30016 -usr/share/applications/gnome-usage-panel.desktop 30015 -usr/share/applications/root-terminal.desktop 30014 -usr/share/applications/simple-scan.desktop 30013 -usr/share/applications/org.gnome.DiskUtility.desktop 30012 -usr/share/applications/org.gnome.Evince-previewer.desktop 30011 -usr/share/applications/gnome-background-panel.desktop 30010 -usr/share/applications/org.gnome.SoundJuicer.desktop 30009 -usr/share/applications/tails-backup.desktop 30008 -usr/share/applications/gnome-sharing-panel.desktop 30007 -usr/share/applications/org.gnome.Shell.PortalHelper.desktop 30006 -usr/share/applications/org.onionshare.OnionShare.desktop 30005 -usr/share/applications/ktelnetservice5.desktop 30004 -usr/share/applications/gnome-universal-access-panel.desktop 30003 -usr/share/applications/whisperback.desktop 30002 -usr/share/applications/org.gnome.Evolution-alarm-notify.desktop 30001 -usr/share/applications/gnome-location-panel.desktop 30000 -usr/share/applications/gnome-lock-panel.desktop 29999 -usr/share/applications/gnome-printers-panel.desktop 29998 -usr/share/applications/thunderbird.desktop 29997 -usr/share/applications/gnome-thunderbolt-panel.desktop 29996 -usr/share/applications/ibus-setup-chewing.desktop 29995 -usr/share/applications/gnome-search-panel.desktop 29994 -usr/share/applications/ibus-setup-libpinyin.desktop 29993 -usr/share/applications/org.boum.tails.PersistentStorage.desktop 29992 -usr/share/applications/synaptic.desktop 29991 -usr/share/applications/org.freedesktop.IBus.Panel.Emojier.desktop 29990 -usr/share/applications/unsafe-browser.desktop 29989 -usr/share/applications/gkbd-keyboard-display.desktop 29988 -usr/share/applications/org.freedesktop.IBus.Setup.desktop 29987 -usr/share/applications/org.gnome.Totem.desktop 29986 -usr/share/applications/org.gnome.PowerStats.desktop 29985 -usr/share/applications/ibus-setup-libbopomofo.desktop 29984 -usr/share/applications/gnome-notifications-panel.desktop 29983 -usr/share/applications/ibus-setup-Unikey.desktop 29982 -usr/share/applications/gtkhash.desktop 29981 -usr/share/applications/nautilus-autorun-software.desktop 29980 -usr/lib/x86_64-linux-gnu/libflite_usenglish.so.2.2 29979 -usr/lib/x86_64-linux-gnu/libflite_cmulex.so.2.2 29978 -usr/share/applications/org.gnome.FileRoller.desktop 29976 -usr/share/applications/gnome-color-panel.desktop 29975 -usr/share/applications/gnome-bluetooth-panel.desktop 29974 -usr/share/applications/org.inkscape.Inkscape.desktop 29973 -usr/share/applications/python3.9.desktop 29972 -usr/share/applications/gnome-control-center.desktop 29971 -usr/share/applications/brasero-nautilus.desktop 29970 -usr/share/applications/libreoffice-impress.desktop 29969 -usr/share/applications/audacity.desktop 29968 -usr/share/applications/gnome-disk-image-mounter.desktop 29967 -usr/share/applications/gimp.desktop 29966 -usr/share/applications/gnome-network-panel.desktop 29965 -usr/share/applications/gnome-removable-media-panel.desktop 29964 -usr/share/applications/gnome-wacom-panel.desktop 29963 -usr/share/applications/gnome-camera-panel.desktop 29962 -usr/share/applications/gnome-mouse-panel.desktop 29961 -usr/share/applications/gnome-keyboard-panel.desktop 29960 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfluidsynthmidi.so 29959 -usr/lib/x86_64-linux-gnu/libfluidsynth.so.2.3.7 29958 -usr/local/lib/udev-watchdog-wrapper 29957 -usr/share/applications/org.gnome.SoundRecorder.desktop 29956 -usr/share/applications/gnome-wifi-panel.desktop 29955 -usr/share/applications/gnome-sound-panel.desktop 29954 -usr/share/applications/fr.romainvigier.MetadataCleaner.desktop 29953 -usr/lib/x86_64-linux-gnu/libjack.so.0.1.0 29952 -usr/lib/x86_64-linux-gnu/libpulse-simple.so.0.1.1 29951 -usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.14.0 29950 -usr/share/applications/brasero.desktop 29949 -usr/share/applications/yelp.desktop 29948 -usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 29947 -usr/share/applications/gnome-display-panel.desktop 29946 -usr/share/applications/gnome-power-panel.desktop 29945 -usr/share/applications/onioncircuits.desktop 29944 -usr/share/applications/gnome-system-monitor.desktop 29943 -usr/share/applications/org.kde.kleopatra.desktop 29942 -usr/share/applications/org.gnome.Screenshot.desktop 29941 -usr/share/applications/gnome-region-panel.desktop 29940 -usr/share/applications/libreoffice-draw.desktop 29939 -usr/share/applications/gnome-default-apps-panel.desktop 29938 -usr/share/applications/gnome-diagnostics-panel.desktop 29937 -usr/share/applications/org.gnome.Calculator.desktop 29936 -usr/share/applications/org.gnome.eog.desktop 29935 -usr/share/applications/org.gnome.Shell.desktop 29934 -usr/share/applications/kleopatra_import.desktop 29933 -usr/share/applications/libreoffice-calc.desktop 29932 -usr/share/applications/gcr-prompter.desktop 29931 -usr/share/applications/gnome-disk-image-writer.desktop 29930 -usr/share/applications/org.keepassxc.KeePassXC.desktop 29929 -usr/share/applications/gnome-info-overview-panel.desktop 29928 -usr/share/applications/tca.desktop 29927 -usr/share/applications/tails-about.desktop 29926 -usr/share/gnome-shell/gnome-shell-theme.gresource 29925 -usr/lib/x86_64-linux-gnu/libinstpatch-1.0.so.2.2.0 29924 -usr/share/gnome-shell/gnome-shell-osk-layouts.gresource 29923 -usr/share/gnome-shell/theme/gnome-classic.css 29922 -usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 29921 -usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 29920 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflv.so 29919 -usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo 29918 -usr/share/tails/desktop_wallpaper.png 29917 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 29916 -etc/fonts/fonts.conf 29915 -usr/share/fontconfig/conf.avail/10-hinting-slight.conf 29914 -usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf 29913 -usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf 29912 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf 29911 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflxdec.so 29910 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf 29909 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfreeverb.so 29908 -etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf 29907 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfrei0r.so 29906 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf 29905 -etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf 29904 -etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf 29903 -usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf 29902 -usr/share/fontconfig/conf.avail/30-metric-aliases.conf 29901 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgaudieffects.so 29900 -usr/share/fontconfig/conf.avail/30-opensymbol.conf 29899 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdkpixbuf.so 29898 -usr/share/fontconfig/conf.avail/40-nonlatin.conf 29897 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdp.so 29896 -usr/share/fontconfig/conf.avail/45-generic.conf 29895 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgeometrictransform.so 29894 -usr/share/fontconfig/conf.avail/45-latin.conf 29893 -usr/share/fontconfig/conf.avail/49-sansserif.conf 29892 -usr/share/fontconfig/conf.avail/50-user.conf 29891 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgio.so 29890 -usr/share/fontconfig/conf.avail/51-local.conf 29889 -etc/fonts/conf.avail/57-dejavu-sans-mono.conf 29888 -etc/fonts/conf.avail/57-dejavu-sans.conf 29887 -etc/fonts/conf.avail/57-dejavu-serif.conf 29886 -etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf 29885 -etc/fonts/conf.avail/58-dejavu-lgc-sans.conf 29884 -etc/fonts/conf.avail/58-dejavu-lgc-serif.conf 29883 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgme.so 29882 -usr/share/fontconfig/conf.avail/60-generic.conf 29881 -usr/lib/x86_64-linux-gnu/libgme.so.0.6.3 29880 -usr/share/fontconfig/conf.avail/60-latin.conf 29879 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom.so 29878 -usr/share/fontconfig/conf.avail/urw-bookman.conf 29877 -usr/share/fontconfig/conf.avail/urw-c059.conf 29876 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom2k1.so 29875 -usr/share/fontconfig/conf.avail/urw-d050000l.conf 29874 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgsm.so 29873 -usr/share/fontconfig/conf.avail/urw-fallback-backwards.conf 29872 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsthls.so 29871 -usr/share/fontconfig/conf.avail/urw-fallback-generics.conf 29870 -usr/share/fontconfig/conf.avail/urw-gothic.conf 29869 -usr/share/fontconfig/conf.avail/urw-nimbus-mono-ps.conf 29868 -usr/share/fontconfig/conf.avail/urw-nimbus-roman.conf 29867 -usr/share/fontconfig/conf.avail/urw-nimbus-sans.conf 29866 -usr/share/fontconfig/conf.avail/urw-p052.conf 29865 -usr/share/fontconfig/conf.avail/urw-standard-symbols-ps.conf 29864 -usr/share/fontconfig/conf.avail/urw-z003.conf 29863 -etc/fonts/conf.avail/65-culmus.conf 29862 -usr/share/fontconfig/conf.avail/65-fonts-persian.conf 29861 -usr/share/fontconfig/conf.avail/65-nonlatin.conf 29860 -usr/share/fontconfig/conf.avail/69-unifont.conf 29859 -usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf 29858 -usr/share/fontconfig/conf.avail/70-no-bitmaps.conf 29857 -usr/share/fontconfig/conf.avail/80-delicious.conf 29856 -usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf 29855 -usr/share/fontconfig/conf.avail/90-synthetic.conf 29854 -usr/share/fontconfig/conf.avail/10-autohint.conf 29853 -usr/share/fontconfig/conf.avail/10-hinting-full.conf 29852 -usr/share/fontconfig/conf.avail/10-hinting-medium.conf 29851 -usr/share/fontconfig/conf.avail/10-hinting-none.conf 29850 -usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf 29849 -usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf 29848 -usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf 29847 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsticydemux.so 29846 -usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf 29845 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3demux.so 29844 -usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf 29843 -usr/share/fontconfig/conf.avail/10-unhinted.conf 29842 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3tag.so 29841 -usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf 29840 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstimagefreeze.so 29839 -usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf 29838 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinter.so 29837 -usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf 29836 -usr/share/fontconfig/conf.avail/65-khmer.conf 29835 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterlace.so 29834 -usr/share/fontconfig/conf.avail/70-force-bitmaps.conf 29833 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterleave.so 29832 -usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf 29831 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstipcpipeline.so 29830 -usr/share/fonts/.uuid 29829 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstisomp4.so 29828 -var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 29827 -usr/local/share/fonts/.uuid 29826 -var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 29825 -usr/share/fonts/X11/.uuid 29824 -var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 29823 -usr/share/fonts/cMap/.uuid 29822 -var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 29821 -usr/share/fonts/cmap/.uuid 29820 -var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 29819 -usr/share/fonts/opentype/.uuid 29818 -var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 29817 -usr/share/fonts/truetype/.uuid 29816 -var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 29815 -usr/share/fonts/type1/.uuid 29814 -var/cache/fontconfig/107a60e4-0cbf-554f-81c5-3e413a233022-le64.cache-7 29813 -usr/share/fonts/X11/Type1/.uuid 29812 -var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 29811 -usr/share/fonts/X11/encodings/.uuid 29810 -var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 29809 -usr/share/fonts/X11/util/.uuid 29808 -var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 29807 -usr/share/poppler/cMap/Adobe-CNS1/.uuid 29806 -var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 29805 -usr/share/poppler/cMap/Adobe-GB1/.uuid 29804 -var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 29803 -usr/share/poppler/cMap/Adobe-Japan1/.uuid 29802 -var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 29801 -usr/share/poppler/cMap/Adobe-Japan2/.uuid 29800 -var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 29799 -usr/share/poppler/cMap/Adobe-Korea1/.uuid 29798 -var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 29797 -usr/share/fonts/opentype/cantarell/.uuid 29796 -var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 29795 -usr/share/fonts/opentype/linux-libertine/.uuid 29794 -var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 29793 -usr/share/fonts/opentype/noto/.uuid 29792 -var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 29791 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivfparse.so 29790 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivtc.so 29789 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjack.so 29788 -usr/share/fonts/opentype/urw-base35/.uuid 29787 -var/cache/fontconfig/8542f4fb-ce2b-5a14-9951-f64eac858fee-le64.cache-7 29786 -usr/share/fonts/truetype/culmus/.uuid 29785 -var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 29784 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjp2kdecimator.so 29783 -usr/share/fonts/truetype/dejavu/.uuid 29782 -var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 29781 -usr/share/fonts/truetype/liberation/.uuid 29780 -var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 29779 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpeg.so 29778 -usr/share/fonts/truetype/libreoffice/.uuid 29777 -var/cache/fontconfig/155a82c9-3c15-5e7a-a02f-59fffe413741-le64.cache-7 29776 -usr/share/fonts/truetype/noto/.uuid 29775 -var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 29774 -usr/share/fonts/truetype/quicksand/.uuid 29773 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpegformat.so 29772 -var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 29771 -usr/share/fonts/type1/urw-base35/.uuid 29770 -var/cache/fontconfig/ad7fe672-dfce-58cc-9779-56f61343393e-le64.cache-7 29769 -usr/share/fonts/X11/encodings/large/.uuid 29768 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkate.so 29767 -var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 29766 -usr/lib/x86_64-linux-gnu/libkate.so.1.3.0 29765 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkms.so 29764 -usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 29763 -usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1804.0 29762 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstladspa.so 29761 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlame.so 29760 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlegacyrawparse.so 29759 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlevel.so 29758 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so 29757 -usr/lib/x86_64-linux-gnu/libavfilter.so.7.85.100 29756 -usr/share/X11/xkb/rules/evdev.xml 29755 -usr/share/xml/iso-codes/iso_639-2.xml 29754 -usr/lib/x86_64-linux-gnu/libavformat.so.58.45.100 29753 -usr/share/xml/iso-codes/iso_639-3.xml 29752 -usr/share/xml/iso-codes/iso_3166-1.xml 29751 -usr/bin/ibus-daemon 29750 -usr/lib/x86_64-linux-gnu/libswscale.so.5.7.100 29749 -usr/share/ibus/keymaps/us 29748 -usr/share/ibus/keymaps/common 29747 -usr/share/ibus/keymaps/modifiers 29746 -usr/share/ibus/component/chewing.xml 29745 -usr/lib/x86_64-linux-gnu/libpostproc.so.55.7.100 29744 -usr/lib/x86_64-linux-gnu/libgweather-3.so.16.0.0 29743 -usr/share/ibus/component/dconf.xml 29742 -usr/lib/x86_64-linux-gnu/libpocketsphinx.so.3.0.0 29741 -usr/share/ibus/component/gtkextension.xml 29740 -usr/share/ibus/component/gtkpanel.xml 29739 -usr/share/ibus/component/hangul.xml 29738 -usr/share/ibus/component/libpinyin.xml 29737 -usr/share/ibus/component/memconf.xml 29736 -usr/share/ibus/component/mozc.xml 29735 -usr/lib/ibus-mozc/ibus-engine-mozc 29734 -usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 29733 -usr/lib/x86_64-linux-gnu/libabsl_strings.so.20200923.0.1 29732 -usr/lib/x86_64-linux-gnu/libsphinxbase.so.3.0.0 29731 -usr/lib/x86_64-linux-gnu/liblilv-0.so.0.24.12 29730 -usr/lib/x86_64-linux-gnu/librubberband.so.2.1.2 29729 -usr/lib/x86_64-linux-gnu/libmysofa.so.1.1.0 29728 -usr/lib/x86_64-linux-gnu/libflite_cmu_us_awb.so.2.2 29727 -usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20200923.0.1 29726 -usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20200923.0.1 29725 -usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20200923.0.1 29724 -usr/lib/x86_64-linux-gnu/libabsl_time.so.20200923.0.1 29723 -usr/lib/x86_64-linux-gnu/libprotobuf.so.23.0.4 29722 -usr/share/libgweather/Locations.xml 29721 -usr/share/zoneinfo/Etc/GMT+12 29720 -usr/share/zoneinfo/Africa/Algiers 29719 -usr/share/zoneinfo/Africa/Lagos 29718 -usr/share/zoneinfo/Africa/Maputo 29717 -usr/share/zoneinfo/Africa/Abidjan 29716 -usr/share/zoneinfo/Atlantic/Cape_Verde 29715 -usr/share/zoneinfo/Africa/Ndjamena 29714 -usr/share/zoneinfo/Africa/Nairobi 29713 -usr/share/zoneinfo/Africa/Cairo 29712 -usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal16.so.2.2 29711 -usr/share/zoneinfo/Indian/Kerguelen 29710 -usr/share/zoneinfo/Africa/Accra 29709 -usr/share/zoneinfo/Africa/Bissau 29708 -usr/share/zoneinfo/Africa/Johannesburg 29707 -usr/share/zoneinfo/Africa/Monrovia 29706 -usr/share/zoneinfo/Africa/Tripoli 29705 -usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20200923.0.1 29704 -usr/lib/x86_64-linux-gnu/libabsl_int128.so.20200923.0.1 29703 -usr/lib/x86_64-linux-gnu/libabsl_base.so.20200923.0.1 29702 -usr/share/zoneinfo/Indian/Mauritius 29701 -usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20200923.0.1 29700 -usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20200923.0.1 29699 -usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20200923.0.1 29698 -usr/share/zoneinfo/Africa/Casablanca 29697 -usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 29696 -usr/share/zoneinfo/Africa/Windhoek 29695 -usr/share/zoneinfo/Indian/Reunion 29694 -usr/share/zoneinfo/Africa/Sao_Tome 29693 -usr/share/zoneinfo/Indian/Mahe 29692 -usr/share/zoneinfo/Africa/Khartoum 29691 -usr/share/zoneinfo/Africa/Tunis 29690 -usr/share/zoneinfo/Africa/El_Aaiun 29689 -usr/share/zoneinfo/Antarctica/Palmer 29688 -usr/share/zoneinfo/Antarctica/Rothera 29687 -usr/share/zoneinfo/Antarctica/Syowa 29686 -usr/share/zoneinfo/Antarctica/Mawson 29685 -usr/share/zoneinfo/Antarctica/Vostok 29684 -usr/share/zoneinfo/Antarctica/Davis 29683 -usr/share/zoneinfo/Antarctica/Casey 29682 -usr/share/zoneinfo/Antarctica/DumontDUrville 29681 -usr/share/zoneinfo/Pacific/Auckland 29680 -usr/share/zoneinfo/Asia/Kabul 29679 -usr/share/zoneinfo/Asia/Yerevan 29678 -usr/share/zoneinfo/Asia/Baku 29677 -usr/share/zoneinfo/Asia/Dhaka 29676 -usr/share/zoneinfo/Asia/Thimphu 29675 -usr/share/zoneinfo/Asia/Brunei 29674 -usr/share/zoneinfo/Asia/Bangkok 29673 -usr/share/zoneinfo/Asia/Shanghai 29672 -usr/share/zoneinfo/Asia/Tbilisi 29671 -usr/share/zoneinfo/Asia/Hong_Kong 29670 -usr/share/zoneinfo/Asia/Kolkata 29669 -usr/share/zoneinfo/Asia/Tokyo 29668 -usr/share/zoneinfo/Asia/Almaty 29667 -usr/share/zoneinfo/Asia/Aqtobe 29666 -usr/share/zoneinfo/Asia/Bishkek 29665 -usr/share/zoneinfo/Asia/Macau 29664 -usr/share/zoneinfo/Asia/Kuala_Lumpur 29663 -usr/share/zoneinfo/Indian/Maldives 29662 -usr/share/zoneinfo/Asia/Choibalsan 29661 -usr/share/zoneinfo/Asia/Hovd 29660 -usr/share/zoneinfo/Asia/Ulaanbaatar 29659 -usr/share/zoneinfo/Asia/Yangon 29658 -usr/share/zoneinfo/Asia/Kathmandu 29657 -usr/share/zoneinfo/Asia/Pyongyang 29656 -usr/share/zoneinfo/Asia/Karachi 29655 -usr/share/zoneinfo/Asia/Manila 29654 -usr/share/zoneinfo/Asia/Singapore 29653 -usr/share/zoneinfo/Asia/Seoul 29652 -usr/share/zoneinfo/Asia/Colombo 29651 -usr/share/zoneinfo/Asia/Taipei 29650 -usr/share/zoneinfo/Asia/Dushanbe 29649 -usr/share/zoneinfo/Asia/Ashgabat 29648 -usr/share/zoneinfo/Asia/Tashkent 29647 -usr/share/zoneinfo/Asia/Ho_Chi_Minh 29646 -usr/share/zoneinfo/America/Port_of_Spain 29645 -usr/share/zoneinfo/America/Barbados 29644 -usr/share/zoneinfo/Atlantic/Bermuda 29643 -usr/share/zoneinfo/America/Danmarkshavn 29642 -usr/share/zoneinfo/America/Nuuk 29641 -usr/share/zoneinfo/America/Scoresbysund 29640 -usr/share/zoneinfo/America/Thule 29639 -usr/share/zoneinfo/America/Puerto_Rico 29638 -usr/share/zoneinfo/Pacific/Pago_Pago 29637 -usr/share/zoneinfo/Australia/Perth 29636 -usr/share/zoneinfo/Australia/Eucla 29635 -usr/share/zoneinfo/Australia/Adelaide 29634 -usr/share/zoneinfo/Australia/Broken_Hill 29633 -usr/share/zoneinfo/Australia/Darwin 29632 -usr/share/zoneinfo/Australia/Hobart 29631 -usr/share/zoneinfo/Australia/Melbourne 29630 -usr/share/zoneinfo/Australia/Sydney 29629 -usr/share/zoneinfo/Australia/Brisbane 29628 -usr/share/zoneinfo/Australia/Lord_Howe 29627 -usr/share/zoneinfo/Indian/Chagos 29626 -usr/share/zoneinfo/Indian/Christmas 29625 -usr/share/zoneinfo/Indian/Cocos 29624 -usr/share/zoneinfo/Pacific/Rarotonga 29623 -usr/share/zoneinfo/Pacific/Fiji 29622 -usr/share/zoneinfo/Pacific/Tahiti 29621 -usr/share/zoneinfo/Pacific/Marquesas 29620 -usr/share/zoneinfo/Pacific/Gambier 29619 -usr/share/zoneinfo/Pacific/Guam 29618 -usr/share/zoneinfo/Asia/Jakarta 29617 -usr/share/zoneinfo/Asia/Makassar 29616 -usr/share/zoneinfo/Asia/Jayapura 29615 -usr/share/zoneinfo/Pacific/Tarawa 29614 -usr/share/zoneinfo/Pacific/Enderbury 29613 -usr/share/zoneinfo/Pacific/Kiritimati 29612 -usr/share/zoneinfo/Pacific/Majuro 29611 -usr/share/zoneinfo/Pacific/Pohnpei 29610 -usr/share/zoneinfo/Pacific/Chuuk 29609 -usr/share/zoneinfo/Pacific/Nauru 29608 -usr/share/zoneinfo/Pacific/Noumea 29607 -usr/share/zoneinfo/Pacific/Chatham 29606 -usr/share/zoneinfo/Pacific/Niue 29605 -usr/share/zoneinfo/Pacific/Norfolk 29604 -usr/share/zoneinfo/Pacific/Palau 29603 -usr/share/zoneinfo/Pacific/Port_Moresby 29602 -usr/share/zoneinfo/Pacific/Pitcairn 29601 -usr/share/zoneinfo/Pacific/Apia 29600 -usr/share/zoneinfo/Pacific/Guadalcanal 29599 -usr/share/zoneinfo/Asia/Dili 29598 -usr/share/zoneinfo/Pacific/Fakaofo 29597 -usr/share/zoneinfo/Pacific/Tongatapu 29596 -usr/share/zoneinfo/Pacific/Funafuti 29595 -usr/share/zoneinfo/Pacific/Honolulu 29594 -usr/share/zoneinfo/Pacific/Wake 29593 -usr/share/zoneinfo/Pacific/Efate 29592 -usr/share/zoneinfo/Pacific/Wallis 29591 -usr/share/zoneinfo/America/Argentina/Buenos_Aires 29590 -usr/share/zoneinfo/America/Curacao 29589 -usr/share/zoneinfo/America/Nassau 29588 -usr/share/zoneinfo/America/Belize 29587 -usr/share/zoneinfo/America/La_Paz 29586 -usr/share/zoneinfo/America/Araguaina 29585 -usr/share/zoneinfo/America/Bahia 29584 -usr/share/zoneinfo/America/Belem 29583 -usr/share/zoneinfo/America/Boa_Vista 29582 -usr/share/zoneinfo/America/Campo_Grande 29581 -usr/share/zoneinfo/America/Cuiaba 29580 -usr/share/zoneinfo/America/Eirunepe 29579 -usr/share/zoneinfo/America/Fortaleza 29578 -usr/share/zoneinfo/America/Maceio 29577 -usr/share/zoneinfo/America/Manaus 29576 -usr/share/zoneinfo/America/Noronha 29575 -usr/share/zoneinfo/America/Porto_Velho 29574 -usr/share/zoneinfo/America/Recife 29573 -usr/share/zoneinfo/America/Rio_Branco 29572 -usr/share/zoneinfo/America/Sao_Paulo 29571 -usr/share/zoneinfo/America/Panama 29570 -usr/share/zoneinfo/America/Santiago 29569 -usr/share/zoneinfo/Pacific/Easter 29568 -usr/share/zoneinfo/America/Bogota 29567 -usr/share/ibus/component/simple.xml 29566 -usr/share/ibus/component/unikey.xml 29565 -usr/share/zoneinfo/America/Costa_Rica 29564 -usr/share/zoneinfo/America/Havana 29563 -usr/share/zoneinfo/America/Santo_Domingo 29562 -usr/share/zoneinfo/America/Guayaquil 29561 -usr/share/zoneinfo/Pacific/Galapagos 29560 -usr/share/zoneinfo/America/El_Salvador 29559 -usr/share/zoneinfo/Atlantic/Stanley 29558 -usr/libexec/ibus-engine-unikey 29557 -usr/lib/x86_64-linux-gnu/libflite_cmu_us_rms.so.2.2 29556 -usr/share/zoneinfo/America/Cayenne 29555 -usr/share/zoneinfo/America/Guatemala 29554 -usr/share/zoneinfo/America/Guyana 29553 -usr/share/zoneinfo/America/Port-au-Prince 29552 -usr/share/zoneinfo/America/Tegucigalpa 29551 -usr/share/zoneinfo/America/Jamaica 29550 -usr/share/zoneinfo/America/Martinique 29549 -usr/share/zoneinfo/America/Managua 29548 -usr/share/zoneinfo/America/Asuncion 29547 -usr/share/zoneinfo/America/Lima 29546 -usr/share/zoneinfo/Atlantic/South_Georgia 29545 -usr/share/zoneinfo/America/Paramaribo 29544 -usr/libexec/ibus-dconf 29543 -usr/libexec/ibus-extension-gtk3 29542 -usr/share/zoneinfo/America/Grand_Turk 29541 -usr/share/zoneinfo/America/Montevideo 29540 -usr/share/zoneinfo/America/Caracas 29539 -usr/share/zoneinfo/Europe/Tirane 29538 -usr/share/zoneinfo/Europe/Andorra 29537 -usr/share/zoneinfo/Europe/Vienna 29536 -usr/share/zoneinfo/Europe/Minsk 29535 -usr/share/zoneinfo/Europe/Brussels 29534 -usr/share/zoneinfo/Europe/Belgrade 29533 -usr/share/zoneinfo/Europe/Sofia 29532 -usr/share/zoneinfo/Asia/Nicosia 29531 -usr/share/zoneinfo/Europe/Prague 29530 -usr/libexec/ibus-portal 29529 -usr/share/zoneinfo/Europe/Copenhagen 29528 -usr/share/zoneinfo/Europe/Tallinn 29527 -usr/share/zoneinfo/Atlantic/Faroe 29526 -usr/share/zoneinfo/Europe/Helsinki 29525 -usr/share/zoneinfo/Europe/Paris 29524 -usr/share/zoneinfo/Europe/Berlin 29523 -usr/share/zoneinfo/Europe/Gibraltar 29522 -usr/share/zoneinfo/Europe/Athens 29521 -usr/share/zoneinfo/Europe/London 29520 -usr/share/zoneinfo/Europe/Budapest 29519 -usr/share/zoneinfo/Atlantic/Reykjavik 29518 -usr/share/zoneinfo/Europe/Dublin 29517 -usr/share/zoneinfo/Europe/Rome 29516 -usr/lib/x86_64-linux-gnu/libflite_cmu_us_slt.so.2.2 29515 -usr/share/zoneinfo/CET 29514 -usr/share/zoneinfo/Europe/Riga 29513 -usr/share/zoneinfo/Europe/Zurich 29512 -usr/share/zoneinfo/Europe/Vilnius 29511 -usr/share/zoneinfo/Europe/Luxembourg 29510 -usr/share/zoneinfo/Europe/Malta 29509 -usr/share/zoneinfo/Europe/Chisinau 29508 -usr/share/zoneinfo/Europe/Monaco 29507 -usr/share/zoneinfo/Europe/Amsterdam 29506 -usr/share/zoneinfo/Europe/Oslo 29505 -usr/share/zoneinfo/Europe/Warsaw 29504 -usr/share/zoneinfo/Atlantic/Azores 29503 -usr/share/zoneinfo/Atlantic/Madeira 29502 -usr/share/zoneinfo/Europe/Lisbon 29501 -usr/share/zoneinfo/Europe/Bucharest 29500 -usr/share/zoneinfo/Europe/Kaliningrad 29499 -usr/share/zoneinfo/Europe/Moscow 29498 -usr/share/zoneinfo/Europe/Samara 29497 -usr/share/zoneinfo/Asia/Yekaterinburg 29496 -usr/share/zoneinfo/Asia/Omsk 29495 -usr/share/zoneinfo/Asia/Novosibirsk 29494 -usr/share/zoneinfo/Asia/Krasnoyarsk 29493 -usr/share/zoneinfo/Asia/Irkutsk 29492 -usr/share/zoneinfo/Asia/Yakutsk 29491 -usr/share/zoneinfo/Asia/Vladivostok 29490 -usr/share/zoneinfo/Asia/Magadan 29489 -usr/share/zoneinfo/Asia/Kamchatka 29488 -usr/share/zoneinfo/Atlantic/Canary 29487 -usr/share/zoneinfo/Europe/Madrid 29486 -usr/share/zoneinfo/Africa/Ceuta 29485 -usr/share/zoneinfo/Europe/Stockholm 29484 -usr/share/zoneinfo/Europe/Istanbul 29483 -usr/share/zoneinfo/Europe/Kiev 29482 -usr/share/zoneinfo/Asia/Qatar 29481 -usr/share/zoneinfo/Asia/Tehran 29480 -usr/share/zoneinfo/Asia/Baghdad 29479 -usr/share/zoneinfo/Asia/Jerusalem 29478 -usr/share/zoneinfo/Asia/Amman 29477 -usr/share/zoneinfo/Asia/Riyadh 29476 -usr/share/zoneinfo/Asia/Beirut 29475 -usr/share/zoneinfo/Asia/Dubai 29474 -usr/share/zoneinfo/Asia/Gaza 29473 -usr/share/zoneinfo/Asia/Damascus 29472 -usr/share/zoneinfo/America/Vancouver 29471 -usr/share/zoneinfo/America/Edmonton 29470 -usr/share/zoneinfo/America/Dawson_Creek 29469 -usr/share/zoneinfo/America/Winnipeg 29468 -usr/share/zoneinfo/America/Regina 29467 -usr/share/zoneinfo/America/Toronto 29466 -usr/share/zoneinfo/America/Atikokan 29465 -usr/share/zoneinfo/America/Halifax 29464 -usr/share/zoneinfo/America/Blanc-Sablon 29463 -usr/share/zoneinfo/America/St_Johns 29462 -usr/share/zoneinfo/America/Tijuana 29461 -usr/share/zoneinfo/America/Mazatlan 29460 -usr/share/zoneinfo/America/Mexico_City 29459 -usr/share/zoneinfo/America/Miquelon 29458 -usr/share/zoneinfo/America/Adak 29457 -usr/share/zoneinfo/America/Anchorage 29456 -usr/share/zoneinfo/America/Los_Angeles 29455 -usr/share/zoneinfo/America/Denver 29454 -usr/share/zoneinfo/America/Phoenix 29453 -usr/share/zoneinfo/America/Chicago 29452 -usr/share/zoneinfo/America/New_York 29451 -usr/lib/x86_64-linux-gnu/libvidstab.so.1.1 29450 -usr/lib/x86_64-linux-gnu/libzmq.so.5.2.4 29449 -usr/lib/x86_64-linux-gnu/libopenmpt.so.0.1.1 29448 -usr/lib/x86_64-linux-gnu/librabbitmq.so.4.4.0 29447 -usr/libexec/xdg-permission-store 29446 -usr/lib/x86_64-linux-gnu/libsrt-gnutls.so.1.4.2 29445 -usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.8.8 29444 -usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 29443 -usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 29442 -usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0 29441 -usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0 29440 -usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.2 29439 -usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 29438 -usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0 29437 -usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.6600.8 29436 -usr/lib/gnome-shell/libgvc.so 29435 -usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.6 29434 -usr/share/xsessions/gnome-classic.desktop 29433 -usr/share/xsessions/gnome-xorg.desktop 29432 -usr/share/xsessions/gnome.desktop 29431 -usr/lib/x86_64-linux-gnu/libserd-0.so.0.30.10 29430 -usr/share/gdm/BuiltInSessions/default.desktop 29429 -usr/lib/x86_64-linux-gnu/libsord-0.so.0.16.8 29428 -usr/lib/x86_64-linux-gnu/libsratom-0.so.0.6.8 29427 -usr/lib/x86_64-linux-gnu/libsamplerate.so.0.2.1 29426 -var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 29425 -var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 29424 -var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 29423 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 29422 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 29421 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 29420 -etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.NetworkManager.pkla 29419 -etc/systemd/sleep.conf 29418 -lib/systemd/system/suspend.target 29417 -lib/systemd/system/systemd-suspend.service 29416 -lib/systemd/system/sleep.target 29415 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so 29414 -etc/ssl/certs/ca-certificates.crt 29413 -usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 29412 -usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 29411 -usr/lib/x86_64-linux-gnu/libfftw3.so.3.5.8 29410 -usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 29409 -usr/bin/gjs-console 29408 -usr/libexec/at-spi2-registryd 29407 -usr/libexec/gsd-screensaver-proxy 29404 -usr/libexec/gsd-sound 29401 -usr/share/gnome-shell/org.gnome.Shell.Notifications 29400 -usr/lib/gnome-settings-daemon-3.0/libgsd.so 29398 -usr/libexec/gsd-a11y-settings 29396 -usr/libexec/gsd-xsettings 29393 -usr/libexec/gsd-housekeeping 29390 -usr/share/gnome-shell/org.gnome.Shell.Notifications.src.gresource 29387 -usr/libexec/gsd-power 29386 -usr/libexec/gsd-print-notifications 29383 -usr/libexec/gsd-sharing 29380 -usr/libexec/gsd-usb-protection 29375 -usr/libexec/gsd-color 29374 -usr/share/icons/Adwaita/cursors/sb_v_double_arrow 29371 -usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5 29370 -usr/libexec/gsd-keyboard 29369 -usr/lib/x86_64-linux-gnu/libsodium.so.23.3.0 29366 -usr/libexec/gsd-rfkill 29365 -usr/share/icons/Adwaita/cursors/sb_h_double_arrow 29364 -usr/share/icons/Adwaita/cursors/crossed_circle 29363 -usr/share/icons/Adwaita/cursors/left_ptr_watch 29362 -usr/libexec/ibus-engine-simple 29361 -usr/lib/x86_64-linux-gnu/libpgm-5.3.so.0.0.128 29358 -usr/libexec/gsd-smartcard 29355 -usr/libexec/gsd-wacom 29354 -usr/libexec/gsd-datetime 29351 -usr/libexec/gsd-media-keys 29348 -usr/share/icons/Adwaita/cursors/dnd-copy 29347 -usr/share/icons/Adwaita/index.theme 29346 -usr/share/icons/Adwaita/cursors/link 29345 -usr/share/icons/Adwaita/cursors/move 29344 -usr/share/icons/Adwaita/cursors/question_arrow 29343 -usr/share/icons/Adwaita/cursors/hand2 29342 -usr/share/icons/Adwaita/cursors/X_cursor 29341 -usr/share/icons/Adwaita/cursors/dnd-link 29340 -usr/share/icons/Adwaita/cursors/all-scroll 29339 -usr/share/icons/Adwaita/cursors/bd_double_arrow 29338 -usr/share/icons/Adwaita/cursors/bottom_left_corner 29337 -usr/share/icons/Adwaita/cursors/bottom_right_corner 29336 -usr/share/icons/Adwaita/cursors/bottom_side 29335 -usr/libexec/gsd-printer 29334 -lib/systemd/system/systemd-hostnamed.service 29333 -usr/share/icons/Adwaita/cursors/bottom_tee 29332 -usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 29331 -bin/false 29330 -usr/share/icons/Adwaita/cursors/cell 29328 -usr/share/icons/Adwaita/cursors/circle 29327 -usr/share/icons/Adwaita/cursors/context-menu 29326 -usr/share/icons/Adwaita/cursors/cross 29325 -usr/share/icons/Adwaita/cursors/dnd-ask 29324 -usr/share/icons/Adwaita/cursors/dnd-move 29323 -usr/share/icons/Adwaita/cursors/dnd-no-drop 29322 -usr/share/icons/Adwaita/cursors/dnd-none 29321 -usr/share/icons/Adwaita/cursors/dotbox 29320 -usr/share/icons/Adwaita/cursors/right_ptr 29319 -usr/share/icons/Adwaita/cursors/right_side 29318 -usr/share/icons/Adwaita/cursors/fd_double_arrow 29317 -usr/share/icons/Adwaita/cursors/hand1 29316 -usr/share/icons/Adwaita/cursors/grabbing 29315 -usr/share/icons/Adwaita/cursors/left_side 29314 -usr/share/icons/Adwaita/cursors/left_tee 29313 -usr/share/icons/Adwaita/cursors/ll_angle 29312 -usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 29311 -usr/share/icons/Adwaita/cursors/lr_angle 29310 -usr/share/icons/Adwaita/cursors/top_side 29309 -usr/share/icons/Adwaita/cursors/top_right_corner 29308 -usr/share/icons/Adwaita/cursors/top_left_corner 29307 -usr/share/icons/Adwaita/cursors/pencil 29306 -usr/share/icons/Adwaita/cursors/plus 29305 -usr/share/icons/gnome/index.theme 29304 -lib/systemd/systemd-hostnamed 29303 -usr/share/icons/Adwaita/cursors/pointer-move 29302 -usr/lib/x86_64-linux-gnu/libnorm.so.1 29301 -usr/lib/x86_64-linux-gnu/libmpg123.so.0.45.3 29300 -usr/share/icons/Adwaita/cursors/right_tee 29299 -usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0 29298 -usr/share/icons/Adwaita/cursors/sb_down_arrow 29297 -usr/share/icons/Adwaita/cursors/sb_left_arrow 29296 -usr/share/icons/Adwaita/cursors/sb_right_arrow 29295 -usr/share/icons/Adwaita/cursors/sb_up_arrow 29294 -usr/share/icons/Adwaita/cursors/tcross 29293 -usr/share/icons/Adwaita/cursors/xterm 29292 -usr/share/icons/Adwaita/cursors/top_tee 29291 -usr/share/icons/Adwaita/cursors/ul_angle 29290 -usr/share/icons/Adwaita/cursors/ur_angle 29289 -usr/share/icons/Adwaita/cursors/vertical-text 29288 -usr/share/icons/Adwaita/cursors/watch 29287 -usr/share/icons/Adwaita/cursors/zoom-in 29286 -usr/share/icons/Adwaita/cursors/zoom-out 29285 -usr/share/icons/hicolor/index.theme 29284 -usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29283 -usr/share/icons/Adwaita/16x16/ui/pan-down-symbolic.symbolic.png 29282 -usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29281 -usr/share/icons/Adwaita/16x16/actions/system-shutdown-symbolic.symbolic.png 29280 -usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 29279 -usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 29278 -usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0 29277 -usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 29276 -usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 29275 -usr/share/themes/Default/gtk-3.0/gtk-keys.css 29274 -usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 29273 -usr/share/ibus/dicts/emoji-en.dict 29272 -lib/systemd/system/colord.service 29271 -usr/libexec/colord 29269 -usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 29268 -usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 29267 -usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 29266 -lib/systemd/system/systemd-localed.service 29265 -lib/systemd/system/systemd-localed.service.d/locale-gen.conf 29264 -usr/libexec/dconf-service 29262 -lib/udev/hwdb.bin 29257 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so 29256 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so 29255 -usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so 29254 -usr/lib/x86_64-linux-gnu/libvulkan.so.1.2.162 29252 -usr/share/color/icc/colord/BestRGB.icc 29250 -usr/lib/x86_64-linux-gnu/libedit.so.2.0.63 29249 -usr/lib/x86_64-linux-gnu/libz3.so.4 29248 -usr/share/gnome-shell/org.gnome.Shell.Screencast 29247 -lib/systemd/systemd-localed 29246 -usr/share/color/icc/colord/BetaRGB.icc 29245 -etc/default/keyboard 29244 -usr/share/color/icc/colord/BruceRGB.icc 29243 -usr/share/color/icc/colord/Crayons.icc 29242 -usr/share/color/icc/colord/DonRGB4.icc 29241 -usr/share/color/icc/colord/ECI-RGBv1.icc 29240 -usr/share/color/icc/colord/ECI-RGBv2.icc 29239 -usr/share/color/icc/colord/EktaSpacePS5.icc 29238 -usr/share/color/icc/colord/Gamma5000K.icc 29237 -usr/share/gnome-shell/org.gnome.Shell.Screencast.src.gresource 29236 -usr/share/color/icc/colord/Gamma5500K.icc 29235 -usr/share/color/icc/colord/Gamma6500K.icc 29234 -usr/lib/x86_64-linux-gnu/girepository-1.0/Gst-1.0.typelib 29233 -usr/share/color/icc/colord/Rec709.icc 29232 -usr/share/color/icc/colord/WideGamutRGB.icc 29231 -usr/share/color/icc/ghostscript/a98.icc 29230 -usr/share/color/icc/ghostscript/default_cmyk.icc 29229 -usr/share/color/icc/ghostscript/default_gray.icc 29228 -usr/share/color/icc/ghostscript/default_rgb.icc 29227 -usr/share/color/icc/ghostscript/esrgb.icc 29226 -usr/share/color/icc/ghostscript/gray_to_k.icc 29225 -usr/share/color/icc/ghostscript/lab.icc 29224 -usr/share/color/icc/ghostscript/ps_cmyk.icc 29223 -usr/share/color/icc/ghostscript/ps_gray.icc 29222 -usr/share/color/icc/ghostscript/ps_rgb.icc 29221 -usr/share/color/icc/ghostscript/rommrgb.icc 29220 -usr/share/color/icc/ghostscript/scrgb.icc 29219 -usr/share/color/icc/ghostscript/sgray.icc 29218 -usr/share/color/icc/ghostscript/srgb.icc 29217 -usr/libexec/colord-sane 29216 -usr/lib/x86_64-linux-gnu/libsane.so.1.0.31 29215 -etc/sane.d/dll.d/airscan 29214 -etc/sane.d/dll.d/hplip 29213 -etc/sane.d/dll.conf 29212 -usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.31 29211 -etc/sane.d/xerox_mfp.conf 29210 -usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.31 29209 -etc/sane.d/umax1220u.conf 29208 -usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.31 29207 -etc/sane.d/umax.conf 29206 -usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.31 29205 -etc/sane.d/u12.conf 29204 -usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.31 29203 -etc/sane.d/teco3.conf 29202 -usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.31 29201 -etc/sane.d/teco2.conf 29200 -usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.31 29199 -etc/sane.d/teco1.conf 29198 -usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.31 29197 -etc/sane.d/tamarack.conf 29196 -usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.31 29195 -etc/sane.d/sp15c.conf 29194 -usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.31 29193 -etc/sane.d/snapscan.conf 29192 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.31 29191 -usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.31 29190 -usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.31 29189 -etc/sane.d/sharp.conf 29188 -usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.31 29187 -etc/sane.d/sceptre.conf 29186 -usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.31 29185 -etc/sane.d/s9036.conf 29184 -usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.31 29183 -etc/sane.d/rts8891.conf 29182 -usr/lib/x86_64-linux-gnu/sane/libsane-ricoh2.so.1.0.31 29181 -usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.31 29180 -etc/sane.d/ricoh.conf 29179 -usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.31 29178 -etc/sane.d/qcam.conf 29177 -usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.31 29176 -etc/sane.d/plustek.conf 29175 -usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.31 29174 -etc/sane.d/pixma.conf 29173 -usr/lib/x86_64-linux-gnu/sane/libsane-pieusb.so.1.0.31 29172 -etc/sane.d/pieusb.conf 29171 -usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.31 29170 -etc/sane.d/pie.conf 29169 -usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.31 29168 -usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.31 29167 -etc/sane.d/nec.conf 29166 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.31 29165 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.31 29164 -etc/sane.d/mustek_usb.conf 29163 -usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.31 29162 -usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2 29161 -etc/sane.d/mustek.conf 29160 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.31 29159 -etc/sane.d/microtek2.conf 29158 -usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.31 29157 -etc/sane.d/microtek.conf 29156 -usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.31 29155 -etc/sane.d/matsushita.conf 29154 -usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.31 29153 -usr/lib/x86_64-linux-gnu/libnetsnmp.so.40.0.0 29152 -etc/sane.d/magicolor.conf 29151 -usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.31 29150 -etc/sane.d/ma1509.conf 29149 -usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.31 29148 -etc/sane.d/lexmark.conf 29147 -usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.31 29146 -etc/sane.d/leo.conf 29145 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs40xx.so.1.0.31 29144 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.31 29143 -usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.31 29142 -usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.31 29141 -etc/sane.d/kodakaio.conf 29140 -usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.31 29139 -etc/sane.d/kodak.conf 29138 -usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.31 29137 -etc/sane.d/ibm.conf 29136 -usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.31 29135 -etc/sane.d/hs2p.conf 29134 -usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.31 29133 -etc/sane.d/hpsj5s.conf 29132 -usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.31 29131 -usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.31 29130 -usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.31 29129 -etc/sane.d/hp5400.conf 29128 -usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.31 29127 -etc/sane.d/hp4200.conf 29126 -usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.31 29125 -etc/sane.d/hp3900.conf 29124 -usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.31 29123 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibvisual.so 29122 -usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.31 29121 -etc/sane.d/hp.conf 29120 -usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.31 29119 -etc/sane.d/gt68xx.conf 29118 -usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.31 29117 -usr/lib/x86_64-linux-gnu/libvisual-0.4.so.0.0.0 29116 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlv2.so 29115 -etc/sane.d/genesys.conf 29114 -usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.31 29113 -etc/sane.d/fujitsu.conf 29112 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmatroska.so 29111 -usr/lib/x86_64-linux-gnu/sane/libsane-escl.so.1.0.31 29110 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmidi.so 29109 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmms.so 29108 -usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.31 29107 -etc/sane.d/epsonds.conf 29106 -usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.31 29105 -etc/sane.d/epson2.conf 29104 -usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.31 29103 -etc/sane.d/epjitsu.conf 29102 -usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.31 29101 -etc/sane.d/dmc.conf 29100 -usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.31 29099 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.31 29098 -usr/lib/x86_64-linux-gnu/libmms.so.0.0.2 29097 -etc/sane.d/coolscan3.conf 29096 -usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.31 29095 -etc/sane.d/coolscan.conf 29094 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmodplug.so 29093 -usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0 29092 -usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.31 29091 -etc/sane.d/cardscan.conf 29090 -usr/lib/x86_64-linux-gnu/sane/libsane-canon_lide70.so.1.0.31 29089 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmonoscope.so 29088 -etc/sane.d/canon_lide70.conf 29087 -usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.31 29086 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2dec.so 29085 -usr/lib/x86_64-linux-gnu/libmpeg2.so.0.1.0 29084 -etc/sane.d/canon_dr.conf 29083 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2enc.so 29082 -usr/lib/x86_64-linux-gnu/libmjpegutils-2.1.so.0.0.0 29081 -usr/lib/x86_64-linux-gnu/libmpeg2encpp-2.1.so.0.0.0 29080 -usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.31 29079 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsdemux.so 29078 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsmux.so 29077 -etc/sane.d/canon630u.conf 29076 -usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.31 29075 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsdemux.so 29074 -usr/lib/x86_64-linux-gnu/libgstcodecparsers-1.0.so.0.1804.0 29073 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsmux.so 29072 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpg123.so 29071 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmplex.so 29070 -usr/lib/x86_64-linux-gnu/libmplex2-2.1.so.0.0.0 29069 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmsdk.so 29068 -usr/lib/x86_64-linux-gnu/libmfxhw64.so.1.34 29067 -etc/sane.d/canon.conf 29066 -usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.31 29065 -etc/sane.d/bh.conf 29064 -usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.31 29063 -etc/sane.d/avision.conf 29062 -usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.31 29061 -usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.31 29060 -etc/sane.d/artec_eplus48u.conf 29059 -usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.31 29058 -etc/sane.d/artec.conf 29057 -usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.31 29056 -etc/sane.d/apple.conf 29055 -usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.31 29054 -etc/sane.d/agfafocus.conf 29053 -usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.31 29052 -etc/sane.d/abaton.conf 29051 -usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.31 29050 -etc/sane.d/net.conf 29049 -usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29048 -usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29047 -usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29046 -usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29045 -usr/lib/x86_64-linux-gnu/sane/libsane-airscan.so.1 29044 -etc/sane.d/airscan.conf 29043 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmulaw.so 29042 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultifile.so 29041 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultipart.so 29040 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmusepack.so 29039 -usr/lib/x86_64-linux-gnu/libmpcdec.so.6.1.0 29038 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmxf.so 29037 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnavigationtest.so 29036 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnetsim.so 29035 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnvcodec.so 29034 -usr/lib/x86_64-linux-gnu/libgstcodecs-1.0.so.0.1804.0 29033 -usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1804.0 29032 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstofa.so 29031 -usr/lib/x86_64-linux-gnu/libofa.so.0.0.0 29030 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstogg.so 29029 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenal.so 29028 -usr/lib/x86_64-linux-gnu/libopenal.so.1.19.1 29027 -usr/lib/x86_64-linux-gnu/libsndio.so.7.0 29026 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenexr.so 29025 -usr/lib/x86_64-linux-gnu/libIlmImf-2_5.so.25.0.3 29024 -usr/lib/x86_64-linux-gnu/libHalf-2_5.so.25.0.3 29023 -usr/lib/x86_64-linux-gnu/libIex-2_5.so.25.0.3 29022 -usr/lib/x86_64-linux-gnu/libImath-2_5.so.25.0.3 29021 -usr/lib/x86_64-linux-gnu/libIlmThread-2_5.so.25.0.3 29020 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenjpeg.so 29019 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenmpt.so 29018 -usr/lib/x86_64-linux-gnu/libgstbadaudio-1.0.so.0.1804.0 29017 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenni2.so 29016 -usr/lib/x86_64-linux-gnu/libOpenNI2.so.0 29015 -etc/openni2/OpenNI.ini 29014 -usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libDummyDevice.so.0 29013 -usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libOniFile.so.0 29012 -usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPS1080.so.0 29011 -usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPSLink.so.0 29010 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopus.so 29009 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopusparse.so 29008 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoss4.so 29007 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstossaudio.so 29006 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoverlaycomposition.so 29005 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpango.so 29004 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpbtypes.so 29003 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpcapparse.so 29002 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpipewire.so 29001 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so 29000 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpng.so 28999 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpnm.so 28998 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstproxy.so 28997 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpulseaudio.so 28996 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrawparse.so 28995 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrealmedia.so 28994 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstremovesilence.so 28993 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstreplaygain.so 28992 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstresindvd.so 28991 -usr/lib/x86_64-linux-gnu/libdvdnav.so.4.3.0 28990 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrfbsrc.so 28989 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrist.so 28988 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrsvg.so 28987 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp.so 28986 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp2.so 28985 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtp.so 28984 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanager.so 28983 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanagerbad.so 28982 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtponvif.so 28981 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtsp.so 28980 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsbc.so 28979 -usr/lib/x86_64-linux-gnu/libsbc.so.1.3.0 28978 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsctp.so 28977 -usr/lib/x86_64-linux-gnu/libgstsctp-1.0.so.0.1804.0 28976 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsdpelem.so 28975 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsegmentclip.so 28974 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshapewipe.so 28973 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshm.so 28972 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshout2.so 28971 -usr/lib/x86_64-linux-gnu/libshout.so.3.2.0 28970 -usr/lib/x86_64-linux-gnu/libtheora.so.0.3.10 28969 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsid.so 28968 -usr/lib/x86_64-linux-gnu/libsidplay.so.1.0.3 28967 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsiren.so 28966 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmooth.so 28965 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmoothstreaming.so 28964 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmpte.so 28963 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsndfile.so 28962 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoundtouch.so 28961 -usr/lib/x86_64-linux-gnu/libSoundTouch.so.1.0.0 28960 -lib/x86_64-linux-gnu/libmvec-2.31.so 28959 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoup.so 28958 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspandsp.so 28957 -usr/lib/x86_64-linux-gnu/libspandsp.so.2.0.0 28956 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspectrum.so 28955 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeed.so 28954 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeex.so 28953 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrt.so 28952 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrtp.so 28951 -usr/lib/x86_64-linux-gnu/libsrtp2.so.1 28950 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubenc.so 28949 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubparse.so 28948 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstswitchbin.so 28947 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttaglib.so 28946 -usr/lib/x86_64-linux-gnu/libtag.so.1.17.0 28945 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttcp.so 28944 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstteletext.so 28943 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttheora.so 28942 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttimecode.so 28941 -usr/lib/x86_64-linux-gnu/libltc.so.11.1.0 28940 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttranscode.so 28939 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstttmlsubs.so 28938 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttwolame.so 28937 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttypefindfunctions.so 28936 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstudp.so 28935 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstuvch264.so 28934 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstv4l2codecs.so 28933 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstva.so 28932 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideo4linux2.so 28931 -usr/lib/x86_64-linux-gnu/libv4l2.so.0.0.0 28930 -usr/lib/x86_64-linux-gnu/libv4lconvert.so.0.0.0 28929 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideobox.so 28928 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoconvert.so 28927 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideocrop.so 28926 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofilter.so 28925 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofiltersbad.so 28924 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoframe_audiolevel.so 28923 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideomixer.so 28922 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoparsersbad.so 28921 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideorate.so 28920 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoscale.so 28919 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideosignal.so 28918 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideotestsrc.so 28917 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvmnc.so 28916 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoaacenc.so 28915 -usr/lib/x86_64-linux-gnu/libvo-aacenc.so.0.0.4 28914 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoamrwbenc.so 28913 -usr/lib/x86_64-linux-gnu/libvo-amrwbenc.so.0.0.4 28912 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvolume.so 28911 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvorbis.so 28910 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvpx.so 28909 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavenc.so 28908 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavpack.so 28907 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavparse.so 28906 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwaylandsink.so 28905 -usr/lib/x86_64-linux-gnu/libgstwayland-1.0.so.0.1804.0 28904 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebp.so 28903 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtc.so 28902 -usr/lib/x86_64-linux-gnu/libgstwebrtc-1.0.so.0.1804.0 28901 -usr/lib/x86_64-linux-gnu/libnice.so.10.9.0 28900 -usr/lib/x86_64-linux-gnu/libgupnp-igd-1.0.so.4.2.1 28899 -usr/lib/x86_64-linux-gnu/libgupnp-1.2.so.0.0.0 28898 -usr/lib/x86_64-linux-gnu/libgssdp-1.2.so.0.0.0 28897 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtcdsp.so 28896 -usr/lib/x86_64-linux-gnu/libwebrtc_audio_processing.so.1.0.0 28895 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwildmidi.so 28894 -usr/lib/x86_64-linux-gnu/libWildMidi.so.2.1.0 28893 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx264.so 28892 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx265.so 28891 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesink.so 28890 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesrc.so 28889 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxingmux.so 28888 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxvimagesink.so 28887 -usr/lib/x86_64-linux-gnu/libXv.so.1.0.0 28886 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4mdec.so 28885 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4menc.so 28884 -usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstzbar.so 28883 -usr/lib/x86_64-linux-gnu/libzbar.so.0.3.0 28882 -usr/share/fonts/X11/Type1/fonts.dir 28881 -usr/bin/xkbcomp 28880 -usr/share/X11/xkb/geometry/pc 28879 -usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 28878 -usr/share/X11/locale/locale.alias 28877 -usr/share/X11/locale/locale.dir 28876 -usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 28875 -usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 28874 -usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 28873 -usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 28872 -usr/bin/spice-vdagent 28869 -etc/xdg/Xwayland-session.d/00-xrdb 28868 -usr/libexec/ibus-x11 28867 -etc/X11/Xsession.options 28866 -usr/bin/xrdb 28865 -usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 28864 -etc/X11/Xresources/x11-common 28863 -usr/local/lib/tails-greeter 28860 -usr/bin/x86_64-linux-gnu-cpp-10 28859 -usr/share/tails/greeter/set-cursor.py 28858 -usr/lib/python3/dist-packages/gi/__init__.py 28857 -usr/lib/python3.9/pkgutil.py 28856 -usr/lib/gcc/x86_64-linux-gnu/10/cc1 28855 -usr/lib/python3/dist-packages/gi/_gi.cpython-39-x86_64-linux-gnu.so 28854 -usr/lib/python3/dist-packages/gi/_error.py 28853 -usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-39-x86_64-linux-gnu.so 28852 -usr/lib/x86_64-linux-gnu/libisl.so.23.0.0 28851 -usr/lib/python3/dist-packages/cairo/__init__.py 28850 -usr/lib/python3/dist-packages/cairo/_cairo.cpython-39-x86_64-linux-gnu.so 28849 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-playlist.so 28848 -usr/lib/python3/dist-packages/gi/repository/__init__.py 28847 -usr/lib/python3/dist-packages/gi/importer.py 28846 -usr/lib/python3/dist-packages/gi/module.py 28845 -usr/lib/python3/dist-packages/gi/types.py 28844 -usr/lib/python3/dist-packages/gi/_constants.py 28843 -usr/lib/python3/dist-packages/gi/docstring.py 28842 -usr/lib/python3/dist-packages/gi/_propertyhelper.py 28841 -usr/lib/python3/dist-packages/gi/_signalhelper.py 28840 -usr/lib/python3/dist-packages/gi/overrides/__init__.py 28839 -usr/lib/python3/dist-packages/gi/overrides/GLib.py 28838 -usr/lib/python3/dist-packages/gi/_ossighelper.py 28837 -usr/lib/x86_64-linux-gnu/libmpc.so.3.2.0 28836 -usr/lib/x86_64-linux-gnu/libmpfr.so.6.1.0 28835 -usr/lib/python3/dist-packages/gi/_option.py 28834 -usr/lib/x86_64-linux-gnu/libtotem-plparser.so.18.3.4 28833 -usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-text.so 28832 -usr/lib/python3.9/optparse.py 28831 -usr/lib/python3/dist-packages/gi/overrides/GObject.py 28830 -usr/lib/python3/dist-packages/gi/overrides/Pango.py 28829 -usr/lib/python3/dist-packages/gi/overrides/Gio.py 28828 -usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py 28827 -usr/lib/python3/dist-packages/gi/overrides/Gdk.py 28826 -usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib 28825 -usr/lib/python3/dist-packages/gi/overrides/Gtk.py 28824 -usr/lib/python3/dist-packages/gi/_gtktemplate.py 28823 -usr/share/tails/greeter/tails-greeter.py 28822 -usr/lib/python3.9/logging/config.py 28821 -usr/lib/python3.9/logging/handlers.py 28820 -usr/lib/python3/dist-packages/tailsgreeter/__init__.py 28819 -usr/lib/python3/dist-packages/tailsgreeter/errors.py 28818 -usr/lib/python3/dist-packages/tailsgreeter/greeter.py 28817 -usr/lib/python3.9/pathlib.py 28816 -usr/lib/python3.9/ntpath.py 28815 -usr/lib/python3/dist-packages/tailsgreeter/config.py 28814 -usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 28813 -usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 28812 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 28811 -usr/lib/python3/dist-packages/pycountry/__init__.py 28810 -usr/lib/python3/dist-packages/pycountry/db.py 28809 -usr/lib/python3.9/json/__init__.py 28808 -usr/lib/python3.9/json/decoder.py 28807 -usr/lib/python3.9/json/scanner.py 28806 -usr/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so 28805 -usr/lib/python3.9/json/encoder.py 28804 -usr/lib/python3/dist-packages/pkg_resources/__init__.py 28803 -usr/lib/python3.9/zipfile.py 28802 -usr/lib/python3.9/plistlib.py 28801 -usr/lib/python3.9/xml/__init__.py 28800 -usr/lib/python3.9/xml/parsers/__init__.py 28799 -usr/lib/python3.9/xml/parsers/expat.py 28798 -usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 28797 -usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 28796 -usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py 28795 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 28794 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 28793 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 28792 +usr/share/gdm/greeter/autostart/orca-autostart.desktop 30874 +usr/lib/x86_64-linux-gnu/libcodec2.so.0.9 30873 +usr/bin/gnome-shell 30870 +usr/lib/systemd/user/gvfs-gphoto2-volume-monitor.service 30869 +usr/libexec/gvfs-gphoto2-volume-monitor 30867 +usr/lib/gnome-shell/libgnome-shell.so 30866 +usr/lib/x86_64-linux-gnu/libgphoto2.so.6.1.0 30865 +usr/lib/x86_64-linux-gnu/libgphoto2_port.so.12.0.0 30864 +usr/lib/systemd/user/gvfs-goa-volume-monitor.service 30863 +usr/lib/x86_64-linux-gnu/libgjs.so.0.0.0 30862 +usr/lib/x86_64-linux-gnu/libgsm.so.1.0.18 30861 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-bmp.so 30860 +usr/lib/x86_64-linux-gnu/mutter-7/libmutter-clutter-7.so.0.0.0 30859 +usr/lib/x86_64-linux-gnu/libmp3lame.so.0.0.0 30858 +usr/lib/x86_64-linux-gnu/libopenjp2.so.2.4.0 30856 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-desktop.so 30855 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-dvi.so 30854 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-epub.so 30853 +usr/libexec/gvfs-goa-volume-monitor 30852 +usr/lib/x86_64-linux-gnu/libshine.so.3.0.1 30851 +usr/lib/x86_64-linux-gnu/libspeex.so.1.5.0 30850 +usr/lib/x86_64-linux-gnu/libtheoraenc.so.1.1.2 30849 +usr/lib/x86_64-linux-gnu/libtheoradec.so.1.1.4 30848 +usr/lib/x86_64-linux-gnu/libtwolame.so.0.0.0 30847 +usr/lib/x86_64-linux-gnu/libwavpack.so.1.2.3 30846 +usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-pango-7.so.0.0.0 30845 +usr/lib/x86_64-linux-gnu/libgoa-1.0.so.0.0.0 30844 +usr/lib/x86_64-linux-gnu/libmutter-7.so.0.0.0 30843 +usr/lib/x86_64-linux-gnu/libx264.so.160 30842 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-flac.so 30841 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gif.so 30840 +usr/lib/x86_64-linux-gnu/libgif.so.7.1.0 30839 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-html.so 30838 +usr/lib/gnome-shell/libgnome-shell-menu.so 30837 +usr/lib/gnome-shell/libst-1.0.so 30836 +usr/lib/x86_64-linux-gnu/mutter-7/libmutter-cogl-7.so.0.0.0 30835 +usr/lib/x86_64-linux-gnu/libx265.so.192 30834 +usr/lib/x86_64-linux-gnu/libwayland-server.so.0.1.0 30833 +usr/lib/x86_64-linux-gnu/libpolkit-agent-1.so.0.0.0 30832 +usr/lib/x86_64-linux-gnu/libnm.so.0.1.0 30831 +usr/lib/systemd/user/gvfs-afc-volume-monitor.service 30830 +usr/lib/x86_64-linux-gnu/libmozjs-78.so.78.4.0 30829 +usr/lib/x86_64-linux-gnu/libxvidcore.so.4.3 30828 +usr/libexec/gvfs-afc-volume-monitor 30827 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-icon.so 30825 +usr/lib/x86_64-linux-gnu/libimobiledevice-1.0.so.6.0.0 30824 +usr/lib/x86_64-linux-gnu/libplist-2.0.so.3.3.0 30823 +usr/lib/x86_64-linux-gnu/libusbmuxd-2.0.so.6.0.0 30822 +usr/lib/x86_64-linux-gnu/libva.so.2.1000.0 30821 +usr/lib/x86_64-linux-gnu/libmfx.so.1.34 30820 +usr/lib/x86_64-linux-gnu/libva-drm.so.2.1000.0 30819 +usr/lib/x86_64-linux-gnu/libgraphene-1.0.so.0.1000.4 30818 +usr/lib/x86_64-linux-gnu/libva-x11.so.2.1000.0 30817 +usr/lib/x86_64-linux-gnu/libvdpau.so.1.0.0 30816 +usr/lib/x86_64-linux-gnu/libdrm.so.2.4.0 30815 +usr/lib/x86_64-linux-gnu/libOpenCL.so.1.0.0 30814 +usr/lib/x86_64-linux-gnu/libnuma.so.1.0.0 30813 +usr/lib/x86_64-linux-gnu/libEGL.so.1.1.0 30812 +usr/lib/x86_64-linux-gnu/libGL.so.1.7.0 30811 +usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0 30810 +usr/lib/x86_64-linux-gnu/libwacom.so.2.6.1 30809 +usr/lib/x86_64-linux-gnu/libcanberra.so.0.2.5 30808 +usr/lib/x86_64-linux-gnu/libstartup-notification-1.so.0.0.0 30807 +usr/lib/x86_64-linux-gnu/libxkbfile.so.1.0.2 30806 +usr/lib/x86_64-linux-gnu/libxkbcommon-x11.so.0.0.0 30805 +usr/lib/x86_64-linux-gnu/libxcb-randr.so.0.1.0 30804 +usr/lib/x86_64-linux-gnu/libxcb-res.so.0.0.0 30803 +usr/lib/x86_64-linux-gnu/libinput.so.10.13.0 30802 +usr/lib/x86_64-linux-gnu/libgbm.so.1.0.0 30801 +usr/lib/x86_64-linux-gnu/libGLESv2.so.2.1.0 30800 +usr/lib/x86_64-linux-gnu/libGLdispatch.so.0.0.0 30799 +usr/lib/x86_64-linux-gnu/libGLX.so.0.0.0 30798 +usr/lib/x86_64-linux-gnu/libvorbisfile.so.3.3.8 30797 +usr/lib/x86_64-linux-gnu/libxcb-util.so.1.0.0 30796 +usr/lib/x86_64-linux-gnu/libxcb-xkb.so.1.0.0 30795 +usr/lib/x86_64-linux-gnu/libmtdev.so.1.0.0 30794 +usr/lib/x86_64-linux-gnu/libevdev.so.2.3.0 30793 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-jpeg.so 30792 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-mp3.so 30791 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice.so 30790 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-oasis.so 30789 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-pdf.so 30788 +usr/lib/x86_64-linux-gnu/libpoppler-glib.so.8.19.0 30787 +usr/lib/x86_64-linux-gnu/libpoppler.so.102.0.0 30786 +lib/systemd/system/upower.service 30785 +usr/libexec/upowerd 30783 +usr/lib/x86_64-linux-gnu/liblcms2.so.2.0.12 30782 +usr/lib/x86_64-linux-gnu/libusb-1.0.so.0.3.0 30781 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-png.so 30780 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-ps.so 30779 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-raw.so 30778 +usr/lib/x86_64-linux-gnu/libgexiv2.so.2.0.0 30777 +usr/lib/x86_64-linux-gnu/libexiv2.so.0.27.3 30776 +etc/UPower/UPower.conf 30775 +usr/share/libwacom/libwacom.stylus 30753 +usr/share/libwacom/xp-pen-star03.tablet 30752 +usr/share/libwacom/xp-pen-g640.tablet 30751 +usr/share/libwacom/xp-pen-g430.tablet 30750 +usr/share/libwacom/wacom-one.tablet 30749 +usr/share/libwacom/volito-4x5.tablet 30748 +usr/share/libwacom/serial-wacf004.tablet 30747 +usr/share/libwacom/one-by-wacom-s-p.tablet 30746 +usr/share/libwacom/one-by-wacom-s-p2.tablet 30745 +usr/share/libwacom/one-by-wacom-m-p.tablet 30744 +usr/share/libwacom/one-by-wacom-m-p2.tablet 30743 +usr/share/libwacom/n-trig-pen.tablet 30742 +usr/share/libwacom/mobilestudio-pro-16.tablet 30741 +usr/share/libwacom/mobilestudio-pro-16-3.tablet 30740 +usr/share/libwacom/mobilestudio-pro-16-2.tablet 30739 +usr/share/libwacom/mobilestudio-pro-13.tablet 30738 +usr/share/libwacom/mobilestudio-pro-13-2.tablet 30737 +usr/share/libwacom/isdv4-ef.tablet 30736 +usr/share/libwacom/isdv4-ed.tablet 30735 +usr/share/libwacom/isdv4-ec.tablet 30734 +usr/share/libwacom/isdv4-e6.tablet 30733 +usr/share/libwacom/isdv4-e5.tablet 30732 +usr/share/libwacom/isdv4-e3.tablet 30731 +usr/share/libwacom/isdv4-e2.tablet 30730 +usr/share/libwacom/isdv4-93.tablet 30729 +usr/share/libwacom/isdv4-90.tablet 30728 +usr/share/libwacom/isdv4-5222.tablet 30727 +usr/share/libwacom/isdv4-5221.tablet 30726 +usr/share/libwacom/isdv4-5220.tablet 30725 +usr/share/libwacom/isdv4-521f.tablet 30724 +usr/share/libwacom/isdv4-5215.tablet 30723 +usr/share/libwacom/isdv4-5202.tablet 30722 +usr/share/libwacom/isdv4-51f6.tablet 30721 +usr/share/libwacom/isdv4-51f5.tablet 30720 +usr/share/libwacom/isdv4-51e9.tablet 30719 +usr/share/libwacom/isdv4-51e2.tablet 30718 +usr/share/libwacom/isdv4-51c7.tablet 30717 +usr/share/libwacom/isdv4-51c4.tablet 30716 +usr/share/libwacom/isdv4-51bf.tablet 30715 +usr/share/libwacom/isdv4-51be.tablet 30714 +usr/share/libwacom/isdv4-51bd.tablet 30713 +usr/share/libwacom/isdv4-51bc.tablet 30712 +usr/share/libwacom/isdv4-51bb.tablet 30711 +usr/share/libwacom/isdv4-51ba.tablet 30710 +usr/share/libwacom/isdv4-51b9.tablet 30709 +usr/share/libwacom/isdv4-51b8.tablet 30708 +usr/share/libwacom/isdv4-51b7.tablet 30707 +usr/share/libwacom/isdv4-51b6.tablet 30706 +usr/share/libwacom/isdv4-51b3.tablet 30705 +usr/share/libwacom/isdv4-51b2.tablet 30704 +usr/share/libwacom/isdv4-51b1.tablet 30703 +usr/share/libwacom/isdv4-51b0.tablet 30702 +usr/share/libwacom/isdv4-51af.tablet 30701 +usr/share/libwacom/isdv4-51a0.tablet 30700 +usr/share/libwacom/isdv4-5196.tablet 30699 +usr/share/libwacom/isdv4-517d.tablet 30698 +usr/share/libwacom/isdv4-516b.tablet 30697 +usr/share/libwacom/isdv4-5169.tablet 30696 +usr/share/libwacom/isdv4-515a.tablet 30695 +usr/share/libwacom/isdv4-5158.tablet 30694 +usr/share/libwacom/isdv4-5157.tablet 30693 +usr/share/libwacom/isdv4-5150.tablet 30692 +usr/share/libwacom/isdv4-5148.tablet 30691 +usr/share/libwacom/isdv4-5147.tablet 30690 +usr/share/libwacom/isdv4-5146.tablet 30689 +usr/share/libwacom/isdv4-5144.tablet 30688 +usr/share/libwacom/isdv4-513b.tablet 30687 +usr/share/libwacom/isdv4-5128.tablet 30686 +usr/share/libwacom/isdv4-5122.tablet 30685 +usr/share/libwacom/isdv4-5115.tablet 30684 +usr/share/libwacom/isdv4-5110.tablet 30683 +usr/share/libwacom/isdv4-50fd.tablet 30682 +usr/share/libwacom/isdv4-50f8.tablet 30681 +usr/share/libwacom/isdv4-50f1.tablet 30680 +usr/share/libwacom/isdv4-50ef.tablet 30679 +usr/share/libwacom/isdv4-50e9.tablet 30678 +usr/share/libwacom/isdv4-50db.tablet 30677 +usr/share/libwacom/isdv4-50b8.tablet 30676 +usr/share/libwacom/isdv4-50b6.tablet 30675 +usr/share/libwacom/isdv4-50b4.tablet 30674 +usr/share/libwacom/isdv4-509f.tablet 30673 +usr/share/libwacom/isdv4-509d.tablet 30672 +usr/share/libwacom/isdv4-5099.tablet 30671 +usr/share/libwacom/isdv4-5090.tablet 30670 +usr/share/libwacom/isdv4-5072.tablet 30669 +usr/share/libwacom/isdv4-504a.tablet 30668 +usr/share/libwacom/isdv4-5048.tablet 30667 +usr/share/libwacom/isdv4-5044.tablet 30666 +usr/share/libwacom/isdv4-5040.tablet 30665 +usr/share/libwacom/isdv4-503f.tablet 30664 +usr/share/libwacom/isdv4-503e.tablet 30663 +usr/share/libwacom/isdv4-502a.tablet 30662 +usr/share/libwacom/isdv4-5014.tablet 30661 +usr/share/libwacom/isdv4-5013.tablet 30660 +usr/share/libwacom/isdv4-5010.tablet 30659 +usr/share/libwacom/isdv4-5002.tablet 30658 +usr/share/libwacom/isdv4-5000.tablet 30657 +usr/share/libwacom/isdv4-4988.tablet 30656 +usr/share/libwacom/isdv4-496c.tablet 30655 +usr/share/libwacom/isdv4-495f.tablet 30654 +usr/share/libwacom/isdv4-4957.tablet 30653 +usr/share/libwacom/isdv4-490b.tablet 30652 +usr/share/libwacom/isdv4-490a.tablet 30651 +usr/share/libwacom/isdv4-48f6.tablet 30650 +usr/share/libwacom/isdv4-48ee.tablet 30649 +usr/share/libwacom/isdv4-48ed.tablet 30648 +usr/share/libwacom/isdv4-48ec.tablet 30647 +usr/share/libwacom/isdv4-48eb.tablet 30646 +usr/share/libwacom/isdv4-48d6.tablet 30645 +usr/share/libwacom/isdv4-48ce.tablet 30644 +usr/share/libwacom/isdv4-48ca.tablet 30643 +usr/share/libwacom/isdv4-48c9.tablet 30642 +usr/share/libwacom/isdv4-488f.tablet 30641 +usr/share/libwacom/isdv4-4875.tablet 30640 +usr/share/libwacom/isdv4-4870.tablet 30639 +usr/share/libwacom/isdv4-486a.tablet 30638 +usr/share/libwacom/isdv4-4865.tablet 30637 +usr/share/libwacom/isdv4-485e.tablet 30636 +usr/share/libwacom/isdv4-4851.tablet 30635 +usr/share/libwacom/isdv4-484c.tablet 30634 +usr/share/libwacom/isdv4-4841.tablet 30633 +usr/share/libwacom/isdv4-4838.tablet 30632 +usr/share/libwacom/isdv4-4834.tablet 30631 +usr/share/libwacom/isdv4-4831.tablet 30630 +usr/share/libwacom/isdv4-4824.tablet 30629 +usr/share/libwacom/isdv4-4822.tablet 30628 +usr/share/libwacom/isdv4-481a.tablet 30627 +usr/share/libwacom/isdv4-4814.tablet 30626 +usr/share/libwacom/isdv4-4809.tablet 30625 +usr/share/libwacom/isdv4-4807.tablet 30624 +usr/share/libwacom/isdv4-4806.tablet 30623 +usr/share/libwacom/isdv4-4800.tablet 30622 +usr/share/libwacom/isdv4-4004.tablet 30621 +usr/share/libwacom/isdv4-2d1f-002e.tablet 30620 +usr/share/libwacom/isdv4-2d1f-001e.tablet 30619 +usr/share/libwacom/isdv4-149.tablet 30618 +usr/share/libwacom/isdv4-12c.tablet 30617 +usr/share/libwacom/isdv4-124.tablet 30616 +usr/share/libwacom/isdv4-117.tablet 30615 +usr/share/libwacom/isdv4-116.tablet 30614 +usr/share/libwacom/isdv4-114.tablet 30613 +usr/share/libwacom/isdv4-10f.tablet 30612 +usr/share/libwacom/isdv4-10e.tablet 30611 +usr/share/libwacom/isdv4-10d.tablet 30610 +usr/share/libwacom/isdv4-104.tablet 30609 +usr/share/libwacom/isdv4-101.tablet 30608 +usr/share/libwacom/isdv4-100.tablet 30607 +usr/share/libwacom/intuos-s-pt.tablet 30606 +usr/share/libwacom/intuos-s-p.tablet 30605 +usr/share/libwacom/intuos-s-pt2.tablet 30604 +usr/share/libwacom/intuos-s-p3-wl.tablet 30603 +usr/share/libwacom/intuos-s-p3-wl-android.tablet 30602 +usr/share/libwacom/intuos-s-p3.tablet 30601 +usr/share/libwacom/intuos-s-p3-android.tablet 30600 +usr/share/libwacom/intuos-s-p2.tablet 30599 +usr/share/libwacom/intuos-pro-s.tablet 30598 +usr/share/libwacom/intuos-pro-m.tablet 30597 +usr/share/libwacom/intuos-pro-l.tablet 30596 +usr/share/libwacom/intuos-pro-2-s.tablet 30595 +usr/share/libwacom/intuos-pro-2-m.tablet 30594 +usr/share/libwacom/intuos-pro-2-l.tablet 30593 +usr/share/libwacom/intuos-m-pt.tablet 30592 +usr/share/libwacom/intuos-m-p.tablet 30591 +usr/share/libwacom/intuos-m-pt2.tablet 30590 +usr/share/libwacom/intuos-m-p3-wl.tablet 30589 +usr/share/libwacom/intuos-m-p3-wl-android.tablet 30588 +usr/share/libwacom/intuos-m-p3.tablet 30587 +usr/share/libwacom/intuos-m-p3-android.tablet 30586 +usr/share/libwacom/intuos-m-p2.tablet 30585 +usr/share/libwacom/intuos-9x12.tablet 30584 +usr/share/libwacom/intuos-6x8.tablet 30583 +usr/share/libwacom/intuos5-touch-s.tablet 30582 +usr/share/libwacom/intuos5-touch-m.tablet 30581 +usr/share/libwacom/intuos5-touch-l.tablet 30580 +usr/share/libwacom/intuos5-s.tablet 30579 +usr/share/libwacom/intuos5-m.tablet 30578 +usr/share/libwacom/intuos-4x5.tablet 30577 +usr/share/libwacom/intuos4-8x13.tablet 30576 +usr/share/libwacom/intuos4-6x9-wl.tablet 30575 +usr/share/libwacom/intuos4-6x9.tablet 30574 +usr/share/libwacom/intuos4-4x6.tablet 30573 +usr/share/libwacom/intuos4-12x19.tablet 30572 +usr/share/libwacom/intuos3-9x12.tablet 30571 +usr/share/libwacom/intuos3-6x8.tablet 30570 +usr/share/libwacom/intuos3-6x11.tablet 30569 +usr/share/libwacom/intuos3-4x6.tablet 30568 +usr/share/libwacom/intuos3-4x5.tablet 30567 +usr/share/libwacom/intuos3-12x19.tablet 30566 +usr/share/libwacom/intuos3-12x12.tablet 30565 +usr/share/libwacom/intuos2-9x12.tablet 30564 +usr/share/libwacom/intuos2-6x8.tablet 30563 +usr/share/libwacom/intuos2-4x5.tablet 30562 +usr/share/libwacom/intuos2-12x18.tablet 30561 +usr/share/libwacom/intuos2-12x12.tablet 30560 +usr/share/libwacom/intuos-12x18.tablet 30559 +usr/share/libwacom/intuos-12x12.tablet 30558 +usr/share/libwacom/huion-new-1060-plus.tablet 30557 +usr/share/libwacom/huion-h950p.tablet 30556 +usr/share/libwacom/huion-h610-pro.tablet 30555 +usr/share/libwacom/huion-h420.tablet 30554 +usr/share/libwacom/huion-420.tablet 30553 +usr/share/libwacom/graphire-wireless-8x6.tablet 30552 +usr/share/libwacom/graphire-usb.tablet 30551 +usr/share/libwacom/graphire4-6x8.tablet 30550 +usr/share/libwacom/graphire4-4x5.tablet 30549 +usr/share/libwacom/graphire3-6x8.tablet 30548 +usr/share/libwacom/graphire3-4x5.tablet 30547 +usr/share/libwacom/graphire2-5x7.tablet 30546 +usr/share/libwacom/graphire2-4x5.tablet 30545 +usr/share/libwacom/generic.tablet 30544 +usr/lib/systemd/user/tracker-store.service 30543 +usr/share/libwacom/gaomon-s620.tablet 30542 +usr/share/libwacom/gaomon-s56k.tablet 30541 +usr/share/libwacom/elan-5515.tablet 30540 +usr/share/libwacom/elan-29b6.tablet 30539 +usr/share/libwacom/elan-29a1.tablet 30538 +usr/share/libwacom/elan-264c.tablet 30537 +usr/share/libwacom/elan-262b.tablet 30536 +usr/share/libwacom/elan-2628.tablet 30535 +usr/share/libwacom/elan-2627.tablet 30534 +usr/share/libwacom/elan-2537.tablet 30533 +usr/share/libwacom/elan-2514.tablet 30532 +usr/share/libwacom/elan-2514-alt.tablet 30531 +usr/share/libwacom/elan-24db.tablet 30530 +usr/share/libwacom/elan-22e2.tablet 30529 +usr/share/libwacom/elan-2072.tablet 30528 +usr/share/libwacom/elan-0732.tablet 30527 +usr/share/libwacom/ek-remote.tablet 30526 +usr/share/libwacom/dtu-2231.tablet 30525 +usr/share/libwacom/dtu-1931.tablet 30524 +usr/share/libwacom/dtu-1631.tablet 30523 +usr/share/libwacom/dtu-1141.tablet 30522 +usr/share/libwacom/dtu-1141b.tablet 30521 +usr/share/libwacom/dtu-1031x.tablet 30520 +usr/share/libwacom/dtu-1031.tablet 30519 +usr/share/libwacom/dtk-2451.tablet 30518 +usr/share/libwacom/dtk-2241.tablet 30516 +usr/share/libwacom/dtk-1660e.tablet 30513 +usr/share/libwacom/dtk-1660e-2.tablet 30511 +usr/share/libwacom/dtk-1651.tablet 30509 +usr/share/libwacom/dti-520.tablet 30507 +usr/share/libwacom/dth-2452.tablet 30505 +usr/share/libwacom/dth-2242.tablet 30503 +usr/share/libwacom/dth-1152.tablet 30502 +usr/share/libwacom/dtf-720.tablet 30500 +usr/share/libwacom/dell-canvas-27.tablet 30498 +usr/share/libwacom/cintiq-pro-32.tablet 30497 +usr/share/libwacom/cintiq-pro-24-pt.tablet 30495 +usr/share/libwacom/cintiq-pro-24-p.tablet 30494 +usr/share/libwacom/cintiq-pro-16.tablet 30492 +usr/share/libwacom/cintiq-pro-13.tablet 30490 +usr/share/libwacom/cintiq-companion.tablet 30489 +usr/share/libwacom/cintiq-companion-hybrid.tablet 30487 +usr/share/libwacom/cintiq-companion-2.tablet 30486 +usr/share/libwacom/cintiq-27hdt.tablet 30484 +usr/share/libwacom/cintiq-27hd.tablet 30482 +usr/share/libwacom/cintiq-24hd-touch.tablet 30481 +usr/share/libwacom/cintiq-24hd.tablet 30480 +usr/share/libwacom/cintiq-22.tablet 30479 +usr/share/libwacom/cintiq-22hdt.tablet 30478 +usr/share/libwacom/cintiq-22hd.tablet 30477 +usr/share/libwacom/cintiq-21ux.tablet 30476 +usr/share/libwacom/cintiq-21ux2.tablet 30475 +usr/share/libwacom/cintiq-20wsx.tablet 30474 +usr/share/libwacom/cintiq-16.tablet 30473 +usr/share/libwacom/cintiq-16-2.tablet 30472 +usr/share/libwacom/cintiq-13hdt.tablet 30471 +usr/share/libwacom/cintiq-13hd.tablet 30470 +usr/share/libwacom/cintiq-12wx.tablet 30469 +usr/share/libwacom/bamboo-pad-wireless.tablet 30468 +usr/share/libwacom/bamboo-pad.tablet 30467 +usr/share/libwacom/bamboo-one.tablet 30466 +usr/share/libwacom/bamboo-one-m-p.tablet 30465 +usr/share/libwacom/bamboo-4fg-s-t.tablet 30464 +usr/share/libwacom/bamboo-4fg-s-pt.tablet 30463 +usr/share/libwacom/bamboo-4fg-se-s-pt.tablet 30462 +usr/share/libwacom/bamboo-4fg-se-m-pt.tablet 30461 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-tiff.so 30460 +usr/share/libwacom/bamboo-4fg-fun-s.tablet 30459 +usr/share/libwacom/bamboo-4fg-fun-m.tablet 30458 +usr/share/libwacom/bamboo-2fg-s-t.tablet 30457 +usr/share/libwacom/bamboo-2fg-s-pt.tablet 30456 +usr/share/libwacom/bamboo-2fg-s-p.tablet 30455 +usr/share/libwacom/bamboo-2fg-m-p.tablet 30454 +usr/share/libwacom/bamboo-2fg-fun-s-pt.tablet 30453 +usr/share/libwacom/bamboo-2fg-fun-m-pt.tablet 30452 +usr/share/libwacom/bamboo-16fg-s-t.tablet 30451 +usr/share/libwacom/bamboo-16fg-s-pt.tablet 30450 +usr/share/libwacom/bamboo-16fg-s-p.tablet 30449 +usr/share/libwacom/bamboo-16fg-m-pt.tablet 30448 +usr/share/libwacom/bamboo-0fg-s-p.tablet 30447 +usr/share/libwacom/bamboo-0fg-s-p-alt.tablet 30446 +usr/share/libwacom/bamboo-0fg-m-p-alt.tablet 30445 +usr/libexec/tracker-store 30442 +usr/share/glvnd/egl_vendor.d/50_mesa.json 30437 +usr/lib/x86_64-linux-gnu/libEGL_mesa.so.0.0.0 30433 +usr/lib/x86_64-linux-gnu/libglapi.so.0.0.0 30432 +usr/lib/x86_64-linux-gnu/libxcb-dri2.so.0.0.0 30431 +usr/lib/x86_64-linux-gnu/libxcb-xfixes.so.0.0.0 30430 +usr/lib/x86_64-linux-gnu/libxcb-dri3.so.0.0.0 30429 +usr/lib/x86_64-linux-gnu/libxcb-present.so.0.0.0 30428 +usr/lib/x86_64-linux-gnu/libxcb-sync.so.1.0.0 30427 +usr/lib/x86_64-linux-gnu/libxshmfence.so.1.0.0 30426 +usr/share/drirc.d/00-mesa-defaults.conf 30425 +usr/lib/x86_64-linux-gnu/dri/i965_dri.so 30424 +usr/lib/x86_64-linux-gnu/libdrm_intel.so.1.0.0 30423 +usr/lib/x86_64-linux-gnu/libdrm_radeon.so.1.0.1 30422 +usr/lib/x86_64-linux-gnu/libdrm_nouveau.so.2.0.0 30421 +usr/lib/x86_64-linux-gnu/libpciaccess.so.0.11.1 30420 +usr/lib/pulse-14.2/modules/module-native-protocol-unix.so 30419 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-vorbis.so 30418 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xmp.so 30417 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-xps.so 30416 +usr/lib/x86_64-linux-gnu/libgxps.so.2.2.4 30415 +usr/lib/x86_64-linux-gnu/libarchive.so.13.4.3 30414 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-iso.so 30413 +usr/lib/x86_64-linux-gnu/libosinfo-1.0.so.0.1008.0 30412 +usr/share/tracker/ontologies/nepomuk/30-nie.ontology 30411 +usr/lib/pulse-14.2/modules/module-default-device-restore.so 30410 +usr/lib/pulse-14.2/modules/module-always-sink.so 30409 +usr/lib/x86_64-linux-gnu/libxslt.so.1.1.34 30408 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-msoffice-xml.so 30407 +usr/share/tracker/ontologies/nepomuk/32-nco.ontology 30406 +usr/share/tracker/ontologies/nepomuk/33-nfo.ontology 30405 +usr/share/tracker/ontologies/nepomuk/34-nmo.ontology 30404 +usr/share/tracker/ontologies/nepomuk/35-ncal.ontology 30403 +usr/share/tracker/ontologies/nepomuk/36-scal.ontology 30402 +usr/share/tracker/ontologies/nepomuk/37-nid3.ontology 30401 +usr/share/tracker/ontologies/nepomuk/38-nmm.ontology 30400 +usr/lib/pulse-14.2/modules/module-intended-roles.so 30399 +usr/share/tracker/ontologies/nepomuk/39-mto.ontology 30398 +usr/share/tracker/ontologies/nepomuk/40-mlo.ontology 30397 +usr/share/tracker/ontologies/nepomuk/41-mfo.ontology 30396 +usr/share/tracker/ontologies/nepomuk/89-mtp.ontology 30395 +usr/share/tracker/ontologies/nepomuk/90-tracker.ontology 30394 +usr/share/tracker/ontologies/nepomuk/91-maemo.ontology 30393 +usr/share/tracker/ontologies/nepomuk/92-slo.ontology 30392 +usr/lib/pulse-14.2/modules/module-suspend-on-idle.so 30391 +usr/share/tracker/ontologies/nepomuk/93-libosinfo.ontology 30390 +usr/lib/pulse-14.2/modules/module-systemd-login.so 30389 +usr/lib/pulse-14.2/modules/module-position-event-sounds.so 30388 +usr/lib/pulse-14.2/modules/module-role-cork.so 30387 +usr/lib/pulse-14.2/modules/module-filter-heuristics.so 30386 +usr/lib/pulse-14.2/modules/module-filter-apply.so 30385 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-gstreamer.so 30384 +usr/share/locale/en/LC_MESSAGES/gtk30.mo 30383 +usr/share/libinput/10-generic-keyboard.quirks 30382 +usr/share/libinput/10-generic-lid.quirks 30381 +usr/share/libinput/10-generic-trackball.quirks 30380 +usr/share/libinput/30-vendor-aiptek.quirks 30379 +usr/share/libinput/30-vendor-alps.quirks 30378 +usr/share/libinput/30-vendor-contour.quirks 30377 +usr/share/libinput/30-vendor-cypress.quirks 30376 +usr/share/libinput/30-vendor-elantech.quirks 30375 +usr/share/libinput/30-vendor-ibm.quirks 30374 +usr/share/libinput/30-vendor-kensington.quirks 30373 +usr/share/libinput/30-vendor-logitech.quirks 30372 +usr/share/libinput/30-vendor-madcatz.quirks 30371 +usr/share/libinput/30-vendor-microsoft.quirks 30370 +usr/share/libinput/30-vendor-razer.quirks 30369 +usr/share/libinput/30-vendor-synaptics.quirks 30368 +usr/share/libinput/30-vendor-trust.quirks 30367 +usr/share/libinput/30-vendor-vmware.quirks 30366 +usr/share/libinput/30-vendor-wacom.quirks 30365 +usr/share/libinput/50-system-acer.quirks 30364 +usr/share/libinput/50-system-apple.quirks 30363 +usr/share/libinput/50-system-asus.quirks 30362 +usr/share/libinput/50-system-chicony.quirks 30361 +usr/share/libinput/50-system-cyborg.quirks 30360 +usr/share/libinput/50-system-dell.quirks 30359 +usr/share/libinput/50-system-google.quirks 30358 +usr/share/libinput/50-system-hp.quirks 30357 +usr/share/libinput/50-system-lenovo.quirks 30356 +usr/share/libinput/50-system-sony.quirks 30355 +usr/share/libinput/50-system-system76.quirks 30354 +usr/share/libinput/50-system-toshiba.quirks 30353 +usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so.0.1804.0 30338 +usr/share/tracker/stop-words/stopwords.en 30330 +usr/lib/x86_64-linux-gnu/libgstpbutils-1.0.so.0.1804.0 30323 +usr/share/X11/xkb/rules/evdev 30317 +usr/lib/x86_64-linux-gnu/libcue.so.2.2.1 30316 +usr/lib/x86_64-linux-gnu/libunwind.so.8.0.1 30315 +usr/lib/x86_64-linux-gnu/libdw-0.183.so 30314 +usr/share/X11/xkb/keycodes/evdev 30313 +usr/share/X11/xkb/keycodes/aliases 30312 +usr/share/X11/xkb/types/complete 30311 +usr/share/X11/xkb/types/basic 30310 +usr/lib/x86_64-linux-gnu/libgstvideo-1.0.so.0.1804.0 30309 +usr/share/X11/xkb/types/mousekeys 30308 +usr/share/X11/xkb/types/pc 30307 +usr/share/X11/xkb/types/iso9995 30306 +usr/share/X11/xkb/types/level5 30305 +usr/share/X11/xkb/types/extra 30304 +usr/share/X11/xkb/types/numpad 30303 +usr/share/X11/xkb/compat/complete 30302 +usr/share/X11/xkb/compat/basic 30301 +usr/share/X11/xkb/compat/ledcaps 30300 +usr/share/X11/xkb/compat/lednum 30299 +usr/share/X11/xkb/compat/iso9995 30298 +usr/share/X11/xkb/compat/mousekeys 30297 +usr/share/X11/xkb/compat/accessx 30296 +usr/share/X11/xkb/compat/misc 30295 +usr/share/X11/xkb/compat/ledscroll 30294 +usr/share/X11/xkb/compat/xfree86 30293 +usr/share/X11/xkb/compat/level5 30292 +usr/share/X11/xkb/compat/caps 30291 +usr/share/X11/xkb/symbols/pc 30290 +usr/share/X11/xkb/symbols/srvr_ctrl 30289 +usr/share/X11/xkb/symbols/keypad 30288 +usr/share/X11/xkb/symbols/altwin 30287 +usr/share/X11/xkb/symbols/us 30286 +usr/share/X11/xkb/symbols/inet 30285 +usr/libexec/at-spi-bus-launcher 30284 +usr/lib/x86_64-linux-gnu/libgstaudio-1.0.so.0.1804.0 30283 +usr/share/defaults/at-spi2/accessibility.conf 30282 +usr/lib/x86_64-linux-gnu/libgsttag-1.0.so.0.1804.0 30281 +usr/lib/x86_64-linux-gnu/libgstbase-1.0.so.0.1804.0 30280 +usr/share/dbus-1/accessibility-services/org.a11y.atspi.Registry.service 30279 +usr/share/icons/Adwaita/cursors/left_ptr 30278 +usr/bin/Xwayland 30277 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache 30276 +usr/lib/x86_64-linux-gnu/libXfont2.so.2.0.0 30275 +usr/lib/x86_64-linux-gnu/libfontenc.so.1.0.0 30274 +usr/lib/xorg/protocol.txt 30273 +usr/lib/x86_64-linux-gnu/mutter-7/Clutter-7.typelib 30272 +usr/lib/x86_64-linux-gnu/girepository-1.0/cairo-1.0.typelib 30271 +usr/lib/x86_64-linux-gnu/girepository-1.0/Json-1.0.typelib 30270 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gio-2.0.typelib 30269 +usr/lib/x86_64-linux-gnu/girepository-1.0/GObject-2.0.typelib 30268 +usr/lib/x86_64-linux-gnu/girepository-1.0/GLib-2.0.typelib 30267 +usr/lib/x86_64-linux-gnu/girepository-1.0/GL-1.0.typelib 30266 +usr/lib/x86_64-linux-gnu/mutter-7/CoglPango-7.typelib 30265 +usr/lib/x86_64-linux-gnu/girepository-1.0/PangoCairo-1.0.typelib 30264 +usr/lib/x86_64-linux-gnu/girepository-1.0/Pango-1.0.typelib 30263 +usr/lib/x86_64-linux-gnu/girepository-1.0/HarfBuzz-0.0.typelib 30262 +usr/lib/x86_64-linux-gnu/mutter-7/Cogl-7.typelib 30261 +usr/lib/x86_64-linux-gnu/girepository-1.0/Graphene-1.0.typelib 30260 +usr/lib/x86_64-linux-gnu/girepository-1.0/Atk-1.0.typelib 30259 +usr/lib/x86_64-linux-gnu/gjs/girepository-1.0/GjsPrivate-1.0.typelib 30258 +usr/lib/x86_64-linux-gnu/mutter-7/Meta-7.typelib 30257 +usr/lib/x86_64-linux-gnu/girepository-1.0/xlib-2.0.typelib 30256 +usr/lib/x86_64-linux-gnu/girepository-1.0/xfixes-4.0.typelib 30255 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gtk-3.0.typelib 30254 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gdk-3.0.typelib 30253 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkPixbuf-2.0.typelib 30252 +usr/lib/x86_64-linux-gnu/girepository-1.0/GModule-2.0.typelib 30251 +usr/lib/x86_64-linux-gnu/girepository-1.0/GDesktopEnums-3.0.typelib 30250 +usr/lib/x86_64-linux-gnu/girepository-1.0/Polkit-1.0.typelib 30249 +usr/lib/gnome-shell/Shell-0.1.typelib 30248 +usr/lib/gnome-shell/St-1.0.typelib 30247 +usr/lib/x86_64-linux-gnu/mutter-7/Cally-7.typelib 30246 +usr/lib/x86_64-linux-gnu/girepository-1.0/PolkitAgent-1.0.typelib 30245 +usr/lib/x86_64-linux-gnu/girepository-1.0/NM-1.0.typelib 30244 +usr/lib/gnome-shell/Gvc-1.0.typelib 30243 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gcr-3.typelib 30242 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gck-1.typelib 30241 +usr/lib/x86_64-linux-gnu/mutter-7/ClutterX11-7.typelib 30240 +usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeDesktop-3.0.typelib 30239 +usr/share/gnome-shell/gnome-shell-dbus-interfaces.gresource 30238 +usr/lib/x86_64-linux-gnu/girepository-1.0/AccountsService-1.0.typelib 30237 +usr/lib/x86_64-linux-gnu/girepository-1.0/UPowerGlib-1.0.typelib 30236 +usr/lib/x86_64-linux-gnu/girepository-1.0/Soup-2.4.typelib 30235 +usr/lib/x86_64-linux-gnu/girepository-1.0/IBus-1.0.typelib 30234 +usr/lib/x86_64-linux-gnu/libibus-1.0.so.5.0.523 30233 +usr/lib/x86_64-linux-gnu/girepository-1.0/GIRepository-2.0.typelib 30232 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gdm-1.0.typelib 30231 +usr/share/locale/en/LC_MESSAGES/gtk30-properties.mo 30230 +usr/lib/x86_64-linux-gnu/girepository-1.0/Rsvg-2.0.typelib 30229 +usr/lib/x86_64-linux-gnu/girepository-1.0/GWeather-3.0.typelib 30228 +usr/lib/x86_64-linux-gnu/girepository-1.0/Geoclue-2.0.typelib 30227 +usr/lib/x86_64-linux-gnu/libgeoclue-2.so.0.0.0 30226 +usr/lib/x86_64-linux-gnu/libgdm.so.1.0.0 30225 +usr/lib/x86_64-linux-gnu/girepository-1.0/Atspi-2.0.typelib 30224 +usr/lib/x86_64-linux-gnu/girepository-1.0/DBus-1.0.typelib 30223 +usr/share/gnome-shell/modes/classic.json 30222 +usr/share/gnome-shell/modes/gdm-tails.json 30221 +usr/share/desktop-directories/ActionGames.directory 30220 +usr/share/desktop-directories/AdventureGames.directory 30219 +usr/share/desktop-directories/ArcadeGames.directory 30218 +usr/share/desktop-directories/AudioVideo.directory 30217 +usr/share/desktop-directories/BlocksGames.directory 30216 +usr/share/desktop-directories/BoardGames.directory 30215 +usr/share/desktop-directories/CardGames.directory 30214 +usr/share/desktop-directories/Debian.directory 30213 +usr/share/desktop-directories/Development.directory 30212 +usr/share/desktop-directories/Education.directory 30211 +usr/share/desktop-directories/Game.directory 30210 +usr/share/desktop-directories/GnomeScience.directory 30209 +usr/share/desktop-directories/Graphics.directory 30208 +usr/share/desktop-directories/KidsGames.directory 30207 +usr/share/desktop-directories/LogicGames.directory 30206 +usr/share/desktop-directories/Network.directory 30205 +usr/share/desktop-directories/Office.directory 30204 +usr/share/desktop-directories/RolePlayingGames.directory 30203 +usr/share/desktop-directories/Settings-System.directory 30202 +usr/share/desktop-directories/Settings.directory 30201 +usr/share/desktop-directories/SimulationGames.directory 30200 +usr/share/desktop-directories/SportsGames.directory 30199 +usr/share/desktop-directories/StrategyGames.directory 30198 +usr/share/desktop-directories/System-Tools.directory 30197 +usr/share/desktop-directories/Tails.directory 30196 +usr/share/desktop-directories/Utility-Accessibility.directory 30195 +usr/share/desktop-directories/Utility.directory 30194 +usr/share/desktop-directories/X-GNOME-Menu-Applications.directory 30193 +usr/share/desktop-directories/X-GNOME-Other.directory 30192 +usr/share/desktop-directories/X-GNOME-Sundry.directory 30191 +usr/share/desktop-directories/X-GNOME-SystemSettings.directory 30190 +usr/share/desktop-directories/X-GNOME-Utilities.directory 30189 +usr/share/desktop-directories/X-GNOME-WebApplications.directory 30188 +etc/xdg/gnome-mimeapps.list 30187 +usr/local/share/mime/mime.cache 30186 +usr/share/mime/mime.cache 30185 +usr/share/gdm/greeter/applications/mimeapps.list 30184 +usr/share/applications/gnome-mimeapps.list 30183 +usr/share/applications/mimeinfo.cache 30182 +usr/share/gdm/greeter/applications/mime-dummy-handler.desktop 30181 +usr/share/applications/gnome-applications-panel.desktop 30180 +usr/share/applications/tails-documentation.desktop 30179 +usr/share/applications/org.gnome.gedit.desktop 30178 +usr/share/applications/bookletimposer.desktop 30177 +usr/share/applications/org.keepassxc.KeePassXC.desktop 30176 +usr/share/applications/org.gnome.Shell.Extensions.desktop 30175 +usr/share/applications/tor-browser.desktop 30174 +usr/share/applications/libreoffice-xsltfilter.desktop 30173 +usr/share/applications/org.kde.kded5.desktop 30172 +usr/share/applications/vim.desktop 30171 +usr/share/applications/libreoffice-startcenter.desktop 30170 +usr/share/applications/org.gnome.Terminal.desktop 30169 +usr/share/applications/ibus-setup-hangul.desktop 30168 +usr/share/applications/gnome-datetime-panel.desktop 30167 +usr/share/applications/gnome-system-monitor-kde.desktop 30166 +usr/share/applications/nm-applet.desktop 30165 +usr/share/applications/pidgin.desktop 30164 +usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-plugin-scanner 30163 +usr/share/applications/gcr-viewer.desktop 30162 +usr/share/applications/evolution-calendar.desktop 30161 +usr/share/applications/electrum.desktop 30160 +usr/share/applications/gnome-user-accounts-panel.desktop 30159 +usr/share/applications/unlock-veracrypt-volumes.desktop 30158 +usr/share/applications/org.boum.tails.AdditionalSoftware.desktop 30157 +usr/share/applications/libreoffice-writer.desktop 30156 +usr/share/applications/tails-installer.desktop 30155 +usr/share/applications/gnome-microphone-panel.desktop 30154 +usr/share/applications/org.gnome.Nautilus.desktop 30153 +usr/share/applications/org.gnome.Evince.desktop 30152 +usr/share/applications/gnome-usage-panel.desktop 30151 +usr/share/applications/root-terminal.desktop 30150 +usr/share/applications/simple-scan.desktop 30149 +usr/share/applications/org.gnome.DiskUtility.desktop 30148 +usr/share/applications/org.gnome.Evince-previewer.desktop 30147 +usr/share/applications/gnome-background-panel.desktop 30146 +usr/share/applications/org.gnome.SoundJuicer.desktop 30145 +usr/share/applications/tails-backup.desktop 30144 +usr/share/applications/gnome-sharing-panel.desktop 30143 +usr/share/applications/org.gnome.Shell.PortalHelper.desktop 30142 +usr/share/applications/org.onionshare.OnionShare.desktop 30141 +usr/share/applications/ktelnetservice5.desktop 30140 +usr/share/applications/gnome-universal-access-panel.desktop 30139 +usr/share/applications/whisperback.desktop 30138 +usr/share/applications/org.gnome.Evolution-alarm-notify.desktop 30137 +usr/share/applications/gnome-location-panel.desktop 30136 +usr/share/applications/gnome-lock-panel.desktop 30135 +usr/share/applications/gnome-printers-panel.desktop 30134 +usr/share/applications/thunderbird.desktop 30133 +usr/share/applications/gnome-thunderbolt-panel.desktop 30132 +usr/share/applications/ibus-setup-chewing.desktop 30131 +usr/share/applications/gnome-search-panel.desktop 30130 +usr/share/applications/ibus-setup-libpinyin.desktop 30129 +usr/share/applications/org.boum.tails.PersistentStorage.desktop 30128 +usr/share/applications/synaptic.desktop 30127 +usr/share/applications/org.freedesktop.IBus.Panel.Emojier.desktop 30126 +usr/share/applications/unsafe-browser.desktop 30125 +usr/share/applications/gkbd-keyboard-display.desktop 30124 +usr/share/applications/org.freedesktop.IBus.Setup.desktop 30123 +usr/share/applications/org.gnome.Totem.desktop 30122 +usr/share/applications/org.gnome.PowerStats.desktop 30121 +usr/share/applications/ibus-setup-libbopomofo.desktop 30120 +usr/share/applications/gnome-notifications-panel.desktop 30119 +usr/share/applications/ibus-setup-Unikey.desktop 30118 +usr/share/applications/gtkhash.desktop 30117 +usr/share/applications/gnome-color-panel.desktop 30116 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libcluttergst3.so 30115 +usr/lib/x86_64-linux-gnu/libclutter-1.0.so.0.2600.4 30114 +usr/share/applications/org.gnome.FileRoller.desktop 30113 +usr/share/applications/nautilus-autorun-software.desktop 30112 +usr/share/applications/gnome-bluetooth-panel.desktop 30111 +usr/share/applications/org.inkscape.Inkscape.desktop 30110 +usr/share/applications/python3.9.desktop 30109 +usr/share/applications/gnome-control-center.desktop 30108 +usr/share/applications/brasero-nautilus.desktop 30107 +usr/share/applications/libreoffice-impress.desktop 30106 +usr/share/applications/audacity.desktop 30105 +usr/share/applications/gnome-disk-image-mounter.desktop 30104 +usr/share/applications/gimp.desktop 30103 +usr/share/applications/gnome-network-panel.desktop 30102 +usr/share/applications/gnome-removable-media-panel.desktop 30101 +usr/share/applications/gnome-wacom-panel.desktop 30100 +usr/share/applications/gnome-camera-panel.desktop 30099 +usr/share/applications/gnome-mouse-panel.desktop 30098 +usr/share/applications/gnome-keyboard-panel.desktop 30097 +usr/share/applications/org.gnome.SoundRecorder.desktop 30096 +usr/share/applications/gnome-wifi-panel.desktop 30095 +usr/share/applications/gnome-sound-panel.desktop 30094 +usr/share/applications/fr.romainvigier.MetadataCleaner.desktop 30093 +usr/lib/x86_64-linux-gnu/libclutter-gst-3.0.so.0.27.0 30092 +usr/lib/x86_64-linux-gnu/libcogl-path.so.20.4.3 30091 +usr/lib/x86_64-linux-gnu/libcogl-pango.so.20.4.3 30090 +usr/lib/x86_64-linux-gnu/libcogl.so.20.4.3 30089 +usr/share/applications/brasero.desktop 30088 +usr/share/applications/yelp.desktop 30087 +usr/share/applications/org.freedesktop.IBus.Panel.Extension.Gtk3.desktop 30086 +usr/share/applications/gnome-display-panel.desktop 30085 +usr/share/applications/gnome-power-panel.desktop 30084 +usr/share/applications/onioncircuits.desktop 30083 +usr/share/applications/gnome-system-monitor.desktop 30082 +usr/share/applications/org.kde.kleopatra.desktop 30081 +usr/share/applications/org.gnome.Screenshot.desktop 30080 +usr/share/applications/gnome-region-panel.desktop 30079 +usr/share/applications/libreoffice-draw.desktop 30078 +usr/share/applications/gnome-default-apps-panel.desktop 30077 +usr/share/applications/hplj1020.desktop 30076 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrawconference.so 30075 +usr/lib/x86_64-linux-gnu/libfarstream-0.2.so.5.1.1 30074 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpconference.so 30073 +usr/share/applications/gnome-diagnostics-panel.desktop 30072 +usr/share/applications/org.gnome.eog.desktop 30071 +usr/share/applications/org.gnome.Shell.desktop 30070 +usr/share/applications/kleopatra_import.desktop 30069 +usr/share/applications/libreoffice-calc.desktop 30068 +usr/share/applications/gcr-prompter.desktop 30067 +usr/share/applications/gnome-disk-image-writer.desktop 30066 +usr/share/applications/org.gnome.Calculator.desktop 30065 +usr/share/applications/gnome-info-overview-panel.desktop 30064 +usr/share/applications/tca.desktop 30063 +usr/share/applications/tails-about.desktop 30062 +usr/share/gnome-shell/gnome-shell-theme.gresource 30061 +usr/share/gnome-shell/gnome-shell-osk-layouts.gresource 30060 +usr/lib/x86_64-linux-gnu/libgstrtp-1.0.so.0.1804.0 30058 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsrtpxdata.so 30057 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libfsvideoanyrate.so 30056 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgst1394.so 30055 +usr/lib/x86_64-linux-gnu/libraw1394.so.11.1.0 30054 +usr/lib/x86_64-linux-gnu/libavc1394.so.0.3.0 30052 +usr/lib/x86_64-linux-gnu/librom1394.so.0.3.0 30051 +usr/lib/x86_64-linux-gnu/libiec61883.so.0.1.1 30050 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsta52dec.so 30049 +usr/share/gnome-shell/theme/gnome-classic.css 30048 +usr/share/locale/en/LC_MESSAGES/gnome-desktop-3.0.mo 30047 +usr/share/tails/desktop_wallpaper.png 30046 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so 30045 +etc/fonts/fonts.conf 30044 +usr/share/fontconfig/conf.avail/10-hinting-slight.conf 30043 +usr/share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf 30042 +usr/share/fontconfig/conf.avail/11-lcdfilter-default.conf 30041 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans-mono.conf 30040 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-sans.conf 30039 +etc/fonts/conf.avail/20-unhint-small-dejavu-lgc-serif.conf 30038 +etc/fonts/conf.avail/20-unhint-small-dejavu-sans-mono.conf 30037 +etc/fonts/conf.avail/20-unhint-small-dejavu-sans.conf 30036 +etc/fonts/conf.avail/20-unhint-small-dejavu-serif.conf 30035 +usr/share/fontconfig/conf.avail/20-unhint-small-vera.conf 30034 +usr/share/fontconfig/conf.avail/30-metric-aliases.conf 30033 +usr/share/fontconfig/conf.avail/30-opensymbol.conf 30032 +usr/share/fontconfig/conf.avail/40-nonlatin.conf 30031 +usr/share/fontconfig/conf.avail/45-generic.conf 30030 +usr/share/fontconfig/conf.avail/45-latin.conf 30029 +usr/share/fontconfig/conf.avail/49-sansserif.conf 30028 +usr/share/fontconfig/conf.avail/50-user.conf 30027 +usr/share/fontconfig/conf.avail/51-local.conf 30026 +etc/fonts/conf.avail/57-dejavu-sans-mono.conf 30025 +etc/fonts/conf.avail/57-dejavu-sans.conf 30024 +etc/fonts/conf.avail/57-dejavu-serif.conf 30023 +etc/fonts/conf.avail/58-dejavu-lgc-sans-mono.conf 30022 +etc/fonts/conf.avail/58-dejavu-lgc-sans.conf 30021 +etc/fonts/conf.avail/58-dejavu-lgc-serif.conf 30020 +usr/share/fontconfig/conf.avail/60-generic.conf 30019 +usr/share/fontconfig/conf.avail/60-latin.conf 30018 +usr/share/fontconfig/conf.avail/urw-bookman.conf 30017 +usr/share/fontconfig/conf.avail/urw-c059.conf 30016 +usr/share/fontconfig/conf.avail/urw-d050000l.conf 30015 +usr/share/fontconfig/conf.avail/urw-fallback-backwards.conf 30014 +usr/share/fontconfig/conf.avail/urw-fallback-generics.conf 30013 +usr/share/fontconfig/conf.avail/urw-gothic.conf 30012 +usr/share/fontconfig/conf.avail/urw-nimbus-mono-ps.conf 30011 +usr/share/fontconfig/conf.avail/urw-nimbus-roman.conf 30010 +usr/share/fontconfig/conf.avail/urw-nimbus-sans.conf 30009 +usr/share/fontconfig/conf.avail/urw-p052.conf 30008 +usr/share/fontconfig/conf.avail/urw-standard-symbols-ps.conf 30007 +usr/share/fontconfig/conf.avail/urw-z003.conf 30006 +etc/fonts/conf.avail/65-culmus.conf 30005 +usr/share/fontconfig/conf.avail/65-fonts-persian.conf 30004 +usr/share/fontconfig/conf.avail/65-nonlatin.conf 30003 +usr/share/fontconfig/conf.avail/69-unifont.conf 30002 +usr/share/fontconfig/conf.avail/70-fonts-noto-cjk.conf 30001 +usr/share/fontconfig/conf.avail/70-no-bitmaps.conf 30000 +usr/share/fontconfig/conf.avail/80-delicious.conf 29999 +usr/share/fontconfig/conf.avail/90-fonts-linux-libertine.conf 29998 +usr/share/fontconfig/conf.avail/90-synthetic.conf 29997 +usr/share/fontconfig/conf.avail/10-autohint.conf 29996 +usr/share/fontconfig/conf.avail/10-hinting-full.conf 29995 +usr/share/fontconfig/conf.avail/10-hinting-medium.conf 29994 +usr/share/fontconfig/conf.avail/10-hinting-none.conf 29993 +usr/share/fontconfig/conf.avail/10-no-sub-pixel.conf 29992 +usr/share/fontconfig/conf.avail/10-sub-pixel-bgr.conf 29991 +usr/share/fontconfig/conf.avail/10-sub-pixel-rgb.conf 29990 +usr/share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf 29989 +usr/share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf 29988 +usr/share/fontconfig/conf.avail/10-unhinted.conf 29987 +usr/share/fontconfig/conf.avail/11-lcdfilter-legacy.conf 29986 +usr/share/fontconfig/conf.avail/11-lcdfilter-light.conf 29985 +usr/share/fontconfig/conf.avail/25-unhint-nonlatin.conf 29984 +usr/share/fontconfig/conf.avail/65-khmer.conf 29983 +usr/share/fontconfig/conf.avail/70-force-bitmaps.conf 29982 +usr/share/fontconfig/conf.avail/70-yes-bitmaps.conf 29981 +usr/share/fonts/.uuid 29980 +var/cache/fontconfig/ad3800a6-0853-5900-ac2b-6a45e906a034-le64.cache-7 29979 +usr/local/share/fonts/.uuid 29978 +var/cache/fontconfig/a19c77ef-2b6e-5d56-80fa-aa461c22a33c-le64.cache-7 29977 +usr/share/fonts/X11/.uuid 29976 +var/cache/fontconfig/635775a3-6681-5500-bfb3-fc75bae7ab71-le64.cache-7 29975 +usr/share/fonts/cMap/.uuid 29974 +var/cache/fontconfig/e0df4ba7-1e1e-53f4-99ac-034e136dea90-le64.cache-7 29973 +usr/share/fonts/cmap/.uuid 29972 +var/cache/fontconfig/8c262b76-19e2-5a0e-970a-3c6be641c3de-le64.cache-7 29971 +usr/share/fonts/opentype/.uuid 29970 +var/cache/fontconfig/c53c919e-4688-5813-a778-9497aaad292b-le64.cache-7 29969 +usr/share/fonts/truetype/.uuid 29968 +var/cache/fontconfig/ad91de03-2bc9-5cbd-baed-449447b4cef2-le64.cache-7 29967 +usr/share/fonts/type1/.uuid 29966 +var/cache/fontconfig/107a60e4-0cbf-554f-81c5-3e413a233022-le64.cache-7 29965 +usr/share/fonts/X11/Type1/.uuid 29964 +var/cache/fontconfig/7037cf17-dab7-5805-ac14-89407957a70b-le64.cache-7 29963 +usr/share/fonts/X11/encodings/.uuid 29962 +var/cache/fontconfig/932c83c7-a3fe-5e2e-af19-99a73a1218b0-le64.cache-7 29961 +usr/share/fonts/X11/util/.uuid 29960 +var/cache/fontconfig/d6a528ca-d9d3-528a-bbf0-657522efbfb9-le64.cache-7 29959 +usr/share/poppler/cMap/Adobe-CNS1/.uuid 29958 +var/cache/fontconfig/fe110b8d-52e9-50d6-93d5-7350b6dc3ffc-le64.cache-7 29957 +usr/share/poppler/cMap/Adobe-GB1/.uuid 29956 +var/cache/fontconfig/cba3b8e3-c250-50f8-9d30-dd9cdff6726c-le64.cache-7 29955 +usr/share/poppler/cMap/Adobe-Japan1/.uuid 29954 +var/cache/fontconfig/209cd66f-9cd8-59b1-a557-ee9a5b16532d-le64.cache-7 29953 +usr/share/poppler/cMap/Adobe-Japan2/.uuid 29952 +var/cache/fontconfig/79b9b38c-66eb-5231-ac1a-75f0230ccdac-le64.cache-7 29951 +usr/share/poppler/cMap/Adobe-Korea1/.uuid 29950 +var/cache/fontconfig/977ff0f2-7245-568d-9f74-ec94f3fe3b0c-le64.cache-7 29949 +usr/share/fonts/opentype/cantarell/.uuid 29948 +var/cache/fontconfig/be6c95a9-9096-58da-8f8e-7737a63fdb01-le64.cache-7 29947 +usr/share/fonts/opentype/linux-libertine/.uuid 29946 +var/cache/fontconfig/a4e606c3-ee03-5a47-a10f-679845537ed9-le64.cache-7 29945 +usr/share/fonts/opentype/noto/.uuid 29944 +var/cache/fontconfig/7b04aff5-85ee-51c9-95e7-77727a319b86-le64.cache-7 29943 +usr/share/fonts/opentype/urw-base35/.uuid 29942 +var/cache/fontconfig/8542f4fb-ce2b-5a14-9951-f64eac858fee-le64.cache-7 29941 +usr/share/fonts/truetype/culmus/.uuid 29940 +var/cache/fontconfig/806bd331-c6ac-5da7-b38d-caee6037f4ad-le64.cache-7 29939 +usr/lib/x86_64-linux-gnu/liba52-0.7.4.so 29938 +usr/share/fonts/truetype/dejavu/.uuid 29937 +var/cache/fontconfig/8f19a5e0-002f-559a-908f-50a33ba095ed-le64.cache-7 29936 +usr/share/fonts/truetype/liberation/.uuid 29935 +var/cache/fontconfig/d9291cff-b790-56da-811c-af0e14399de4-le64.cache-7 29934 +usr/share/fonts/truetype/libreoffice/.uuid 29933 +var/cache/fontconfig/155a82c9-3c15-5e7a-a02f-59fffe413741-le64.cache-7 29932 +usr/share/fonts/truetype/noto/.uuid 29931 +var/cache/fontconfig/891027b1-67fe-5175-bb2b-a5d071b33c64-le64.cache-7 29930 +usr/share/fonts/truetype/quicksand/.uuid 29929 +var/cache/fontconfig/aa54cff1-1622-5d6d-b9ef-589d2941d6ad-le64.cache-7 29928 +usr/share/fonts/type1/urw-base35/.uuid 29927 +var/cache/fontconfig/ad7fe672-dfce-58cc-9779-56f61343393e-le64.cache-7 29926 +usr/share/fonts/X11/encodings/large/.uuid 29925 +var/cache/fontconfig/e8b11c96-1f85-5c63-8bb8-ae0627615d20-le64.cache-7 29924 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaasink.so 29923 +usr/lib/x86_64-linux-gnu/libaa.so.1.0.4 29922 +lib/x86_64-linux-gnu/libncurses.so.6.2 29921 +usr/share/fonts/truetype/dejavu/DejaVuSans.ttf 29919 +usr/lib/x86_64-linux-gnu/libslang.so.2.3.2 29918 +usr/local/lib/udev-watchdog-wrapper 29917 +usr/share/X11/xkb/rules/evdev.xml 29916 +usr/share/xml/iso-codes/iso_639-2.xml 29915 +usr/lib/x86_64-linux-gnu/libgpm.so.2 29914 +usr/share/xml/iso-codes/iso_639-3.xml 29913 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaccurip.so 29912 +usr/share/xml/iso-codes/iso_3166-1.xml 29911 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadder.so 29910 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmdec.so 29909 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstadpcmenc.so 29908 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaiff.so 29907 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalaw.so 29906 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalpha.so 29905 +usr/bin/ibus-daemon 29904 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstalphacolor.so 29903 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrnb.so 29902 +usr/lib/x86_64-linux-gnu/libopencore-amrnb.so.0.0.3 29901 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstamrwbdec.so 29900 +usr/lib/x86_64-linux-gnu/libopencore-amrwb.so.0.0.3 29899 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaom.so 29898 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapetag.so 29897 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstapp.so 29896 +usr/lib/x86_64-linux-gnu/libgstapp-1.0.so.0.1804.0 29895 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasf.so 29894 +usr/share/ibus/keymaps/us 29893 +usr/share/ibus/keymaps/common 29892 +usr/share/ibus/keymaps/modifiers 29891 +usr/share/ibus/component/chewing.xml 29890 +usr/share/ibus/component/dconf.xml 29889 +usr/lib/x86_64-linux-gnu/libgstriff-1.0.so.0.1804.0 29888 +usr/lib/x86_64-linux-gnu/libgstrtsp-1.0.so.0.1804.0 29887 +usr/lib/x86_64-linux-gnu/libgstsdp-1.0.so.0.1804.0 29886 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstasfmux.so 29885 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstassrender.so 29884 +usr/share/ibus/component/gtkextension.xml 29883 +usr/share/ibus/component/gtkpanel.xml 29882 +usr/share/ibus/component/hangul.xml 29881 +usr/share/ibus/component/libpinyin.xml 29880 +usr/share/ibus/component/memconf.xml 29879 +usr/share/ibus/component/mozc.xml 29878 +usr/lib/ibus-mozc/ibus-engine-mozc 29877 +usr/lib/x86_64-linux-gnu/libass.so.9.1.1 29876 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiobuffersplit.so 29875 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioconvert.so 29874 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofx.so 29873 +usr/lib/x86_64-linux-gnu/libgstfft-1.0.so.0.1804.0 29872 +usr/lib/x86_64-linux-gnu/libgweather-3.so.16.0.0 29871 +usr/lib/x86_64-linux-gnu/libgeocode-glib.so.0.0.0 29870 +usr/lib/x86_64-linux-gnu/libabsl_strings.so.20200923.0.1 29869 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiofxbad.so 29868 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiolatency.so 29867 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixer.so 29866 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiomixmatrix.so 29865 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioparsers.so 29864 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiorate.so 29863 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudioresample.so 29862 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiotestsrc.so 29861 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstaudiovisualizers.so 29860 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstauparse.so 29859 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautoconvert.so 29858 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstautodetect.so 29857 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstavi.so 29856 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbayer.so 29855 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbluez.so 29854 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbs2b.so 29853 +usr/lib/x86_64-linux-gnu/libbs2b.so.0.0.0 29852 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstbz2.so 29851 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcacasink.so 29850 +usr/lib/x86_64-linux-gnu/libabsl_str_format_internal.so.20200923.0.1 29849 +usr/lib/x86_64-linux-gnu/libabsl_throw_delegate.so.20200923.0.1 29848 +usr/lib/x86_64-linux-gnu/libabsl_time_zone.so.20200923.0.1 29847 +usr/lib/x86_64-linux-gnu/libcaca.so.0.99.19 29846 +lib/x86_64-linux-gnu/libncursesw.so.6.2 29845 +usr/share/libgweather/Locations.xml 29844 +usr/lib/x86_64-linux-gnu/libabsl_time.so.20200923.0.1 29843 +usr/lib/x86_64-linux-gnu/libprotobuf.so.23.0.4 29842 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcairo.so 29841 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcamerabin.so 29840 +usr/lib/x86_64-linux-gnu/libgstbasecamerabinsrc-1.0.so.0.1804.0 29839 +usr/lib/x86_64-linux-gnu/libgstphotography-1.0.so.0.1804.0 29838 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdio.so 29837 +usr/lib/x86_64-linux-gnu/libcdio.so.19.0.0 29836 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcdparanoia.so 29835 +usr/lib/x86_64-linux-gnu/libcdda_paranoia.so.0.10.2 29834 +usr/lib/x86_64-linux-gnu/libcdda_interface.so.0.10.2 29833 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstchromaprint.so 29832 +usr/lib/x86_64-linux-gnu/libchromaprint.so.1.5.0 29831 +usr/share/zoneinfo/Etc/GMT+12 29830 +usr/lib/x86_64-linux-gnu/libabsl_strings_internal.so.20200923.0.1 29829 +usr/lib/x86_64-linux-gnu/libabsl_int128.so.20200923.0.1 29828 +usr/share/zoneinfo/Africa/Algiers 29827 +usr/lib/x86_64-linux-gnu/libabsl_base.so.20200923.0.1 29826 +usr/lib/x86_64-linux-gnu/libabsl_spinlock_wait.so.20200923.0.1 29825 +usr/lib/x86_64-linux-gnu/libabsl_raw_logging_internal.so.20200923.0.1 29824 +usr/lib/x86_64-linux-gnu/libabsl_log_severity.so.20200923.0.1 29823 +usr/lib/x86_64-linux-gnu/libatomic.so.1.2.0 29822 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstclosedcaption.so 29821 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoloreffects.so 29820 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcolormanagement.so 29819 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcompositor.so 29818 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoreelements.so 29817 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcoretracers.so 29816 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcurl.so 29815 +usr/share/zoneinfo/Africa/Lagos 29814 +usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.7.0 29813 +usr/lib/x86_64-linux-gnu/libnghttp2.so.14.20.1 29812 +usr/lib/x86_64-linux-gnu/librtmp.so.1 29811 +usr/share/zoneinfo/Africa/Maputo 29810 +usr/share/zoneinfo/Africa/Abidjan 29809 +usr/share/zoneinfo/Atlantic/Cape_Verde 29808 +usr/share/zoneinfo/Africa/Ndjamena 29807 +usr/share/zoneinfo/Africa/Nairobi 29806 +usr/share/zoneinfo/Africa/Cairo 29805 +usr/share/zoneinfo/Indian/Kerguelen 29804 +usr/share/zoneinfo/Africa/Accra 29803 +usr/share/zoneinfo/Africa/Bissau 29802 +usr/share/zoneinfo/Africa/Johannesburg 29801 +usr/share/zoneinfo/Africa/Monrovia 29800 +usr/share/zoneinfo/Africa/Tripoli 29799 +usr/share/zoneinfo/Indian/Mauritius 29798 +usr/share/zoneinfo/Africa/Casablanca 29797 +usr/share/zoneinfo/Africa/Windhoek 29796 +usr/share/zoneinfo/Indian/Reunion 29795 +usr/share/zoneinfo/Africa/Sao_Tome 29794 +usr/share/zoneinfo/Indian/Mahe 29793 +usr/share/zoneinfo/Africa/Khartoum 29792 +usr/share/zoneinfo/Africa/Tunis 29791 +usr/share/zoneinfo/Africa/El_Aaiun 29790 +usr/share/zoneinfo/Antarctica/Palmer 29789 +usr/share/zoneinfo/Antarctica/Rothera 29788 +usr/share/zoneinfo/Antarctica/Syowa 29787 +usr/share/zoneinfo/Antarctica/Mawson 29786 +usr/share/zoneinfo/Antarctica/Vostok 29785 +usr/share/zoneinfo/Antarctica/Davis 29784 +usr/share/zoneinfo/Antarctica/Casey 29783 +usr/share/zoneinfo/Antarctica/DumontDUrville 29782 +usr/share/zoneinfo/Pacific/Auckland 29781 +usr/share/zoneinfo/Asia/Kabul 29780 +usr/share/zoneinfo/Asia/Yerevan 29779 +usr/share/zoneinfo/Asia/Baku 29778 +usr/share/zoneinfo/Asia/Dhaka 29777 +usr/share/zoneinfo/Asia/Thimphu 29776 +usr/share/zoneinfo/Asia/Brunei 29775 +usr/share/zoneinfo/Asia/Bangkok 29774 +usr/share/zoneinfo/Asia/Shanghai 29773 +usr/share/zoneinfo/Asia/Tbilisi 29772 +usr/share/zoneinfo/Asia/Hong_Kong 29771 +usr/share/zoneinfo/Asia/Kolkata 29770 +usr/share/zoneinfo/Asia/Tokyo 29769 +usr/share/zoneinfo/Asia/Almaty 29768 +usr/share/zoneinfo/Asia/Aqtobe 29767 +usr/share/zoneinfo/Asia/Bishkek 29766 +usr/share/zoneinfo/Asia/Macau 29765 +usr/share/zoneinfo/Asia/Kuala_Lumpur 29764 +usr/share/zoneinfo/Indian/Maldives 29763 +usr/share/zoneinfo/Asia/Choibalsan 29762 +usr/share/zoneinfo/Asia/Hovd 29761 +usr/share/zoneinfo/Asia/Ulaanbaatar 29760 +usr/share/zoneinfo/Asia/Yangon 29759 +usr/share/zoneinfo/Asia/Kathmandu 29758 +usr/share/zoneinfo/Asia/Pyongyang 29757 +usr/share/zoneinfo/Asia/Karachi 29756 +usr/share/zoneinfo/Asia/Manila 29755 +usr/share/zoneinfo/Asia/Singapore 29754 +usr/share/zoneinfo/Asia/Seoul 29753 +usr/lib/x86_64-linux-gnu/libssh2.so.1.0.1 29752 +usr/share/zoneinfo/Asia/Colombo 29751 +usr/share/zoneinfo/Asia/Taipei 29750 +usr/share/zoneinfo/Asia/Dushanbe 29749 +usr/share/ibus/component/simple.xml 29748 +usr/share/zoneinfo/Asia/Ashgabat 29747 +usr/share/zoneinfo/Asia/Tashkent 29746 +usr/share/zoneinfo/Asia/Ho_Chi_Minh 29745 +usr/share/zoneinfo/America/Port_of_Spain 29744 +usr/share/zoneinfo/America/Barbados 29743 +usr/share/zoneinfo/Atlantic/Bermuda 29742 +usr/share/zoneinfo/America/Danmarkshavn 29741 +usr/share/zoneinfo/America/Nuuk 29740 +usr/share/zoneinfo/America/Scoresbysund 29739 +usr/share/zoneinfo/America/Thule 29738 +usr/share/zoneinfo/America/Puerto_Rico 29737 +usr/share/zoneinfo/Pacific/Pago_Pago 29736 +usr/share/zoneinfo/Australia/Perth 29735 +usr/share/zoneinfo/Australia/Eucla 29734 +usr/share/zoneinfo/Australia/Adelaide 29733 +usr/share/zoneinfo/Australia/Broken_Hill 29732 +usr/share/zoneinfo/Australia/Darwin 29731 +usr/share/zoneinfo/Australia/Hobart 29730 +usr/share/zoneinfo/Australia/Melbourne 29729 +usr/share/zoneinfo/Australia/Sydney 29728 +usr/share/zoneinfo/Australia/Brisbane 29727 +usr/share/zoneinfo/Australia/Lord_Howe 29726 +usr/share/zoneinfo/Indian/Chagos 29725 +usr/share/zoneinfo/Indian/Christmas 29724 +usr/share/zoneinfo/Indian/Cocos 29723 +usr/share/zoneinfo/Pacific/Rarotonga 29722 +usr/share/zoneinfo/Pacific/Fiji 29721 +usr/share/zoneinfo/Pacific/Tahiti 29720 +usr/share/ibus/component/unikey.xml 29719 +usr/share/zoneinfo/Pacific/Marquesas 29718 +usr/share/zoneinfo/Pacific/Gambier 29717 +usr/share/zoneinfo/Pacific/Guam 29716 +usr/share/zoneinfo/Asia/Jakarta 29715 +usr/share/zoneinfo/Asia/Makassar 29714 +usr/share/zoneinfo/Asia/Jayapura 29713 +usr/share/zoneinfo/Pacific/Tarawa 29712 +usr/share/zoneinfo/Pacific/Enderbury 29711 +usr/share/zoneinfo/Pacific/Kiritimati 29710 +usr/share/zoneinfo/Pacific/Majuro 29709 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstcutter.so 29708 +usr/share/zoneinfo/Pacific/Pohnpei 29707 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdash.so 29706 +usr/share/zoneinfo/Pacific/Chuuk 29705 +usr/share/zoneinfo/Pacific/Nauru 29704 +usr/libexec/ibus-engine-unikey 29703 +usr/share/zoneinfo/Pacific/Noumea 29702 +usr/share/zoneinfo/Pacific/Chatham 29701 +usr/share/zoneinfo/Pacific/Niue 29700 +usr/share/zoneinfo/Pacific/Norfolk 29699 +usr/share/zoneinfo/Pacific/Palau 29698 +usr/share/zoneinfo/Pacific/Port_Moresby 29697 +usr/lib/x86_64-linux-gnu/libgstadaptivedemux-1.0.so.0.1804.0 29696 +usr/share/zoneinfo/Pacific/Pitcairn 29695 +usr/share/zoneinfo/Pacific/Apia 29694 +usr/share/zoneinfo/Pacific/Guadalcanal 29693 +usr/share/zoneinfo/Asia/Dili 29692 +usr/share/zoneinfo/Pacific/Fakaofo 29691 +usr/share/zoneinfo/Pacific/Tongatapu 29690 +usr/share/zoneinfo/Pacific/Funafuti 29689 +usr/share/zoneinfo/Pacific/Honolulu 29688 +usr/share/zoneinfo/Pacific/Wake 29687 +usr/share/zoneinfo/Pacific/Efate 29686 +usr/share/zoneinfo/Pacific/Wallis 29685 +usr/share/zoneinfo/America/Argentina/Buenos_Aires 29684 +usr/share/zoneinfo/America/Curacao 29683 +usr/lib/x86_64-linux-gnu/libgsturidownloader-1.0.so.0.1804.0 29682 +usr/share/zoneinfo/America/Nassau 29681 +usr/lib/x86_64-linux-gnu/libgstisoff-1.0.so.0.1804.0 29680 +usr/lib/x86_64-linux-gnu/libgstnet-1.0.so.0.1804.0 29679 +usr/share/zoneinfo/America/Belize 29678 +usr/share/zoneinfo/America/La_Paz 29677 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdc1394.so 29676 +usr/lib/x86_64-linux-gnu/libdc1394.so.25.0.0 29675 +usr/share/zoneinfo/America/Araguaina 29674 +usr/share/zoneinfo/America/Bahia 29673 +usr/share/zoneinfo/America/Belem 29672 +usr/share/zoneinfo/America/Boa_Vista 29671 +usr/share/zoneinfo/America/Campo_Grande 29670 +usr/share/zoneinfo/America/Cuiaba 29669 +usr/share/zoneinfo/America/Eirunepe 29668 +usr/share/zoneinfo/America/Fortaleza 29667 +usr/share/zoneinfo/America/Maceio 29666 +usr/share/zoneinfo/America/Manaus 29665 +usr/share/zoneinfo/America/Noronha 29664 +usr/share/zoneinfo/America/Porto_Velho 29663 +usr/share/zoneinfo/America/Recife 29662 +usr/share/zoneinfo/America/Rio_Branco 29661 +usr/share/zoneinfo/America/Sao_Paulo 29660 +usr/share/zoneinfo/America/Panama 29659 +usr/share/zoneinfo/America/Santiago 29658 +usr/libexec/ibus-dconf 29657 +usr/share/zoneinfo/Pacific/Easter 29656 +usr/share/zoneinfo/America/Bogota 29655 +usr/share/zoneinfo/America/Costa_Rica 29654 +usr/share/zoneinfo/America/Havana 29653 +usr/share/zoneinfo/America/Santo_Domingo 29652 +usr/share/zoneinfo/America/Guayaquil 29651 +usr/share/zoneinfo/Pacific/Galapagos 29650 +usr/share/zoneinfo/America/El_Salvador 29649 +usr/libexec/ibus-extension-gtk3 29648 +usr/share/zoneinfo/Atlantic/Stanley 29647 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstde265.so 29646 +usr/lib/x86_64-linux-gnu/libde265.so.0.1.4 29645 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebug.so 29644 +usr/libexec/ibus-portal 29643 +usr/share/zoneinfo/America/Cayenne 29642 +usr/share/zoneinfo/America/Guatemala 29641 +usr/share/zoneinfo/America/Guyana 29640 +usr/share/zoneinfo/America/Port-au-Prince 29639 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdebugutilsbad.so 29638 +usr/share/zoneinfo/America/Tegucigalpa 29637 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdecklink.so 29636 +usr/share/zoneinfo/America/Jamaica 29635 +usr/share/zoneinfo/America/Martinique 29634 +usr/share/zoneinfo/America/Managua 29633 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdeinterlace.so 29632 +usr/share/zoneinfo/America/Asuncion 29631 +usr/share/zoneinfo/America/Lima 29630 +usr/share/zoneinfo/Atlantic/South_Georgia 29629 +usr/share/zoneinfo/America/Paramaribo 29628 +usr/share/zoneinfo/America/Grand_Turk 29627 +usr/share/zoneinfo/America/Montevideo 29626 +usr/share/zoneinfo/America/Caracas 29625 +usr/share/zoneinfo/Europe/Tirane 29624 +usr/share/zoneinfo/Europe/Andorra 29623 +usr/share/zoneinfo/Europe/Vienna 29622 +usr/share/zoneinfo/Europe/Minsk 29621 +usr/share/zoneinfo/Europe/Brussels 29620 +usr/share/zoneinfo/Europe/Belgrade 29619 +usr/share/zoneinfo/Europe/Sofia 29618 +usr/share/zoneinfo/Asia/Nicosia 29617 +usr/share/zoneinfo/Europe/Prague 29616 +usr/share/zoneinfo/Europe/Copenhagen 29615 +usr/share/zoneinfo/Europe/Tallinn 29614 +usr/share/zoneinfo/Atlantic/Faroe 29613 +usr/share/zoneinfo/Europe/Helsinki 29612 +usr/share/zoneinfo/Europe/Paris 29611 +usr/share/zoneinfo/Europe/Berlin 29610 +usr/share/zoneinfo/Europe/Gibraltar 29609 +usr/share/zoneinfo/Europe/Athens 29608 +usr/share/zoneinfo/Europe/London 29607 +usr/share/zoneinfo/Europe/Budapest 29606 +usr/share/zoneinfo/Atlantic/Reykjavik 29605 +usr/share/zoneinfo/Europe/Dublin 29604 +usr/share/zoneinfo/Europe/Rome 29603 +usr/share/zoneinfo/CET 29602 +usr/share/zoneinfo/Europe/Riga 29601 +usr/share/zoneinfo/Europe/Zurich 29600 +usr/share/zoneinfo/Europe/Vilnius 29599 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtls.so 29598 +usr/share/zoneinfo/Europe/Luxembourg 29597 +usr/share/zoneinfo/Europe/Malta 29596 +usr/share/zoneinfo/Europe/Chisinau 29595 +usr/share/zoneinfo/Europe/Monaco 29594 +usr/share/zoneinfo/Europe/Amsterdam 29593 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtmf.so 29592 +usr/share/zoneinfo/Europe/Oslo 29591 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdtsdec.so 29590 +usr/lib/x86_64-linux-gnu/libdca.so.0.0.0 29589 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdv.so 29588 +usr/lib/x86_64-linux-gnu/libdv.so.4.0.3 29587 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvb.so 29586 +usr/share/zoneinfo/Europe/Warsaw 29585 +usr/share/zoneinfo/Atlantic/Azores 29584 +usr/share/zoneinfo/Atlantic/Madeira 29583 +usr/share/zoneinfo/Europe/Lisbon 29582 +usr/share/zoneinfo/Europe/Bucharest 29581 +usr/share/zoneinfo/Europe/Kaliningrad 29580 +usr/share/zoneinfo/Europe/Moscow 29579 +usr/share/zoneinfo/Europe/Samara 29578 +usr/lib/x86_64-linux-gnu/libgstmpegts-1.0.so.0.1804.0 29577 +usr/share/zoneinfo/Asia/Yekaterinburg 29576 +usr/share/zoneinfo/Asia/Omsk 29575 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsubenc.so 29574 +usr/share/zoneinfo/Asia/Novosibirsk 29573 +usr/share/zoneinfo/Asia/Krasnoyarsk 29572 +usr/share/zoneinfo/Asia/Irkutsk 29571 +usr/share/zoneinfo/Asia/Yakutsk 29570 +usr/share/zoneinfo/Asia/Vladivostok 29569 +usr/share/zoneinfo/Asia/Magadan 29568 +usr/share/zoneinfo/Asia/Kamchatka 29567 +usr/share/zoneinfo/Atlantic/Canary 29566 +usr/share/zoneinfo/Europe/Madrid 29565 +usr/share/zoneinfo/Africa/Ceuta 29564 +usr/share/zoneinfo/Europe/Stockholm 29563 +usr/share/zoneinfo/Europe/Istanbul 29562 +usr/share/zoneinfo/Europe/Kiev 29561 +usr/share/zoneinfo/Asia/Qatar 29560 +usr/share/zoneinfo/Asia/Tehran 29559 +usr/share/zoneinfo/Asia/Baghdad 29558 +usr/share/zoneinfo/Asia/Jerusalem 29557 +usr/share/zoneinfo/Asia/Amman 29556 +usr/share/zoneinfo/Asia/Riyadh 29555 +usr/share/zoneinfo/Asia/Beirut 29554 +usr/share/zoneinfo/Asia/Dubai 29553 +usr/share/zoneinfo/Asia/Gaza 29552 +usr/share/zoneinfo/Asia/Damascus 29551 +usr/share/zoneinfo/America/Vancouver 29550 +usr/share/zoneinfo/America/Edmonton 29549 +usr/share/zoneinfo/America/Dawson_Creek 29548 +usr/share/zoneinfo/America/Winnipeg 29547 +usr/share/zoneinfo/America/Regina 29546 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvbsuboverlay.so 29545 +usr/share/zoneinfo/America/Toronto 29544 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdlpcmdec.so 29543 +usr/share/zoneinfo/America/Atikokan 29542 +usr/share/zoneinfo/America/Halifax 29541 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdread.so 29540 +usr/lib/x86_64-linux-gnu/libdvdread.so.8.0.0 29539 +usr/share/zoneinfo/America/Blanc-Sablon 29538 +usr/share/zoneinfo/America/St_Johns 29537 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdspu.so 29536 +usr/share/zoneinfo/America/Tijuana 29535 +usr/share/zoneinfo/America/Mazatlan 29534 +usr/share/zoneinfo/America/Mexico_City 29533 +usr/share/zoneinfo/America/Miquelon 29532 +usr/share/zoneinfo/America/Adak 29531 +usr/share/zoneinfo/America/Anchorage 29530 +usr/share/zoneinfo/America/Los_Angeles 29529 +usr/share/zoneinfo/America/Denver 29528 +usr/share/zoneinfo/America/Phoenix 29527 +usr/share/zoneinfo/America/Chicago 29526 +usr/share/zoneinfo/America/New_York 29525 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstdvdsub.so 29524 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsteffectv.so 29523 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstencoding.so 29522 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstequalizer.so 29521 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaad.so 29520 +usr/lib/x86_64-linux-gnu/libfaad.so.2.0.0 29519 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfaceoverlay.so 29518 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfbdevsink.so 29517 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfestival.so 29516 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfieldanalysis.so 29515 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflac.so 29514 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflite.so 29513 +usr/lib/x86_64-linux-gnu/libflite.so.2.2 29512 +usr/libexec/xdg-permission-store 29511 +usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal.so.2.2 29510 +usr/lib/x86_64-linux-gnu/girepository-1.0/NMA-1.0.typelib 29509 +usr/lib/x86_64-linux-gnu/girepository-1.0/GnomeBluetooth-1.0.typelib 29508 +usr/lib/x86_64-linux-gnu/libgnome-bluetooth.so.13.0.2 29507 +usr/lib/x86_64-linux-gnu/libcanberra-gtk3.so.0.1.9 29506 +usr/lib/x86_64-linux-gnu/libnotify.so.4.0.0 29505 +usr/lib/x86_64-linux-gnu/libgthread-2.0.so.0.6600.8 29504 +usr/lib/x86_64-linux-gnu/libflite_usenglish.so.2.2 29503 +usr/lib/gnome-shell/libgvc.so 29502 +usr/lib/x86_64-linux-gnu/libpulse-mainloop-glib.so.0.0.6 29501 +usr/lib/x86_64-linux-gnu/libflite_cmulex.so.2.2 29500 +usr/share/xsessions/gnome-classic.desktop 29499 +usr/share/xsessions/gnome-xorg.desktop 29498 +usr/share/xsessions/gnome.desktop 29497 +var/lib/polkit-1/localauthority/10-vendor.d/systemd-networkd.pkla 29496 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfluidsynthmidi.so 29495 +usr/lib/x86_64-linux-gnu/libfluidsynth.so.2.3.7 29494 +var/lib/polkit-1/localauthority/10-vendor.d/org.freedesktop.NetworkManager.pkla 29493 +var/lib/polkit-1/localauthority/10-vendor.d/gnome-control-center.pkla 29492 +usr/lib/x86_64-linux-gnu/libjack.so.0.1.0 29491 +usr/lib/x86_64-linux-gnu/libpulse-simple.so.0.1.1 29490 +usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0.14.0 29489 +usr/share/gdm/BuiltInSessions/default.desktop 29488 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.pkla 29487 +usr/lib/x86_64-linux-gnu/gio/modules/libgiognutls.so 29486 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.cups.pkla 29485 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.accounts.pkla 29484 +etc/ssl/certs/ca-certificates.crt 29483 +etc/polkit-1/localauthority/10-vendor.d/org.boum.tails.NetworkManager.pkla 29482 +etc/systemd/sleep.conf 29481 +lib/systemd/system/suspend.target 29480 +lib/systemd/system/systemd-suspend.service 29479 +lib/systemd/system/sleep.target 29478 +usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so 29477 +usr/lib/x86_64-linux-gnu/libproxy.so.1.0.0 29476 +usr/lib/x86_64-linux-gnu/gio/modules/libgiognomeproxy.so 29475 +usr/libexec/at-spi2-registryd 29474 +usr/lib/x86_64-linux-gnu/libinstpatch-1.0.so.2.2.0 29473 +usr/bin/gjs-console 29472 +usr/share/gnome-shell/org.gnome.Shell.Notifications 29471 +usr/libexec/gsd-screensaver-proxy 29468 +usr/lib/gnome-settings-daemon-3.0/libgsd.so 29467 +usr/libexec/gsd-sound 29464 +usr/libexec/gsd-a11y-settings 29459 +usr/libexec/gsd-xsettings 29458 +usr/libexec/gsd-housekeeping 29455 +usr/libexec/gsd-power 29452 +usr/libexec/gsd-print-notifications 29449 +usr/libexec/gsd-sharing 29446 +usr/share/icons/Adwaita/cursors/sb_v_double_arrow 29443 +usr/share/icons/Adwaita/cursors/sb_h_double_arrow 29442 +usr/libexec/gsd-usb-protection 29441 +usr/libexec/gsd-color 29438 +usr/libexec/gsd-keyboard 29435 +usr/lib/x86_64-linux-gnu/libcolord.so.2.0.5 29434 +usr/libexec/ibus-engine-simple 29433 +usr/share/gnome-shell/org.gnome.Shell.Notifications.src.gresource 29430 +usr/libexec/gsd-rfkill 29429 +usr/libexec/gsd-smartcard 29426 +usr/share/icons/Adwaita/index.theme 29425 +usr/libexec/gsd-wacom 29422 +usr/libexec/gsd-datetime 29419 +usr/libexec/gsd-media-keys 29416 +lib/systemd/system/systemd-hostnamed.service 29415 +usr/libexec/gsd-printer 29414 +usr/share/icons/Adwaita/cursors/crossed_circle 29413 +usr/share/icons/Adwaita/cursors/left_ptr_watch 29412 +usr/lib/x86_64-linux-gnu/nss/libsoftokn3.so 29411 +usr/lib/x86_64-linux-gnu/nss/libfreeblpriv3.so 29410 +usr/share/icons/Adwaita/cursors/dnd-copy 29409 +usr/share/icons/Adwaita/cursors/link 29408 +usr/share/icons/Adwaita/cursors/move 29407 +usr/share/icons/Adwaita/cursors/question_arrow 29406 +usr/share/icons/Adwaita/cursors/hand2 29405 +usr/share/icons/Adwaita/cursors/X_cursor 29404 +usr/share/icons/Adwaita/cursors/dnd-link 29403 +usr/share/icons/Adwaita/cursors/all-scroll 29402 +usr/share/icons/Adwaita/cursors/bd_double_arrow 29401 +usr/share/icons/Adwaita/cursors/bottom_left_corner 29400 +usr/share/icons/Adwaita/cursors/bottom_right_corner 29399 +usr/share/icons/Adwaita/cursors/bottom_side 29398 +usr/share/icons/gnome/index.theme 29397 +usr/share/icons/Adwaita/cursors/bottom_tee 29396 +usr/share/icons/Adwaita/cursors/cell 29395 +usr/share/icons/Adwaita/cursors/circle 29394 +usr/share/icons/Adwaita/cursors/context-menu 29393 +usr/share/icons/Adwaita/cursors/cross 29392 +usr/share/icons/Adwaita/cursors/dnd-ask 29391 +usr/share/icons/Adwaita/cursors/dnd-move 29390 +usr/share/icons/Adwaita/cursors/dnd-no-drop 29389 +usr/share/icons/Adwaita/cursors/dnd-none 29388 +usr/share/icons/Adwaita/cursors/dotbox 29387 +usr/share/icons/Adwaita/cursors/right_ptr 29386 +usr/share/icons/Adwaita/cursors/right_side 29385 +usr/share/icons/Adwaita/cursors/fd_double_arrow 29384 +usr/share/icons/Adwaita/cursors/hand1 29383 +usr/share/icons/Adwaita/cursors/grabbing 29382 +usr/share/icons/Adwaita/cursors/left_side 29381 +usr/share/icons/Adwaita/cursors/left_tee 29380 +usr/share/icons/Adwaita/cursors/ll_angle 29379 +usr/share/icons/Adwaita/cursors/lr_angle 29378 +usr/share/icons/Adwaita/cursors/top_side 29377 +usr/share/icons/Adwaita/cursors/top_right_corner 29376 +usr/share/icons/Adwaita/cursors/top_left_corner 29375 +usr/share/icons/Adwaita/cursors/pencil 29374 +usr/share/icons/Adwaita/cursors/plus 29373 +usr/share/icons/Adwaita/cursors/pointer-move 29372 +usr/share/icons/Adwaita/cursors/right_tee 29370 +usr/lib/x86_64-linux-gnu/libXss.so.1.0.0 29369 +usr/lib/x86_64-linux-gnu/libXxf86vm.so.1.0.0 29368 +usr/share/icons/Adwaita/cursors/sb_down_arrow 29367 +usr/share/icons/Adwaita/cursors/sb_left_arrow 29366 +usr/share/icons/Adwaita/cursors/sb_right_arrow 29365 +usr/share/icons/Adwaita/cursors/sb_up_arrow 29364 +usr/share/icons/Adwaita/cursors/tcross 29363 +usr/share/icons/Adwaita/cursors/xterm 29362 +usr/share/icons/Adwaita/cursors/top_tee 29361 +usr/share/icons/Adwaita/cursors/ul_angle 29360 +usr/share/icons/Adwaita/cursors/ur_angle 29359 +usr/share/icons/Adwaita/cursors/vertical-text 29358 +lib/systemd/systemd-hostnamed 29357 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflv.so 29356 +usr/share/icons/Adwaita/cursors/watch 29355 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstflxdec.so 29354 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfreeverb.so 29353 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstfrei0r.so 29352 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgaudieffects.so 29351 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdkpixbuf.so 29350 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgdp.so 29349 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgeometrictransform.so 29348 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgio.so 29347 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgme.so 29346 +usr/lib/x86_64-linux-gnu/libgme.so.0.6.3 29345 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom.so 29344 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgoom2k1.so 29343 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstgsm.so 29342 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsthls.so 29341 +usr/share/icons/hicolor/index.theme 29340 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsticydemux.so 29339 +usr/share/icons/Adwaita/cursors/zoom-in 29338 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3demux.so 29337 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstid3tag.so 29336 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstimagefreeze.so 29335 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinter.so 29334 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterlace.so 29333 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstinterleave.so 29332 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstipcpipeline.so 29331 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstisomp4.so 29330 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivfparse.so 29329 +usr/share/icons/Adwaita/cursors/zoom-out 29328 +usr/share/icons/Adwaita/16x16/apps/preferences-desktop-accessibility-symbolic.symbolic.png 29327 +usr/share/icons/Adwaita/16x16/ui/pan-down-symbolic.symbolic.png 29326 +usr/share/icons/Adwaita/16x16/status/audio-volume-medium-symbolic.symbolic.png 29325 +usr/share/icons/Adwaita/16x16/actions/system-shutdown-symbolic.symbolic.png 29324 +usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf 29323 +usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf 29322 +usr/lib/x86_64-linux-gnu/dri/swrast_dri.so 29321 +usr/lib/x86_64-linux-gnu/libLLVM-11.so.1 29320 +usr/share/themes/Default/gtk-3.0/gtk-keys.css 29319 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstivtc.so 29318 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjack.so 29317 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjp2kdecimator.so 29316 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpeg.so 29315 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstjpegformat.so 29314 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkate.so 29313 +usr/share/ibus/dicts/emoji-en.dict 29312 +lib/systemd/system/systemd-localed.service 29311 +usr/libexec/dconf-service 29310 +lib/systemd/system/systemd-localed.service.d/locale-gen.conf 29309 +usr/lib/x86_64-linux-gnu/libsensors.so.5.0.0 29306 +usr/lib/x86_64-linux-gnu/libdrm_amdgpu.so.1.0.0 29305 +usr/lib/x86_64-linux-gnu/libvulkan.so.1.2.162 29304 +usr/lib/x86_64-linux-gnu/libkate.so.1.3.0 29303 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstkms.so 29302 +lib/systemd/system/colord.service 29301 +usr/lib/x86_64-linux-gnu/libgstallocators-1.0.so.0.1804.0 29299 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstladspa.so 29298 +usr/libexec/colord 29296 +usr/lib/x86_64-linux-gnu/libedit.so.2.0.63 29295 +usr/lib/x86_64-linux-gnu/libz3.so.4 29294 +usr/lib/x86_64-linux-gnu/libcolordprivate.so.2.0.5 29293 +usr/lib/x86_64-linux-gnu/libgusb.so.2.0.10 29292 +usr/share/gnome-shell/org.gnome.Shell.Screencast 29291 +lib/udev/hwdb.bin 29286 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_camera.so 29285 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_sane.so 29284 +usr/lib/x86_64-linux-gnu/colord-plugins/libcolord_sensor_scanner.so 29283 +lib/systemd/systemd-localed 29282 +usr/share/color/icc/colord/BestRGB.icc 29281 +usr/share/gnome-shell/org.gnome.Shell.Screencast.src.gresource 29280 +usr/lib/x86_64-linux-gnu/girepository-1.0/Gst-1.0.typelib 29279 +usr/share/color/icc/colord/BetaRGB.icc 29278 +usr/share/color/icc/colord/BruceRGB.icc 29277 +etc/default/keyboard 29276 +usr/share/color/icc/colord/Crayons.icc 29275 +usr/share/color/icc/colord/DonRGB4.icc 29274 +usr/share/color/icc/colord/ECI-RGBv1.icc 29273 +usr/share/color/icc/colord/ECI-RGBv2.icc 29272 +usr/share/color/icc/colord/EktaSpacePS5.icc 29271 +usr/share/color/icc/colord/Gamma5000K.icc 29270 +usr/share/color/icc/colord/Gamma5500K.icc 29269 +usr/share/color/icc/colord/Gamma6500K.icc 29268 +usr/share/color/icc/colord/Rec709.icc 29267 +usr/share/color/icc/colord/WideGamutRGB.icc 29266 +usr/share/color/icc/ghostscript/a98.icc 29265 +usr/share/color/icc/ghostscript/default_cmyk.icc 29264 +usr/share/color/icc/ghostscript/default_gray.icc 29263 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlame.so 29262 +usr/share/color/icc/ghostscript/default_rgb.icc 29261 +usr/share/color/icc/ghostscript/esrgb.icc 29260 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlegacyrawparse.so 29259 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlevel.so 29258 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibav.so 29257 +usr/lib/x86_64-linux-gnu/libavfilter.so.7.85.100 29256 +usr/share/color/icc/ghostscript/gray_to_k.icc 29255 +usr/share/color/icc/ghostscript/lab.icc 29254 +usr/share/color/icc/ghostscript/ps_cmyk.icc 29253 +usr/share/color/icc/ghostscript/ps_gray.icc 29252 +usr/share/color/icc/ghostscript/ps_rgb.icc 29251 +usr/share/color/icc/ghostscript/rommrgb.icc 29250 +usr/share/color/icc/ghostscript/scrgb.icc 29249 +usr/share/color/icc/ghostscript/sgray.icc 29248 +usr/share/color/icc/ghostscript/srgb.icc 29247 +usr/lib/x86_64-linux-gnu/libavformat.so.58.45.100 29246 +usr/libexec/colord-sane 29245 +usr/lib/x86_64-linux-gnu/libsane.so.1.0.31 29244 +etc/sane.d/dll.d/airscan 29243 +etc/sane.d/dll.d/hplip 29242 +etc/sane.d/dll.conf 29241 +usr/lib/x86_64-linux-gnu/sane/libsane-xerox_mfp.so.1.0.31 29240 +etc/sane.d/xerox_mfp.conf 29239 +usr/lib/x86_64-linux-gnu/libswscale.so.5.7.100 29238 +usr/lib/x86_64-linux-gnu/libpostproc.so.55.7.100 29237 +usr/lib/x86_64-linux-gnu/libpocketsphinx.so.3.0.0 29236 +usr/lib/x86_64-linux-gnu/sane/libsane-umax1220u.so.1.0.31 29235 +usr/lib/x86_64-linux-gnu/libsphinxbase.so.3.0.0 29234 +etc/sane.d/umax1220u.conf 29233 +usr/lib/x86_64-linux-gnu/liblilv-0.so.0.24.12 29232 +usr/lib/x86_64-linux-gnu/sane/libsane-umax.so.1.0.31 29231 +usr/lib/x86_64-linux-gnu/librubberband.so.2.1.2 29230 +usr/lib/x86_64-linux-gnu/libmysofa.so.1.1.0 29229 +usr/lib/x86_64-linux-gnu/libflite_cmu_us_awb.so.2.2 29228 +etc/sane.d/umax.conf 29227 +usr/lib/x86_64-linux-gnu/sane/libsane-u12.so.1.0.31 29226 +etc/sane.d/u12.conf 29225 +usr/lib/x86_64-linux-gnu/sane/libsane-teco3.so.1.0.31 29224 +etc/sane.d/teco3.conf 29223 +usr/lib/x86_64-linux-gnu/sane/libsane-teco2.so.1.0.31 29222 +etc/sane.d/teco2.conf 29221 +usr/lib/x86_64-linux-gnu/sane/libsane-teco1.so.1.0.31 29220 +etc/sane.d/teco1.conf 29219 +usr/lib/x86_64-linux-gnu/sane/libsane-tamarack.so.1.0.31 29218 +etc/sane.d/tamarack.conf 29217 +usr/lib/x86_64-linux-gnu/sane/libsane-sp15c.so.1.0.31 29216 +etc/sane.d/sp15c.conf 29215 +usr/lib/x86_64-linux-gnu/sane/libsane-snapscan.so.1.0.31 29214 +etc/sane.d/snapscan.conf 29213 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3840.so.1.0.31 29212 +usr/lib/x86_64-linux-gnu/sane/libsane-sm3600.so.1.0.31 29211 +usr/lib/x86_64-linux-gnu/sane/libsane-sharp.so.1.0.31 29210 +etc/sane.d/sharp.conf 29209 +usr/lib/x86_64-linux-gnu/sane/libsane-sceptre.so.1.0.31 29208 +etc/sane.d/sceptre.conf 29207 +usr/lib/x86_64-linux-gnu/sane/libsane-s9036.so.1.0.31 29206 +usr/lib/x86_64-linux-gnu/libflite_cmu_us_kal16.so.2.2 29205 +etc/sane.d/s9036.conf 29204 +usr/lib/x86_64-linux-gnu/sane/libsane-rts8891.so.1.0.31 29203 +etc/sane.d/rts8891.conf 29202 +usr/lib/x86_64-linux-gnu/sane/libsane-ricoh2.so.1.0.31 29201 +usr/lib/x86_64-linux-gnu/sane/libsane-ricoh.so.1.0.31 29200 +etc/sane.d/ricoh.conf 29199 +usr/lib/x86_64-linux-gnu/sane/libsane-qcam.so.1.0.31 29198 +etc/sane.d/qcam.conf 29197 +usr/lib/x86_64-linux-gnu/sane/libsane-plustek.so.1.0.31 29196 +etc/sane.d/plustek.conf 29195 +usr/lib/x86_64-linux-gnu/sane/libsane-pixma.so.1.0.31 29194 +etc/sane.d/pixma.conf 29193 +usr/lib/x86_64-linux-gnu/sane/libsane-pieusb.so.1.0.31 29192 +etc/sane.d/pieusb.conf 29191 +usr/lib/x86_64-linux-gnu/sane/libsane-pie.so.1.0.31 29190 +etc/sane.d/pie.conf 29189 +usr/lib/x86_64-linux-gnu/sane/libsane-niash.so.1.0.31 29188 +usr/lib/x86_64-linux-gnu/sane/libsane-nec.so.1.0.31 29187 +etc/sane.d/nec.conf 29186 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb2.so.1.0.31 29185 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek_usb.so.1.0.31 29184 +etc/sane.d/mustek_usb.conf 29183 +usr/lib/x86_64-linux-gnu/sane/libsane-mustek.so.1.0.31 29182 +usr/lib/x86_64-linux-gnu/libflite_cmu_us_rms.so.2.2 29181 +usr/lib/x86_64-linux-gnu/libieee1284.so.3.2.2 29180 +etc/sane.d/mustek.conf 29179 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek2.so.1.0.31 29178 +etc/sane.d/microtek2.conf 29177 +usr/lib/x86_64-linux-gnu/sane/libsane-microtek.so.1.0.31 29176 +etc/sane.d/microtek.conf 29175 +usr/lib/x86_64-linux-gnu/sane/libsane-matsushita.so.1.0.31 29174 +etc/sane.d/matsushita.conf 29173 +usr/lib/x86_64-linux-gnu/sane/libsane-magicolor.so.1.0.31 29172 +usr/lib/x86_64-linux-gnu/libnetsnmp.so.40.0.0 29171 +etc/sane.d/magicolor.conf 29170 +usr/lib/x86_64-linux-gnu/sane/libsane-ma1509.so.1.0.31 29169 +etc/sane.d/ma1509.conf 29168 +usr/lib/x86_64-linux-gnu/sane/libsane-lexmark.so.1.0.31 29167 +usr/lib/x86_64-linux-gnu/libflite_cmu_us_slt.so.2.2 29166 +etc/sane.d/lexmark.conf 29165 +usr/lib/x86_64-linux-gnu/sane/libsane-leo.so.1.0.31 29164 +etc/sane.d/leo.conf 29163 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs40xx.so.1.0.31 29162 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs20xx.so.1.0.31 29161 +usr/lib/x86_64-linux-gnu/sane/libsane-kvs1025.so.1.0.31 29160 +usr/lib/x86_64-linux-gnu/sane/libsane-kodakaio.so.1.0.31 29159 +etc/sane.d/kodakaio.conf 29158 +usr/lib/x86_64-linux-gnu/sane/libsane-kodak.so.1.0.31 29157 +etc/sane.d/kodak.conf 29156 +usr/lib/x86_64-linux-gnu/sane/libsane-ibm.so.1.0.31 29155 +etc/sane.d/ibm.conf 29154 +usr/lib/x86_64-linux-gnu/sane/libsane-hs2p.so.1.0.31 29153 +etc/sane.d/hs2p.conf 29152 +usr/lib/x86_64-linux-gnu/sane/libsane-hpsj5s.so.1.0.31 29151 +etc/sane.d/hpsj5s.conf 29150 +usr/lib/x86_64-linux-gnu/sane/libsane-hpljm1005.so.1.0.31 29149 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5590.so.1.0.31 29148 +usr/lib/x86_64-linux-gnu/sane/libsane-hp5400.so.1.0.31 29147 +etc/sane.d/hp5400.conf 29146 +usr/lib/x86_64-linux-gnu/sane/libsane-hp4200.so.1.0.31 29145 +etc/sane.d/hp4200.conf 29144 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3900.so.1.0.31 29143 +etc/sane.d/hp3900.conf 29142 +usr/lib/x86_64-linux-gnu/sane/libsane-hp3500.so.1.0.31 29141 +usr/lib/x86_64-linux-gnu/sane/libsane-hp.so.1.0.31 29140 +etc/sane.d/hp.conf 29139 +usr/lib/x86_64-linux-gnu/sane/libsane-gt68xx.so.1.0.31 29138 +etc/sane.d/gt68xx.conf 29137 +usr/lib/x86_64-linux-gnu/sane/libsane-genesys.so.1.0.31 29136 +usr/lib/x86_64-linux-gnu/libvidstab.so.1.1 29135 +usr/lib/x86_64-linux-gnu/libzmq.so.5.2.4 29134 +usr/lib/x86_64-linux-gnu/libopenmpt.so.0.1.1 29133 +etc/sane.d/genesys.conf 29132 +usr/lib/x86_64-linux-gnu/sane/libsane-fujitsu.so.1.0.31 29131 +etc/sane.d/fujitsu.conf 29130 +usr/lib/x86_64-linux-gnu/sane/libsane-escl.so.1.0.31 29129 +usr/lib/x86_64-linux-gnu/librabbitmq.so.4.4.0 29128 +usr/lib/x86_64-linux-gnu/libsrt-gnutls.so.1.4.2 29127 +usr/lib/x86_64-linux-gnu/libssh-gcrypt.so.4.8.8 29126 +usr/lib/x86_64-linux-gnu/sane/libsane-epsonds.so.1.0.31 29125 +etc/sane.d/epsonds.conf 29124 +usr/lib/x86_64-linux-gnu/sane/libsane-epson2.so.1.0.31 29123 +etc/sane.d/epson2.conf 29122 +usr/lib/x86_64-linux-gnu/sane/libsane-epjitsu.so.1.0.31 29121 +etc/sane.d/epjitsu.conf 29120 +usr/lib/x86_64-linux-gnu/sane/libsane-dmc.so.1.0.31 29119 +etc/sane.d/dmc.conf 29118 +usr/lib/x86_64-linux-gnu/sane/libsane-dell1600n_net.so.1.0.31 29117 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan3.so.1.0.31 29116 +etc/sane.d/coolscan3.conf 29115 +usr/lib/x86_64-linux-gnu/sane/libsane-coolscan.so.1.0.31 29114 +etc/sane.d/coolscan.conf 29113 +usr/lib/x86_64-linux-gnu/sane/libsane-cardscan.so.1.0.31 29112 +usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0 29111 +usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0 29110 +etc/sane.d/cardscan.conf 29109 +usr/lib/x86_64-linux-gnu/sane/libsane-canon_lide70.so.1.0.31 29108 +etc/sane.d/canon_lide70.conf 29107 +usr/lib/x86_64-linux-gnu/sane/libsane-canon_dr.so.1.0.31 29106 +etc/sane.d/canon_dr.conf 29105 +usr/lib/x86_64-linux-gnu/sane/libsane-canon630u.so.1.0.31 29104 +etc/sane.d/canon630u.conf 29103 +usr/lib/x86_64-linux-gnu/sane/libsane-canon.so.1.0.31 29102 +etc/sane.d/canon.conf 29101 +usr/lib/x86_64-linux-gnu/libserd-0.so.0.30.10 29100 +usr/lib/x86_64-linux-gnu/sane/libsane-bh.so.1.0.31 29099 +usr/lib/x86_64-linux-gnu/libsord-0.so.0.16.8 29098 +usr/lib/x86_64-linux-gnu/libsratom-0.so.0.6.8 29097 +usr/lib/x86_64-linux-gnu/libsamplerate.so.0.2.1 29096 +etc/sane.d/bh.conf 29095 +usr/lib/x86_64-linux-gnu/sane/libsane-avision.so.1.0.31 29094 +etc/sane.d/avision.conf 29093 +usr/lib/x86_64-linux-gnu/sane/libsane-as6e.so.1.0.31 29092 +usr/lib/x86_64-linux-gnu/sane/libsane-artec_eplus48u.so.1.0.31 29091 +etc/sane.d/artec_eplus48u.conf 29090 +usr/lib/x86_64-linux-gnu/sane/libsane-artec.so.1.0.31 29089 +etc/sane.d/artec.conf 29088 +usr/lib/x86_64-linux-gnu/sane/libsane-apple.so.1.0.31 29087 +etc/sane.d/apple.conf 29086 +usr/lib/x86_64-linux-gnu/sane/libsane-agfafocus.so.1.0.31 29085 +etc/sane.d/agfafocus.conf 29084 +usr/lib/x86_64-linux-gnu/sane/libsane-abaton.so.1.0.31 29083 +etc/sane.d/abaton.conf 29082 +usr/lib/x86_64-linux-gnu/sane/libsane-net.so.1.0.31 29081 +etc/sane.d/net.conf 29080 +usr/lib/x86_64-linux-gnu/sane/libsane-hpaio.so.1.0.0 29079 +usr/lib/x86_64-linux-gnu/libhpip.so.0.0.1 29078 +usr/lib/x86_64-linux-gnu/libhpmud.so.0.0.6 29077 +usr/lib/x86_64-linux-gnu/libhpdiscovery.so.0.0.1 29076 +usr/lib/x86_64-linux-gnu/sane/libsane-airscan.so.1 29075 +etc/sane.d/airscan.conf 29074 +usr/lib/x86_64-linux-gnu/libfftw3.so.3.5.8 29073 +usr/lib/x86_64-linux-gnu/libsodium.so.23.3.0 29072 +usr/lib/x86_64-linux-gnu/libpgm-5.3.so.0.0.128 29071 +usr/lib/x86_64-linux-gnu/libnorm.so.1 29070 +usr/lib/x86_64-linux-gnu/libmpg123.so.0.45.3 29069 +usr/lib/x86_64-linux-gnu/libgfortran.so.5.0.0 29068 +usr/lib/x86_64-linux-gnu/libquadmath.so.0.0.0 29067 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlibvisual.so 29066 +usr/lib/x86_64-linux-gnu/libvisual-0.4.so.0.0.0 29065 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstlv2.so 29064 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmatroska.so 29063 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmidi.so 29062 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmms.so 29061 +usr/lib/x86_64-linux-gnu/libmms.so.0.0.2 29060 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmodplug.so 29059 +usr/lib/x86_64-linux-gnu/libmodplug.so.1.0.0 29058 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmonoscope.so 29057 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2dec.so 29056 +usr/lib/x86_64-linux-gnu/libmpeg2.so.0.1.0 29055 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpeg2enc.so 29054 +usr/lib/x86_64-linux-gnu/libmjpegutils-2.1.so.0.0.0 29053 +usr/lib/x86_64-linux-gnu/libmpeg2encpp-2.1.so.0.0.0 29052 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsdemux.so 29051 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegpsmux.so 29050 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsdemux.so 29049 +usr/lib/x86_64-linux-gnu/libgstcodecparsers-1.0.so.0.1804.0 29048 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpegtsmux.so 29047 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmpg123.so 29046 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmplex.so 29045 +usr/lib/x86_64-linux-gnu/libmplex2-2.1.so.0.0.0 29044 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmsdk.so 29043 +usr/lib/x86_64-linux-gnu/libmfxhw64.so.1.34 29042 +usr/share/fonts/X11/Type1/fonts.dir 29041 +usr/bin/xkbcomp 29040 +usr/share/X11/xkb/geometry/pc 29039 +usr/lib/x86_64-linux-gnu/libGLX_mesa.so.0.0.0 29038 +usr/lib/x86_64-linux-gnu/libxcb-glx.so.0.0.0 29037 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmulaw.so 29036 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultifile.so 29035 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmultipart.so 29034 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmusepack.so 29033 +usr/lib/x86_64-linux-gnu/libmpcdec.so.6.1.0 29032 +usr/share/X11/locale/locale.alias 29031 +usr/share/X11/locale/locale.dir 29030 +usr/share/X11/locale/en_US.UTF-8/XLC_LOCALE 29029 +usr/lib/x86_64-linux-gnu/gconv/ISO8859-1.so 29028 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstmxf.so 29027 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnavigationtest.so 29026 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnetsim.so 29025 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstnvcodec.so 29024 +usr/lib/x86_64-linux-gnu/libgstcodecs-1.0.so.0.1804.0 29023 +usr/lib/x86_64-linux-gnu/libgstgl-1.0.so.0.1804.0 29022 +usr/libexec/ibus-x11 29021 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstofa.so 29020 +usr/lib/gnome-settings-daemon-3.0/gtk-modules/at-spi2-atk.desktop 29019 +usr/lib/x86_64-linux-gnu/libofa.so.0.0.0 29018 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstogg.so 29017 +usr/bin/spice-vdagent 29014 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenal.so 29013 +etc/xdg/Xwayland-session.d/00-xrdb 29012 +usr/lib/x86_64-linux-gnu/libopenal.so.1.19.1 29011 +etc/X11/Xsession.options 29010 +usr/bin/xrdb 29009 +usr/lib/x86_64-linux-gnu/libXmuu.so.1.0.0 29008 +usr/local/lib/tails-greeter 29005 +etc/X11/Xresources/x11-common 29004 +usr/bin/x86_64-linux-gnu-cpp-10 29003 +usr/lib/x86_64-linux-gnu/libsndio.so.7.0 29002 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenexr.so 29001 +usr/lib/x86_64-linux-gnu/libIlmImf-2_5.so.25.0.3 29000 +usr/lib/gcc/x86_64-linux-gnu/10/cc1 28999 +usr/share/tails/greeter/set-cursor.py 28998 +usr/lib/x86_64-linux-gnu/libHalf-2_5.so.25.0.3 28997 +usr/lib/x86_64-linux-gnu/libisl.so.23.0.0 28996 +usr/lib/x86_64-linux-gnu/libIex-2_5.so.25.0.3 28995 +usr/lib/x86_64-linux-gnu/libImath-2_5.so.25.0.3 28994 +usr/lib/x86_64-linux-gnu/libIlmThread-2_5.so.25.0.3 28993 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenjpeg.so 28992 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenmpt.so 28991 +usr/lib/x86_64-linux-gnu/libgstbadaudio-1.0.so.0.1804.0 28990 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopenni2.so 28989 +usr/lib/x86_64-linux-gnu/libOpenNI2.so.0 28988 +etc/openni2/OpenNI.ini 28987 +usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libDummyDevice.so.0 28986 +usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libOniFile.so.0 28985 +usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPS1080.so.0 28984 +usr/lib/python3/dist-packages/gi/__init__.py 28983 +usr/lib/x86_64-linux-gnu/OpenNI2/Drivers/libPSLink.so.0 28982 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopus.so 28981 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstopusparse.so 28980 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoss4.so 28979 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstossaudio.so 28978 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstoverlaycomposition.so 28977 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpango.so 28976 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpbtypes.so 28975 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpcapparse.so 28974 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpipewire.so 28973 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstplayback.so 28972 +usr/lib/x86_64-linux-gnu/libmpc.so.3.2.0 28971 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpng.so 28970 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpnm.so 28969 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstproxy.so 28968 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstpulseaudio.so 28967 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrawparse.so 28966 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrealmedia.so 28965 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstremovesilence.so 28964 +usr/lib/python3.9/pkgutil.py 28963 +usr/lib/x86_64-linux-gnu/libmpfr.so.6.1.0 28962 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstreplaygain.so 28961 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstresindvd.so 28960 +usr/lib/x86_64-linux-gnu/libdvdnav.so.4.3.0 28959 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrfbsrc.so 28958 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrist.so 28957 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrsvg.so 28956 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp.so 28955 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtmp2.so 28954 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtp.so 28953 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanager.so 28952 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtpmanagerbad.so 28951 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtponvif.so 28950 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstrtsp.so 28949 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsbc.so 28948 +usr/lib/x86_64-linux-gnu/libsbc.so.1.3.0 28947 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsctp.so 28946 +usr/lib/x86_64-linux-gnu/libgstsctp-1.0.so.0.1804.0 28945 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsdpelem.so 28944 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsegmentclip.so 28943 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshapewipe.so 28942 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshm.so 28941 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstshout2.so 28940 +usr/lib/x86_64-linux-gnu/libshout.so.3.2.0 28939 +usr/lib/x86_64-linux-gnu/libtheora.so.0.3.10 28938 +usr/lib/python3/dist-packages/gi/_gi.cpython-39-x86_64-linux-gnu.so 28937 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsid.so 28936 +usr/lib/x86_64-linux-gnu/libsidplay.so.1.0.3 28935 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsiren.so 28934 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmooth.so 28933 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmoothstreaming.so 28932 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsmpte.so 28931 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsndfile.so 28930 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoundtouch.so 28929 +usr/lib/x86_64-linux-gnu/libSoundTouch.so.1.0.0 28928 +lib/x86_64-linux-gnu/libmvec-2.31.so 28927 +usr/lib/python3/dist-packages/gi/_error.py 28926 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsoup.so 28925 +usr/lib/python3/dist-packages/gi/_gi_cairo.cpython-39-x86_64-linux-gnu.so 28924 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspandsp.so 28923 +usr/lib/x86_64-linux-gnu/libspandsp.so.2.0.0 28922 +usr/lib/python3/dist-packages/cairo/__init__.py 28921 +usr/lib/python3/dist-packages/cairo/_cairo.cpython-39-x86_64-linux-gnu.so 28920 +usr/lib/python3/dist-packages/gi/repository/__init__.py 28919 +usr/lib/python3/dist-packages/gi/importer.py 28918 +usr/lib/python3/dist-packages/gi/module.py 28917 +usr/lib/python3/dist-packages/gi/types.py 28916 +usr/lib/python3/dist-packages/gi/_constants.py 28915 +usr/lib/python3/dist-packages/gi/docstring.py 28914 +usr/lib/python3/dist-packages/gi/_propertyhelper.py 28913 +usr/lib/python3/dist-packages/gi/_signalhelper.py 28912 +usr/lib/python3/dist-packages/gi/overrides/__init__.py 28911 +usr/lib/python3/dist-packages/gi/overrides/GLib.py 28910 +usr/lib/python3/dist-packages/gi/_ossighelper.py 28909 +usr/lib/python3/dist-packages/gi/_option.py 28908 +usr/lib/python3.9/optparse.py 28907 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspectrum.so 28906 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeed.so 28905 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstspeex.so 28904 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrt.so 28903 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsrtp.so 28902 +usr/lib/x86_64-linux-gnu/libsrtp2.so.1 28901 +usr/lib/python3/dist-packages/gi/overrides/GObject.py 28900 +usr/lib/python3/dist-packages/gi/overrides/Pango.py 28899 +usr/lib/python3/dist-packages/gi/overrides/Gio.py 28898 +usr/lib/python3/dist-packages/gi/overrides/GdkPixbuf.py 28897 +usr/lib/python3/dist-packages/gi/overrides/Gdk.py 28896 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubenc.so 28895 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstsubparse.so 28894 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstswitchbin.so 28893 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttaglib.so 28892 +usr/lib/x86_64-linux-gnu/libtag.so.1.17.0 28891 +usr/lib/x86_64-linux-gnu/girepository-1.0/GdkX11-3.0.typelib 28890 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttcp.so 28889 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstteletext.so 28888 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttheora.so 28887 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttimecode.so 28886 +usr/lib/x86_64-linux-gnu/libltc.so.11.1.0 28885 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttranscode.so 28884 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstttmlsubs.so 28883 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttwolame.so 28882 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsttypefindfunctions.so 28881 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstudp.so 28880 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstuvch264.so 28879 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstv4l2codecs.so 28878 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstva.so 28877 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideo4linux2.so 28876 +usr/lib/python3/dist-packages/gi/overrides/Gtk.py 28875 +usr/lib/x86_64-linux-gnu/libv4l2.so.0.0.0 28874 +usr/lib/x86_64-linux-gnu/libv4lconvert.so.0.0.0 28873 +usr/lib/python3/dist-packages/gi/_gtktemplate.py 28872 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideobox.so 28871 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoconvert.so 28870 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideocrop.so 28869 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofilter.so 28868 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideofiltersbad.so 28867 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoframe_audiolevel.so 28866 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideomixer.so 28865 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoparsersbad.so 28864 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideorate.so 28863 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideoscale.so 28862 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideosignal.so 28861 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvideotestsrc.so 28860 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvmnc.so 28859 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoaacenc.so 28858 +usr/lib/x86_64-linux-gnu/libvo-aacenc.so.0.0.4 28857 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvoamrwbenc.so 28856 +usr/lib/x86_64-linux-gnu/libvo-amrwbenc.so.0.0.4 28855 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvolume.so 28854 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvorbis.so 28853 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstvpx.so 28852 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavenc.so 28851 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavpack.so 28850 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwavparse.so 28849 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwaylandsink.so 28848 +usr/lib/x86_64-linux-gnu/libgstwayland-1.0.so.0.1804.0 28847 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebp.so 28846 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtc.so 28845 +usr/lib/x86_64-linux-gnu/libgstwebrtc-1.0.so.0.1804.0 28844 +usr/lib/x86_64-linux-gnu/libnice.so.10.9.0 28843 +usr/lib/x86_64-linux-gnu/libgupnp-igd-1.0.so.4.2.1 28842 +usr/lib/x86_64-linux-gnu/libgupnp-1.2.so.0.0.0 28841 +usr/lib/x86_64-linux-gnu/libgssdp-1.2.so.0.0.0 28840 +usr/share/tails/greeter/tails-greeter.py 28839 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwebrtcdsp.so 28838 +usr/lib/x86_64-linux-gnu/libwebrtc_audio_processing.so.1.0.0 28837 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstwildmidi.so 28836 +usr/lib/x86_64-linux-gnu/libWildMidi.so.2.1.0 28835 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx264.so 28834 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstx265.so 28833 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesink.so 28832 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstximagesrc.so 28831 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxingmux.so 28830 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstxvimagesink.so 28829 +usr/lib/x86_64-linux-gnu/libXv.so.1.0.0 28828 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4mdec.so 28827 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgsty4menc.so 28826 +usr/lib/x86_64-linux-gnu/gstreamer-1.0/libgstzbar.so 28825 +usr/lib/x86_64-linux-gnu/libzbar.so.0.3.0 28824 +usr/lib/python3.9/logging/config.py 28823 +usr/lib/python3.9/logging/handlers.py 28822 +usr/lib/python3/dist-packages/tailsgreeter/__init__.py 28821 +usr/lib/python3/dist-packages/tailsgreeter/errors.py 28820 +usr/lib/python3/dist-packages/tailsgreeter/greeter.py 28819 +usr/lib/python3.9/pathlib.py 28818 +usr/lib/python3.9/ntpath.py 28817 +usr/lib/python3/dist-packages/tailsgreeter/config.py 28816 +usr/lib/python3/dist-packages/tailsgreeter/gdmclient.py 28815 +usr/lib/python3/dist-packages/tailsgreeter/settings/__init__.py 28814 +usr/lib/python3/dist-packages/tailsgreeter/settings/localization.py 28813 +usr/lib/python3/dist-packages/pycountry/__init__.py 28812 +usr/lib/python3/dist-packages/pycountry/db.py 28811 +usr/lib/python3.9/json/__init__.py 28810 +usr/lib/python3.9/json/decoder.py 28809 +usr/lib/python3.9/json/scanner.py 28808 +usr/lib/python3.9/lib-dynload/_json.cpython-39-x86_64-linux-gnu.so 28807 +usr/lib/python3.9/json/encoder.py 28806 +usr/lib/python3/dist-packages/pkg_resources/__init__.py 28805 +usr/lib/python3.9/zipfile.py 28804 +usr/lib/python3.9/plistlib.py 28803 +usr/lib/python3.9/xml/__init__.py 28802 +usr/lib/python3.9/xml/parsers/__init__.py 28801 +usr/lib/python3.9/xml/parsers/expat.py 28800 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-playlist.so 28799 +usr/lib/python3/dist-packages/pkg_resources/extern/__init__.py 28798 +usr/lib/python3/dist-packages/pkg_resources/_vendor/__init__.py 28797 +usr/lib/python3/dist-packages/pkg_resources/_vendor/appdirs.py 28796 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__init__.py 28795 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/__about__.py 28794 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/version.py 28793 +usr/lib/x86_64-linux-gnu/libtotem-plparser.so.18.3.4 28792 usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_structures.py 28791 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_typing.py 28790 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 28789 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 28788 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/utils.py 28787 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 28786 -usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py 28785 -usr/lib/python3.9/pprint.py 28784 -usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 28783 -usr/lib/python3.9/sysconfig.py 28782 -usr/lib/python3/dist-packages/yarl-1.6.3.egg-info/PKG-INFO 28781 -usr/lib/python3/dist-packages/xdg-5.egg-info 28780 -usr/lib/python3/dist-packages/Werkzeug-1.0.1.egg-info/PKG-INFO 28779 -usr/lib/python3/dist-packages/urllib3-1.26.5.egg-info/PKG-INFO 28778 -usr/lib/python3/dist-packages/typing_extensions-3.7.4.3.egg-info/PKG-INFO 28777 -usr/lib/python3/dist-packages/trezor-0.12.2.egg-info/PKG-INFO 28776 -usr/lib/python3/dist-packages/tinyrpc-0.6.egg-info/PKG-INFO 28775 -usr/lib/python3/dist-packages/systemd_python-234.egg-info 28774 -usr/lib/python3/dist-packages/stem-1.8.0.egg-info 28773 -usr/lib/python3/dist-packages/six-1.16.0.egg-info/PKG-INFO 28772 -usr/lib/python3/dist-packages/sh-1.14.1.egg-info/PKG-INFO 28771 -usr/lib/python3/dist-packages/requests-2.25.1.egg-info/PKG-INFO 28770 -usr/lib/python3/dist-packages/reportlab-3.5.59.egg-info/PKG-INFO 28769 -usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO 28768 -usr/lib/python3/dist-packages/PyYAML-5.3.1.egg-info 28767 -usr/lib/python3/dist-packages/pyxdg-0.27.egg-info/PKG-INFO 28766 -usr/lib/python3/dist-packages/pyusb-1.0.2.egg-info/PKG-INFO 28765 -usr/lib/python3/dist-packages/pytz-2021.1.egg-info/PKG-INFO 28764 -usr/lib/python3/dist-packages/python_prctl-1.7.egg-info 28763 -usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO 28762 -usr/lib/python3/dist-packages/python_gnupg-0.4.6.egg-info/PKG-INFO 28761 -usr/lib/python3/dist-packages/python_apt-2.2.1.egg-info/PKG-INFO 28760 -usr/lib/python3/dist-packages/PySocks-1.7.1.egg-info/PKG-INFO 28759 -usr/lib/python3/dist-packages/pyserial-3.5b0.egg-info/PKG-INFO 28758 -usr/lib/python3/dist-packages/PyQt5_sip-12.8.1.egg-info/PKG-INFO 28757 -usr/lib/python3/dist-packages/PyPDF2-1.26.0.egg-info 28756 -usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info 28755 -usr/lib/python3/dist-packages/PyGObject-3.38.0.egg-info/PKG-INFO 28754 -usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO 28753 -usr/lib/python3/dist-packages/pycurl-7.43.0.6.egg-info 28752 -usr/lib/python3/dist-packages/pycups-2.0.1.egg-info 28751 -usr/lib/python3/dist-packages/pycryptodomex-3.9.7.egg-info/PKG-INFO 28750 -usr/lib/python3/dist-packages/pycountry-20.7.3.egg-info/PKG-INFO 28749 -usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info 28748 -usr/lib/python3/dist-packages/psutil-5.8.0.egg-info/PKG-INFO 28747 -usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/PKG-INFO 28746 -usr/lib/python3/dist-packages/Pillow-8.1.2.egg-info/PKG-INFO 28745 -usr/lib/python3/dist-packages/pexpect-4.8.0.egg-info 28744 -usr/lib/python3/dist-packages/onionshare-2.2.egg-info 28743 -usr/lib/python3/dist-packages/onioncircuits-0.7.egg-info 28742 -usr/lib/python3/dist-packages/mutagen-1.45.1.egg-info/PKG-INFO 28741 -usr/lib/python3/dist-packages/multidict-5.1.0.egg-info/PKG-INFO 28740 -usr/lib/python3/dist-packages/mnemonic-0.19.egg-info/PKG-INFO 28739 -usr/lib/python3/dist-packages/MarkupSafe-1.1.1.egg-info/PKG-INFO 28738 -usr/lib/python3/dist-packages/louis-3.16.0.egg-info 28737 -usr/lib/python3/dist-packages/libusb1-1.9.1.egg-info/PKG-INFO 28736 -usr/lib/python3/dist-packages/Jinja2-2.11.3.egg-info/PKG-INFO 28735 -usr/lib/python3/dist-packages/itsdangerous-1.1.0.egg-info/PKG-INFO 28734 -usr/lib/python3/dist-packages/idna-2.10.egg-info/PKG-INFO 28733 -usr/lib/python3/dist-packages/hidapi-0.9.0.post3.egg-info/PKG-INFO 28732 -usr/lib/python3/dist-packages/Flask-1.1.2.egg-info/PKG-INFO 28731 -usr/lib/python3/dist-packages/Flask_HTTPAuth-3.2.4.egg-info/PKG-INFO 28730 -usr/lib/python3/dist-packages/Electrum-4.0.9.egg-info/PKG-INFO 28729 -usr/lib/python3/dist-packages/ecdsa-0.16.1.egg-info/PKG-INFO 28728 -usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO 28727 -usr/lib/python3/dist-packages/dnspython-2.0.0.egg-info/PKG-INFO 28726 -usr/lib/python3/dist-packages/distro-1.5.0.egg-info/PKG-INFO 28725 -usr/lib/python3/dist-packages/diceware-0.9.6.egg-info/PKG-INFO 28724 -usr/lib/python3/dist-packages/dbus_python-1.2.16.egg-info/PKG-INFO 28723 -usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info 28722 -usr/lib/python3/dist-packages/cryptography-3.3.2.egg-info/PKG-INFO 28721 -usr/lib/python3/dist-packages/construct-2.10.58.egg-info/PKG-INFO 28720 -usr/lib/python3/dist-packages/colorama-0.4.4.egg-info/PKG-INFO 28719 -usr/lib/python3/dist-packages/click-7.1.2.egg-info/PKG-INFO 28718 -usr/lib/python3/dist-packages/chardet-4.0.0.egg-info/PKG-INFO 28717 -usr/lib/python3/dist-packages/certifi-2020.6.20.egg-info/PKG-INFO 28716 -usr/lib/python3/dist-packages/btchip_python-0.1.31.egg-info/PKG-INFO 28715 -usr/lib/python3/dist-packages/Brlapi-0.8.2.egg-info 28714 -usr/lib/python3/dist-packages/bookletimposer-0.3.egg-info 28713 -usr/lib/python3/dist-packages/bitstring-3.1.7.egg-info 28712 -usr/lib/python3/dist-packages/attrs-20.3.0.egg-info/PKG-INFO 28711 -usr/lib/python3/dist-packages/atomicwrites-1.4.0.egg-info/PKG-INFO 28710 -usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO 28709 -usr/lib/python3/dist-packages/aiorpcX-0.18.5.egg-info/PKG-INFO 28708 -usr/lib/python3/dist-packages/aiohttp-3.7.4.egg-info/PKG-INFO 28707 -usr/lib/python3/dist-packages/aiohttp_socks-0.5.3.egg-info/PKG-INFO 28706 -usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/namespace_packages.txt 28705 -usr/lib/python3/dist-packages/diceware-0.9.6.egg-info/namespace_packages.txt 28704 -usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py 28703 -usr/lib/python3/dist-packages/tailsgreeter/settings/utils.py 28702 -usr/lib/python3.9/shlex.py 28701 -usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 28700 -usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py 28699 -usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py 28698 -usr/lib/python3/dist-packages/tailsgreeter/settings/language.py 28697 -usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py 28696 -usr/lib/python3/dist-packages/tailsgreeter/settings/setting.py 28695 -usr/lib/python3/dist-packages/tailsgreeter/settings/network.py 28694 -usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py 28693 -usr/lib/python3/dist-packages/tps/__init__.py 28692 -usr/lib/x86_64-linux-gnu/girepository-1.0/UDisks-2.0.typelib 28691 -usr/lib/python3/dist-packages/tps/dbus/__init__.py 28690 -usr/lib/python3/dist-packages/tps/dbus/errors.py 28689 -usr/lib/python3/dist-packages/tailsgreeter/settings/persistent_storage_create.py 28688 -usr/lib/python3/dist-packages/tailsgreeter/settings/unsafe_browser.py 28687 -usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py 28686 -usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py 28685 -usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 28684 -usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py 28683 -usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py 28682 -usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py 28681 -usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 28680 -usr/lib/python3/dist-packages/tailsgreeter/ui/message_dialog.py 28679 -usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py 28678 -usr/lib/python3.9/webbrowser.py 28677 -usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib 28676 -usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 28675 -usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py 28674 -usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py 28673 -usr/lib/python3/dist-packages/sh.py 28672 -usr/lib/python3.9/pty.py 28671 -usr/lib/python3.9/tty.py 28670 -usr/lib/x86_64-linux-gnu/girepository-1.0/Handy-1.typelib 28669 -usr/lib/x86_64-linux-gnu/libhandy-1.so.0 28668 -usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 28667 -usr/lib/python3.9/configparser.py 28666 -usr/share/tails/greeter/tails-logging.conf 28665 -lib/systemd/system/tails-persistent-storage.service 28664 +usr/lib/x86_64-linux-gnu/tracker-miners-2.0/extract-modules/libextract-text.so 28790 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_typing.py 28789 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/specifiers.py 28788 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/_compat.py 28787 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/utils.py 28786 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/requirements.py 28785 +usr/lib/python3/dist-packages/pkg_resources/_vendor/pyparsing.py 28784 +usr/lib/python3.9/pprint.py 28783 +usr/lib/python3/dist-packages/pkg_resources/_vendor/packaging/markers.py 28782 +usr/lib/python3.9/sysconfig.py 28781 +usr/lib/python3/dist-packages/yarl-1.6.3.egg-info/PKG-INFO 28780 +usr/lib/python3/dist-packages/xdg-5.egg-info 28779 +usr/lib/python3/dist-packages/Werkzeug-1.0.1.egg-info/PKG-INFO 28778 +usr/lib/python3/dist-packages/urllib3-1.26.5.egg-info/PKG-INFO 28777 +usr/lib/python3/dist-packages/typing_extensions-3.7.4.3.egg-info/PKG-INFO 28776 +usr/lib/python3/dist-packages/trezor-0.12.2.egg-info/PKG-INFO 28775 +usr/lib/python3/dist-packages/tinyrpc-0.6.egg-info/PKG-INFO 28774 +usr/lib/python3/dist-packages/systemd_python-234.egg-info 28773 +usr/lib/python3/dist-packages/stem-1.8.0.egg-info 28772 +usr/lib/python3/dist-packages/six-1.16.0.egg-info/PKG-INFO 28771 +usr/lib/python3/dist-packages/sh-1.14.1.egg-info/PKG-INFO 28770 +usr/lib/python3/dist-packages/requests-2.25.1.egg-info/PKG-INFO 28769 +usr/lib/python3/dist-packages/reportlab-3.5.59.egg-info/PKG-INFO 28768 +usr/lib/python3/dist-packages/qrcode-6.1.egg-info/PKG-INFO 28767 +usr/lib/python3/dist-packages/PyYAML-5.3.1.egg-info 28766 +usr/lib/python3/dist-packages/pyxdg-0.27.egg-info/PKG-INFO 28765 +usr/lib/python3/dist-packages/pyusb-1.0.2.egg-info/PKG-INFO 28764 +usr/lib/python3/dist-packages/pytz-2021.1.egg-info/PKG-INFO 28763 +usr/lib/python3/dist-packages/python_prctl-1.7.egg-info 28762 +usr/lib/python3/dist-packages/python_pam-1.8.4.egg-info/PKG-INFO 28761 +usr/lib/python3/dist-packages/python_gnupg-0.4.6.egg-info/PKG-INFO 28760 +usr/lib/python3/dist-packages/python_apt-2.2.1.egg-info/PKG-INFO 28759 +usr/lib/python3/dist-packages/PySocks-1.7.1.egg-info/PKG-INFO 28758 +usr/lib/python3/dist-packages/pyserial-3.5b0.egg-info/PKG-INFO 28757 +usr/lib/python3/dist-packages/PyQt5_sip-12.8.1.egg-info/PKG-INFO 28756 +usr/lib/python3/dist-packages/PyPDF2-1.26.0.egg-info 28755 +usr/lib/python3/dist-packages/pyinotify-0.9.6.egg-info 28754 +usr/lib/python3/dist-packages/PyGObject-3.38.0.egg-info/PKG-INFO 28753 +usr/lib/python3/dist-packages/pydbus-0.6.0.egg-info/PKG-INFO 28752 +usr/lib/python3/dist-packages/pycurl-7.43.0.6.egg-info 28751 +usr/lib/python3/dist-packages/pycups-2.0.1.egg-info 28750 +usr/lib/python3/dist-packages/pycryptodomex-3.9.7.egg-info/PKG-INFO 28749 +usr/lib/python3/dist-packages/pycountry-20.7.3.egg-info/PKG-INFO 28748 +usr/lib/python3/dist-packages/pycairo-1.16.2.egg-info 28747 +usr/lib/python3/dist-packages/psutil-5.8.0.egg-info/PKG-INFO 28746 +usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/PKG-INFO 28745 +usr/lib/python3/dist-packages/Pillow-8.1.2.egg-info/PKG-INFO 28744 +usr/lib/python3/dist-packages/pexpect-4.8.0.egg-info 28743 +usr/lib/python3/dist-packages/onionshare-2.2.egg-info 28742 +usr/lib/python3/dist-packages/onioncircuits-0.7.egg-info 28741 +usr/lib/python3/dist-packages/mutagen-1.45.1.egg-info/PKG-INFO 28740 +usr/lib/python3/dist-packages/multidict-5.1.0.egg-info/PKG-INFO 28739 +usr/lib/python3/dist-packages/mnemonic-0.19.egg-info/PKG-INFO 28738 +usr/lib/python3/dist-packages/MarkupSafe-1.1.1.egg-info/PKG-INFO 28737 +usr/lib/python3/dist-packages/louis-3.16.0.egg-info 28736 +usr/lib/python3/dist-packages/libusb1-1.9.1.egg-info/PKG-INFO 28735 +usr/lib/python3/dist-packages/Jinja2-2.11.3.egg-info/PKG-INFO 28734 +usr/lib/python3/dist-packages/itsdangerous-1.1.0.egg-info/PKG-INFO 28733 +usr/lib/python3/dist-packages/idna-2.10.egg-info/PKG-INFO 28732 +usr/lib/python3/dist-packages/hidapi-0.9.0.post3.egg-info/PKG-INFO 28731 +usr/lib/python3/dist-packages/Flask-1.1.2.egg-info/PKG-INFO 28730 +usr/lib/python3/dist-packages/Flask_HTTPAuth-3.2.4.egg-info/PKG-INFO 28729 +usr/lib/python3/dist-packages/Electrum-4.0.9.egg-info/PKG-INFO 28728 +usr/lib/python3/dist-packages/ecdsa-0.16.1.egg-info/PKG-INFO 28727 +usr/lib/python3/dist-packages/dogtail-0.9.11.egg-info/PKG-INFO 28726 +usr/lib/python3/dist-packages/dnspython-2.0.0.egg-info/PKG-INFO 28725 +usr/lib/python3/dist-packages/distro-1.5.0.egg-info/PKG-INFO 28724 +usr/lib/python3/dist-packages/diceware-0.9.6.egg-info/PKG-INFO 28723 +usr/lib/python3/dist-packages/dbus_python-1.2.16.egg-info/PKG-INFO 28722 +usr/lib/python3/dist-packages/cupshelpers-1.0.egg-info 28721 +usr/lib/python3/dist-packages/cryptography-3.3.2.egg-info/PKG-INFO 28720 +usr/lib/python3/dist-packages/construct-2.10.58.egg-info/PKG-INFO 28719 +usr/lib/python3/dist-packages/colorama-0.4.4.egg-info/PKG-INFO 28718 +usr/lib/python3/dist-packages/click-7.1.2.egg-info/PKG-INFO 28717 +usr/lib/python3/dist-packages/chardet-4.0.0.egg-info/PKG-INFO 28716 +usr/lib/python3/dist-packages/certifi-2020.6.20.egg-info/PKG-INFO 28715 +usr/lib/python3/dist-packages/btchip_python-0.1.31.egg-info/PKG-INFO 28714 +usr/lib/python3/dist-packages/Brlapi-0.8.2.egg-info 28713 +usr/lib/python3/dist-packages/bookletimposer-0.3.egg-info 28712 +usr/lib/python3/dist-packages/bitstring-3.1.7.egg-info 28711 +usr/lib/python3/dist-packages/attrs-20.3.0.egg-info/PKG-INFO 28710 +usr/lib/python3/dist-packages/atomicwrites-1.4.0.egg-info/PKG-INFO 28709 +usr/lib/python3/dist-packages/async_timeout-3.0.1.egg-info/PKG-INFO 28708 +usr/lib/python3/dist-packages/aiorpcX-0.18.5.egg-info/PKG-INFO 28707 +usr/lib/python3/dist-packages/aiohttp-3.7.4.egg-info/PKG-INFO 28706 +usr/lib/python3/dist-packages/aiohttp_socks-0.5.3.egg-info/PKG-INFO 28705 +usr/lib/python3/dist-packages/protobuf-3.12.4.egg-info/namespace_packages.txt 28704 +usr/lib/python3/dist-packages/diceware-0.9.6.egg-info/namespace_packages.txt 28703 +usr/lib/python3/dist-packages/tailsgreeter/settings/admin.py 28702 +usr/lib/python3/dist-packages/tailsgreeter/settings/utils.py 28701 +usr/lib/python3.9/shlex.py 28700 +usr/lib/python3/dist-packages/tailsgreeter/settings/localization_settings.py 28699 +usr/lib/python3/dist-packages/tailsgreeter/settings/formats.py 28698 +usr/lib/python3/dist-packages/tailsgreeter/settings/keyboard.py 28697 +usr/lib/python3/dist-packages/tailsgreeter/settings/language.py 28696 +usr/lib/python3/dist-packages/tailsgreeter/settings/macspoof.py 28695 +usr/lib/python3/dist-packages/tailsgreeter/settings/setting.py 28694 +usr/lib/python3/dist-packages/tailsgreeter/settings/network.py 28693 +usr/lib/python3/dist-packages/tailsgreeter/settings/persistence.py 28692 +usr/lib/python3/dist-packages/tps/__init__.py 28691 +usr/lib/x86_64-linux-gnu/girepository-1.0/UDisks-2.0.typelib 28690 +usr/lib/python3/dist-packages/tps/dbus/__init__.py 28689 +usr/lib/python3/dist-packages/tps/dbus/errors.py 28688 +usr/lib/python3/dist-packages/tailsgreeter/settings/persistent_storage_create.py 28687 +usr/lib/python3/dist-packages/tailsgreeter/settings/unsafe_browser.py 28686 +usr/lib/python3/dist-packages/tailsgreeter/translatable_window.py 28685 +usr/lib/python3/dist-packages/tailsgreeter/ui/__init__.py 28684 +usr/lib/python3/dist-packages/tailsgreeter/ui/additional_settings.py 28683 +usr/lib/python3/dist-packages/tailsgreeter/ui/setting.py 28682 +usr/lib/python3/dist-packages/tailsgreeter/ui/popover.py 28681 +usr/lib/python3/dist-packages/tailsgreeter/ui/main_window.py 28680 +usr/lib/python3/dist-packages/tailsgreeter/ui/add_settings_dialog.py 28679 +usr/lib/python3/dist-packages/tailsgreeter/ui/message_dialog.py 28678 +usr/lib/python3/dist-packages/tailsgreeter/ui/help_window.py 28677 +usr/lib/python3.9/webbrowser.py 28676 +usr/lib/x86_64-linux-gnu/girepository-1.0/WebKit2-4.0.typelib 28675 +usr/lib/x86_64-linux-gnu/girepository-1.0/JavaScriptCore-4.0.typelib 28674 +usr/lib/python3/dist-packages/tailsgreeter/ui/region_settings.py 28673 +usr/lib/python3/dist-packages/tailsgreeter/ui/persistent_storage.py 28672 +usr/lib/python3/dist-packages/sh.py 28671 +usr/lib/python3.9/pty.py 28670 +usr/lib/python3.9/tty.py 28669 +usr/lib/x86_64-linux-gnu/girepository-1.0/Handy-1.typelib 28668 +usr/lib/x86_64-linux-gnu/libhandy-1.so.0 28667 +usr/lib/python3/dist-packages/tailsgreeter/ui/settings_collection.py 28666 +usr/lib/python3.9/configparser.py 28665 +usr/share/tails/greeter/tails-logging.conf 28664 +lib/systemd/system/tails-persistent-storage.service 28663 usr/local/lib/persistent-storage/pre-start 28661 -bin/mountpoint 28660 lib/systemd/systemd-update-utmp 28658 -usr/local/lib/tpsd 28656 -usr/lib/python3/dist-packages/tps/logging.py 28623 -usr/lib/python3/dist-packages/tps/service.py 28622 -usr/lib/python3/dist-packages/tps/executil.py 28621 -usr/lib/python3/dist-packages/tps/configuration/__init__.py 28620 -usr/lib/python3/dist-packages/tps/configuration/features.py 28619 -usr/lib/python3/dist-packages/tps/configuration/conflicting_app.py 28614 -usr/lib/python3/dist-packages/tps/configuration/binding.py 28607 -usr/lib/python3/dist-packages/tailslib/__init__.py 28605 -usr/lib/python3/dist-packages/tps/mountutil.py 28604 -usr/lib/python3/dist-packages/tps/configuration/feature.py 28603 -usr/lib/python3/dist-packages/tps/dbus/object.py 28602 -usr/lib/python3.9/cProfile.py 28601 -usr/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so 28599 -usr/lib/python3.9/profile.py 28598 -usr/lib/python3.9/pstats.py 28596 -usr/lib/python3.9/dataclasses.py 28594 -usr/lib/python3/dist-packages/tps/job.py 28591 -usr/lib/python3/dist-packages/tps/configuration/config_file.py 28590 -usr/lib/python3/dist-packages/tps/device.py 28589 -usr/share/tails/greeter/supported_locales 28588 -usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 28587 -usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 28586 -usr/share/tails/greeter/setting.ui 28585 -usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 28584 -usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 28583 -usr/share/locale/my/LC_MESSAGES/iso_3166-1.mo 28582 -usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 28581 -usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 28580 -usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 28579 -usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 28578 -usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 28577 -usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 28576 -usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 28575 -usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 28574 -usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 28573 -usr/share/locale/hr/LC_MESSAGES/iso_639-2.mo 28572 -usr/share/locale/hr/LC_MESSAGES/iso_3166-1.mo 28571 -usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 28570 -usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 28569 -usr/share/locale/da/LC_MESSAGES/iso_639-2.mo 28568 -usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo 28567 -usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 28566 -usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 28565 -usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 28564 -usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 28563 -usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 28562 -usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 28561 -usr/share/locale/ka/LC_MESSAGES/iso_3166-1.mo 28560 -usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 28559 -usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 28558 -usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 28557 -usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 28556 -usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 28555 -usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 28554 -usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 28553 -usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 28552 -usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 28551 -usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 28550 -usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 28549 -usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 28548 -usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 28547 -usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 28546 -usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 28544 -usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 28543 -usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 28542 -usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 28541 -usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 28540 -usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 28539 -usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 28538 -usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 28537 -usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo 28536 -usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 28535 -usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 28534 -usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 28533 -usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 28532 -usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 28531 -usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 28530 -usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 28529 -usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 28528 -usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 28527 -usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 28526 -usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 28525 -usr/share/tails/greeter/region_settings.ui 28524 -usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 28523 -usr/share/tails/greeter/additional_settings.ui 28522 -usr/share/locale/en_US/LC_MESSAGES/tails.mo 28521 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 28520 -usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-wayland.so 28519 -usr/share/tails/greeter/greeter.css 28518 -usr/share/tails/greeter/main.ui 28517 -usr/share/iso-codes/json/iso_639-3.json 28516 -usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 28514 -usr/share/icons/hicolor/scalable/actions/tails-help.svg 28513 -usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 28512 -usr/share/icons/hicolor/scalable/actions/tails-language.svg 28511 -usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 28510 -usr/share/icons/hicolor/scalable/actions/tails-formats.svg 28509 -usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 28508 -etc/pam.d/gdm-password 28505 -lib/x86_64-linux-gnu/security/pam_succeed_if.so 28504 -lib/systemd/system/user@1000.service.d/timeout.conf 28500 -etc/gdm3/PostLogin/Default 28476 -etc/live/config.d/username.conf 28466 -usr/bin/localectl 28465 -usr/share/systemd/language-fallback-map 28462 -etc/dconf/db/ibus.d/00-upstream-settings 28456 -etc/dconf/db/local.d/00_Tails_defaults 28451 -usr/local/lib/tails-unblock-network 28444 -usr/local/lib/tails-shell-library/tails-greeter.sh 28443 -lib/systemd/system/tails-unblock-network.service 28442 -bin/sync 28440 -lib/systemd/network/99-default.link 28439 -lib/systemd/network/73-usb-net-by-mac.link 28438 -etc/udev/rules.d/00-mac-spoof.rules 28437 -lib/udev/rules.d/39-usbmuxd.rules 28436 -lib/udev/rules.d/40-usb_modeswitch.rules 28435 -lib/udev/rules.d/50-firmware.rules 28434 -lib/udev/rules.d/50-udev-default.rules 28433 -lib/udev/rules.d/55-dm.rules 28432 -lib/udev/rules.d/56-hpmud.rules 28431 -lib/udev/rules.d/56-lvm.rules 28430 -lib/udev/rules.d/60-autosuspend.rules 28429 -lib/udev/rules.d/60-block.rules 28428 -lib/udev/rules.d/60-cdrom_id.rules 28427 -lib/udev/rules.d/60-crda.rules 28426 -lib/udev/rules.d/60-drm.rules 28425 -lib/udev/rules.d/60-evdev.rules 28424 -lib/udev/rules.d/60-fido-id.rules 28423 -lib/udev/rules.d/60-gobi-loader.rules 28422 -lib/udev/rules.d/60-input-id.rules 28421 -lib/udev/rules.d/60-libgphoto2-6.rules 28420 -lib/udev/rules.d/60-libopenni2-0.rules 28419 -lib/udev/rules.d/60-libsane1.rules 28418 -lib/udev/rules.d/60-open-vm-tools.rules 28417 -lib/udev/rules.d/60-persistent-alsa.rules 28416 -lib/udev/rules.d/60-persistent-input.rules 28415 -lib/udev/rules.d/60-persistent-storage-dm.rules 28414 -lib/udev/rules.d/60-persistent-storage-tape.rules 28413 -lib/udev/rules.d/60-persistent-storage.rules 28412 -lib/udev/rules.d/60-persistent-v4l.rules 28411 -lib/udev/rules.d/60-python3-btchip.rules 28410 -lib/udev/rules.d/60-scdaemon.rules 28409 -lib/udev/rules.d/60-sensor.rules 28408 -lib/udev/rules.d/60-serial.rules 28407 -lib/udev/rules.d/60-trezor.rules 28406 -lib/udev/rules.d/61-gdm.rules 28405 -lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 28404 -lib/udev/rules.d/61-mutter.rules 28403 -lib/udev/rules.d/64-btrfs.rules 28402 -lib/udev/rules.d/65-libwacom.rules 28401 -lib/udev/rules.d/66-bilibop.rules 28400 -lib/udev/rules.d/69-cd-sensors.rules 28399 -lib/udev/rules.d/69-libmtp.rules 28398 -lib/udev/rules.d/69-lvm-metad.rules 28397 -lib/udev/rules.d/70-joystick.rules 28396 -lib/udev/rules.d/70-mouse.rules 28395 -lib/udev/rules.d/70-power-switch.rules 28394 -etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 28393 -lib/udev/rules.d/70-spice-vdagentd.rules 28392 -lib/udev/rules.d/70-touchpad.rules 28391 -lib/udev/rules.d/70-uaccess.rules 28390 -lib/udev/rules.d/71-ipp-usb.rules 28389 -lib/udev/rules.d/71-seat.rules 28388 -lib/udev/rules.d/73-seat-late.rules 28387 -lib/udev/rules.d/73-special-net-names.rules 28386 -lib/udev/rules.d/75-net-description.rules 28385 -lib/udev/rules.d/75-probe_mtd.rules 28384 -lib/udev/rules.d/77-mm-broadmobi-port-types.rules 28383 -lib/udev/rules.d/77-mm-cinterion-port-types.rules 28382 -lib/udev/rules.d/77-mm-dell-port-types.rules 28381 -lib/udev/rules.d/77-mm-dlink-port-types.rules 28380 -lib/udev/rules.d/77-mm-ericsson-mbm.rules 28379 -lib/udev/rules.d/77-mm-fibocom-port-types.rules 28378 -lib/udev/rules.d/77-mm-foxconn-port-types.rules 28377 -lib/udev/rules.d/77-mm-haier-port-types.rules 28376 -lib/udev/rules.d/77-mm-huawei-net-port-types.rules 28375 -lib/udev/rules.d/77-mm-longcheer-port-types.rules 28374 -lib/udev/rules.d/77-mm-mtk-port-types.rules 28373 -lib/udev/rules.d/77-mm-nokia-port-types.rules 28372 -lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 28371 -lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 28370 -lib/udev/rules.d/77-mm-quectel-port-types.rules 28369 -lib/udev/rules.d/77-mm-sierra.rules 28368 -lib/udev/rules.d/77-mm-simtech-port-types.rules 28367 -lib/udev/rules.d/77-mm-telit-port-types.rules 28366 -lib/udev/rules.d/77-mm-tplink-port-types.rules 28365 -lib/udev/rules.d/77-mm-ublox-port-types.rules 28364 -lib/udev/rules.d/77-mm-usb-device-blacklist.rules 28363 -lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 28362 -lib/udev/rules.d/77-mm-x22x-port-types.rules 28361 -lib/udev/rules.d/77-mm-zte-port-types.rules 28360 -lib/udev/rules.d/78-sound-card.rules 28319 -lib/udev/rules.d/80-debian-compat.rules 28318 -lib/udev/rules.d/80-drivers.rules 28317 -lib/udev/rules.d/80-ifupdown.rules 28316 -lib/udev/rules.d/80-libinput-device-groups.rules 28315 -lib/udev/rules.d/80-mm-candidate.rules 28314 -lib/udev/rules.d/80-udisks2.rules 28313 -lib/udev/rules.d/84-nm-drivers.rules 28312 -lib/udev/rules.d/85-hdparm.rules 28311 -usr/lib/udev/rules.d/85-hwclock.rules 28310 -etc/udev/rules.d/85-nm-unmanage-veth.rules 28309 -lib/udev/rules.d/85-nm-unmanaged.rules 28308 -lib/udev/rules.d/85-regulatory.rules 28307 -lib/udev/rules.d/90-alsa-restore.rules 28306 -lib/udev/rules.d/90-bolt.rules 28305 -lib/udev/rules.d/90-console-setup.rules 28304 -lib/udev/rules.d/90-iphone-tether.rules 28303 -lib/udev/rules.d/90-libinput-fuzz-override.rules 28302 -lib/udev/rules.d/90-nm-thunderbolt.rules 28301 -lib/udev/rules.d/90-pipewire-alsa.rules 28300 -lib/udev/rules.d/90-pulseaudio.rules 28299 -lib/udev/rules.d/92-libccid.rules 28298 -lib/udev/rules.d/95-cd-devices.rules 28297 -lib/udev/rules.d/95-dm-notify.rules 28296 -lib/udev/rules.d/95-upower-csr.rules 28295 -lib/udev/rules.d/95-upower-hid.rules 28294 -lib/udev/rules.d/95-upower-hidpp.rules 28293 -lib/udev/rules.d/95-upower-wup.rules 28292 -lib/udev/rules.d/96-e2scrub.rules 28291 -etc/udev/rules.d/99-hide-TailsData.rules 28290 -lib/udev/rules.d/99-laptop-mode.rules 28289 -lib/udev/rules.d/99-libsane1.rules 28288 -etc/udev/rules.d/99-make-removable-devices-user-writable.rules 28287 -lib/udev/rules.d/99-systemd.rules 28286 -lib/udev/rules.d/99-vmware-scsi-udev.rules 28285 -usr/libexec/gnome-session-failed 28205 -lib/udev/libinput-device-group 28146 -lib/systemd/system/systemd-udev-settle.service 28113 -lib/udev/lmt-udev 28055 -lib/udev/ata_id 27979 -usr/lib/udev/hwclock-set 27953 -lib/udev/hdparm 27951 -lib/hdparm/hdparm-functions 27947 -etc/hdparm.conf 27945 -lib/udev/libinput-fuzz-extract 27944 -sbin/on_ac_power 27943 -lib/udev/libinput-fuzz-to-zero 27850 -usr/lib/pm-utils/power.d/95hdparm-apm 27846 -etc/console-setup/cached_setup_terminal.sh 27792 -etc/console-setup/cached_setup_font.sh 27788 -bin/setfont 27787 -usr/share/consolefonts/Uni1-Fixed16.psf.gz 27783 -lib/modules/6.1.0-11-amd64/kernel/lib/crypto/libarc4.ko 27763 -usr/local/lib/tails-spoof-mac 27754 -usr/local/lib/tails-shell-library/hardware.sh 27752 -usr/local/lib/tails-shell-library/log.sh 27751 -usr/bin/gettext.sh 27750 -usr/bin/macchanger 27749 -usr/share/macchanger/OUI.list 27748 -usr/share/macchanger/wireless.list 27746 -lib/crda/setregdomain 27731 -etc/default/crda 27730 -lib/systemd/systemd-rfkill 27727 -usr/libexec/bilibop/test 27704 -usr/lib/bilibop/common.sh 27703 -bin/df 27702 -usr/lib/systemd/user/gvfs-metadata.service 27701 +bin/mountpoint 28657 +usr/local/lib/tpsd 28655 +usr/lib/python3/dist-packages/tps/logging.py 28622 +usr/lib/python3/dist-packages/tps/service.py 28621 +usr/lib/python3/dist-packages/tps/executil.py 28620 +usr/lib/python3/dist-packages/tps/configuration/__init__.py 28619 +usr/lib/python3/dist-packages/tps/configuration/features.py 28618 +usr/lib/python3/dist-packages/tps/configuration/conflicting_app.py 28613 +usr/lib/python3/dist-packages/tps/configuration/binding.py 28606 +usr/lib/python3/dist-packages/tailslib/__init__.py 28604 +usr/lib/python3/dist-packages/tps/mountutil.py 28603 +usr/lib/python3/dist-packages/tps/configuration/feature.py 28602 +usr/lib/python3/dist-packages/tps/dbus/object.py 28601 +usr/lib/python3.9/cProfile.py 28600 +usr/lib/python3.9/lib-dynload/_lsprof.cpython-39-x86_64-linux-gnu.so 28598 +usr/lib/python3.9/profile.py 28597 +usr/lib/python3.9/pstats.py 28595 +usr/lib/python3.9/dataclasses.py 28593 +usr/lib/python3/dist-packages/tps/job.py 28590 +usr/lib/python3/dist-packages/tps/configuration/config_file.py 28589 +usr/lib/python3/dist-packages/tps/device.py 28588 +usr/share/tails/greeter/supported_locales 28583 +usr/share/locale/hi/LC_MESSAGES/iso_639-2.mo 28582 +usr/share/locale/fa/LC_MESSAGES/iso_639-2.mo 28581 +usr/share/tails/greeter/setting.ui 28580 +usr/share/locale/ar/LC_MESSAGES/iso_639-2.mo 28579 +usr/share/locale/ar/LC_MESSAGES/iso_3166-1.mo 28578 +usr/share/locale/my/LC_MESSAGES/iso_3166-1.mo 28577 +usr/share/locale/ca/LC_MESSAGES/iso_639-2.mo 28576 +usr/share/locale/ca/LC_MESSAGES/iso_3166-1.mo 28575 +usr/share/locale/km/LC_MESSAGES/iso_3166-1.mo 28574 +usr/share/locale/zh_CN/LC_MESSAGES/iso_639-2.mo 28573 +usr/share/locale/zh_CN/LC_MESSAGES/iso_3166-1.mo 28572 +usr/share/locale/zh_HK/LC_MESSAGES/iso_639-2.mo 28571 +usr/share/locale/zh_HK/LC_MESSAGES/iso_3166-1.mo 28570 +usr/share/locale/zh_TW/LC_MESSAGES/iso_639-2.mo 28569 +usr/share/locale/zh_TW/LC_MESSAGES/iso_3166-1.mo 28568 +usr/share/locale/hr/LC_MESSAGES/iso_639-2.mo 28567 +usr/share/locale/hr/LC_MESSAGES/iso_3166-1.mo 28566 +usr/share/locale/cs/LC_MESSAGES/iso_639-2.mo 28565 +usr/share/locale/cs/LC_MESSAGES/iso_3166-1.mo 28564 +usr/share/locale/da/LC_MESSAGES/iso_639-2.mo 28563 +usr/share/locale/da/LC_MESSAGES/iso_3166-1.mo 28562 +usr/share/locale/nl/LC_MESSAGES/iso_639-2.mo 28561 +usr/share/locale/nl/LC_MESSAGES/iso_3166-1.mo 28560 +usr/share/locale/fi/LC_MESSAGES/iso_639-2.mo 28559 +usr/share/locale/fi/LC_MESSAGES/iso_3166-1.mo 28558 +usr/share/locale/fr/LC_MESSAGES/iso_639-2.mo 28557 +usr/share/locale/fr/LC_MESSAGES/iso_3166-1.mo 28556 +usr/share/locale/ka/LC_MESSAGES/iso_3166-1.mo 28555 +usr/share/locale/de/LC_MESSAGES/iso_639-2.mo 28554 +usr/share/locale/de/LC_MESSAGES/iso_3166-1.mo 28553 +usr/share/locale/el/LC_MESSAGES/iso_639-2.mo 28551 +usr/share/locale/el/LC_MESSAGES/iso_3166-1.mo 28550 +usr/share/locale/he/LC_MESSAGES/iso_639-2.mo 28549 +usr/share/locale/he/LC_MESSAGES/iso_3166-1.mo 28548 +usr/share/locale/hu/LC_MESSAGES/iso_639-2.mo 28547 +usr/share/locale/hu/LC_MESSAGES/iso_3166-1.mo 28546 +usr/share/locale/id/LC_MESSAGES/iso_639-2.mo 28545 +usr/share/locale/id/LC_MESSAGES/iso_3166-1.mo 28544 +usr/share/locale/ga/LC_MESSAGES/iso_639-2.mo 28543 +usr/share/locale/ga/LC_MESSAGES/iso_3166-1.mo 28542 +usr/share/locale/it/LC_MESSAGES/iso_639-2.mo 28541 +usr/share/locale/it/LC_MESSAGES/iso_3166-1.mo 28540 +usr/share/locale/lt/LC_MESSAGES/iso_639-2.mo 28539 +usr/share/locale/lt/LC_MESSAGES/iso_3166-1.mo 28538 +usr/share/locale/mk/LC_MESSAGES/iso_639-2.mo 28537 +usr/share/locale/mk/LC_MESSAGES/iso_3166-1.mo 28536 +usr/share/locale/pt_BR/LC_MESSAGES/iso_639-2.mo 28535 +usr/share/locale/pt_BR/LC_MESSAGES/iso_3166-1.mo 28534 +usr/share/locale/pt/LC_MESSAGES/iso_639-2.mo 28533 +usr/share/locale/pt/LC_MESSAGES/iso_3166-1.mo 28532 +usr/share/locale/ro/LC_MESSAGES/iso_639-2.mo 28531 +usr/share/locale/ro/LC_MESSAGES/iso_3166-1.mo 28530 +usr/share/locale/ru/LC_MESSAGES/iso_639-2.mo 28529 +usr/share/locale/ru/LC_MESSAGES/iso_3166-1.mo 28528 +usr/share/locale/es/LC_MESSAGES/iso_639-2.mo 28527 +usr/share/locale/es/LC_MESSAGES/iso_3166-1.mo 28526 +usr/share/locale/sv/LC_MESSAGES/iso_639-2.mo 28525 +usr/share/locale/sv/LC_MESSAGES/iso_3166-1.mo 28524 +usr/share/locale/tr/LC_MESSAGES/iso_639-2.mo 28523 +usr/share/locale/tr/LC_MESSAGES/iso_3166-1.mo 28522 +usr/share/locale/fa/LC_MESSAGES/iso_3166-1.mo 28521 +usr/share/locale/hi/LC_MESSAGES/iso_3166-1.mo 28520 +usr/share/tails/greeter/region_settings.ui 28519 +usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES 28518 +usr/share/tails/greeter/additional_settings.ui 28517 +usr/share/locale/en_US/LC_MESSAGES/tails.mo 28516 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache 28515 +usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules/im-wayland.so 28514 +usr/share/tails/greeter/greeter.css 28513 +usr/share/tails/greeter/main.ui 28512 +usr/share/iso-codes/json/iso_639-3.json 28511 +usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf 28509 +usr/share/icons/hicolor/scalable/actions/tails-help.svg 28508 +usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so 28507 +usr/share/icons/hicolor/scalable/actions/tails-language.svg 28506 +usr/share/icons/hicolor/scalable/actions/tails-keyboard-layout.svg 28505 +usr/share/icons/hicolor/scalable/actions/tails-formats.svg 28504 +usr/share/icons/Adwaita/16x16/actions/list-add-symbolic.symbolic.png 28503 +etc/pam.d/gdm-password 28500 +lib/x86_64-linux-gnu/security/pam_succeed_if.so 28499 +lib/systemd/system/user@1000.service.d/timeout.conf 28495 +etc/gdm3/PostLogin/Default 28471 +etc/live/config.d/username.conf 28461 +usr/bin/localectl 28459 +usr/share/systemd/language-fallback-map 28451 +etc/dconf/db/ibus.d/00-upstream-settings 28445 +etc/dconf/db/local.d/00_Tails_defaults 28442 +usr/local/lib/tails-unblock-network 28439 +usr/local/lib/tails-shell-library/tails-greeter.sh 28438 +lib/systemd/system/tails-unblock-network.service 28437 +bin/sync 28435 +lib/systemd/network/99-default.link 28434 +lib/systemd/network/73-usb-net-by-mac.link 28433 +etc/udev/rules.d/00-mac-spoof.rules 28432 +lib/udev/rules.d/39-usbmuxd.rules 28431 +lib/udev/rules.d/40-usb_modeswitch.rules 28430 +lib/udev/rules.d/50-firmware.rules 28429 +lib/udev/rules.d/50-udev-default.rules 28428 +lib/udev/rules.d/55-dm.rules 28427 +lib/udev/rules.d/56-hpmud.rules 28426 +lib/udev/rules.d/56-lvm.rules 28425 +lib/udev/rules.d/60-autosuspend.rules 28424 +lib/udev/rules.d/60-block.rules 28423 +lib/udev/rules.d/60-cdrom_id.rules 28422 +lib/udev/rules.d/60-crda.rules 28421 +lib/udev/rules.d/60-drm.rules 28420 +lib/udev/rules.d/60-evdev.rules 28419 +lib/udev/rules.d/60-fido-id.rules 28418 +lib/udev/rules.d/60-gobi-loader.rules 28417 +lib/udev/rules.d/60-input-id.rules 28416 +lib/udev/rules.d/60-libgphoto2-6.rules 28415 +lib/udev/rules.d/60-libopenni2-0.rules 28414 +lib/udev/rules.d/60-libsane1.rules 28413 +lib/udev/rules.d/60-open-vm-tools.rules 28412 +lib/udev/rules.d/60-persistent-alsa.rules 28411 +lib/udev/rules.d/60-persistent-input.rules 28410 +lib/udev/rules.d/60-persistent-storage-dm.rules 28409 +lib/udev/rules.d/60-persistent-storage-tape.rules 28408 +lib/udev/rules.d/60-persistent-storage.rules 28407 +lib/udev/rules.d/60-persistent-v4l.rules 28406 +lib/udev/rules.d/60-python3-btchip.rules 28405 +lib/udev/rules.d/60-scdaemon.rules 28404 +lib/udev/rules.d/60-sensor.rules 28403 +lib/udev/rules.d/60-serial.rules 28402 +lib/udev/rules.d/60-trezor.rules 28401 +lib/udev/rules.d/61-gdm.rules 28400 +lib/udev/rules.d/61-gnome-settings-daemon-rfkill.rules 28399 +lib/udev/rules.d/61-mutter.rules 28398 +lib/udev/rules.d/64-btrfs.rules 28397 +lib/udev/rules.d/65-libwacom.rules 28396 +lib/udev/rules.d/66-bilibop.rules 28395 +lib/udev/rules.d/69-cd-sensors.rules 28394 +lib/udev/rules.d/69-libmtp.rules 28393 +lib/udev/rules.d/69-lvm-metad.rules 28392 +lib/udev/rules.d/70-joystick.rules 28391 +lib/udev/rules.d/70-mouse.rules 28390 +lib/udev/rules.d/70-power-switch.rules 28389 +etc/udev/rules.d/70-protect-boot-medium-for-udisks.rules 28388 +lib/udev/rules.d/70-spice-vdagentd.rules 28387 +lib/udev/rules.d/70-touchpad.rules 28386 +lib/udev/rules.d/70-uaccess.rules 28385 +lib/udev/rules.d/71-ipp-usb.rules 28384 +lib/udev/rules.d/71-seat.rules 28383 +lib/udev/rules.d/73-seat-late.rules 28382 +lib/udev/rules.d/73-special-net-names.rules 28381 +lib/udev/rules.d/75-net-description.rules 28380 +lib/udev/rules.d/75-probe_mtd.rules 28379 +lib/udev/rules.d/77-mm-broadmobi-port-types.rules 28378 +lib/udev/rules.d/77-mm-cinterion-port-types.rules 28377 +lib/udev/rules.d/77-mm-dell-port-types.rules 28376 +lib/udev/rules.d/77-mm-dlink-port-types.rules 28375 +lib/udev/rules.d/77-mm-ericsson-mbm.rules 28374 +lib/udev/rules.d/77-mm-fibocom-port-types.rules 28373 +lib/udev/rules.d/77-mm-foxconn-port-types.rules 28372 +lib/udev/rules.d/77-mm-haier-port-types.rules 28371 +lib/udev/rules.d/77-mm-huawei-net-port-types.rules 28370 +lib/udev/rules.d/77-mm-longcheer-port-types.rules 28369 +lib/udev/rules.d/77-mm-mtk-port-types.rules 28368 +lib/udev/rules.d/77-mm-nokia-port-types.rules 28367 +lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules 28366 +lib/udev/rules.d/77-mm-qdl-device-blacklist.rules 28365 +lib/udev/rules.d/77-mm-quectel-port-types.rules 28364 +lib/udev/rules.d/77-mm-sierra.rules 28363 +lib/udev/rules.d/77-mm-simtech-port-types.rules 28362 +lib/udev/rules.d/77-mm-telit-port-types.rules 28361 +lib/udev/rules.d/77-mm-tplink-port-types.rules 28360 +lib/udev/rules.d/77-mm-ublox-port-types.rules 28359 +lib/udev/rules.d/77-mm-usb-device-blacklist.rules 28358 +lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules 28357 +lib/udev/rules.d/77-mm-x22x-port-types.rules 28356 +lib/udev/rules.d/77-mm-zte-port-types.rules 28355 +lib/udev/rules.d/78-sound-card.rules 28352 +lib/udev/rules.d/80-debian-compat.rules 28351 +lib/udev/rules.d/80-drivers.rules 28350 +lib/udev/rules.d/80-ifupdown.rules 28349 +lib/udev/rules.d/80-libinput-device-groups.rules 28348 +lib/udev/rules.d/80-mm-candidate.rules 28347 +lib/udev/rules.d/80-udisks2.rules 28346 +lib/udev/rules.d/84-nm-drivers.rules 28345 +lib/udev/rules.d/85-hdparm.rules 28344 +lib/udev/rules.d/85-hplj10xx.rules 28343 +usr/lib/udev/rules.d/85-hwclock.rules 28342 +etc/udev/rules.d/85-nm-unmanage-veth.rules 28341 +lib/udev/rules.d/85-nm-unmanaged.rules 28340 +lib/udev/rules.d/85-regulatory.rules 28339 +lib/udev/rules.d/90-alsa-restore.rules 28338 +lib/udev/rules.d/90-bolt.rules 28337 +lib/udev/rules.d/90-console-setup.rules 28336 +lib/udev/rules.d/90-iphone-tether.rules 28335 +lib/udev/rules.d/90-libinput-fuzz-override.rules 28334 +lib/udev/rules.d/90-nm-thunderbolt.rules 28333 +lib/udev/rules.d/90-pipewire-alsa.rules 28332 +lib/udev/rules.d/90-pulseaudio.rules 28331 +lib/udev/rules.d/92-libccid.rules 28330 +lib/udev/rules.d/95-cd-devices.rules 28329 +lib/udev/rules.d/95-dm-notify.rules 28328 +lib/udev/rules.d/95-upower-csr.rules 28327 +lib/udev/rules.d/95-upower-hid.rules 28326 +lib/udev/rules.d/95-upower-hidpp.rules 28325 +lib/udev/rules.d/95-upower-wup.rules 28324 +lib/udev/rules.d/96-e2scrub.rules 28323 +etc/udev/rules.d/99-hide-TailsData.rules 28322 +lib/udev/rules.d/99-laptop-mode.rules 28321 +lib/udev/rules.d/99-libsane1.rules 28320 +etc/udev/rules.d/99-make-removable-devices-user-writable.rules 28319 +lib/udev/rules.d/99-systemd.rules 28318 +lib/udev/rules.d/99-vmware-scsi-udev.rules 28317 +usr/libexec/gnome-session-failed 28292 +lib/udev/libinput-device-group 28141 +lib/systemd/system/systemd-udev-settle.service 28132 +lib/udev/lmt-udev 28022 +lib/udev/ata_id 28014 +usr/lib/udev/hwclock-set 27954 +lib/udev/hdparm 27945 +lib/hdparm/hdparm-functions 27944 +lib/udev/libinput-fuzz-extract 27939 +etc/hdparm.conf 27938 +sbin/on_ac_power 27915 +lib/udev/libinput-fuzz-to-zero 27883 +usr/lib/pm-utils/power.d/95hdparm-apm 27880 +etc/console-setup/cached_setup_terminal.sh 27768 +etc/console-setup/cached_setup_font.sh 27761 +bin/setfont 27760 +usr/share/consolefonts/Uni1-Fixed16.psf.gz 27758 +lib/modules/6.1.0-11-amd64/kernel/lib/crypto/libarc4.ko 27753 +usr/local/lib/tails-spoof-mac 27750 +usr/local/lib/tails-shell-library/hardware.sh 27749 +usr/local/lib/tails-shell-library/log.sh 27748 +usr/bin/gettext.sh 27747 +usr/bin/macchanger 27744 +usr/share/macchanger/OUI.list 27743 +usr/share/macchanger/wireless.list 27741 +lib/crda/setregdomain 27725 +lib/systemd/systemd-rfkill 27724 +etc/default/crda 27723 +usr/libexec/bilibop/test 27703 +usr/lib/bilibop/common.sh 27702 +bin/df 27701 etc/bilibop/bilibop.conf 27700 -usr/libexec/gvfsd-metadata 27698 -lib/systemd/system/NetworkManager.service 27681 -lib/systemd/system/NetworkManager-wait-online.service 27680 -lib/systemd/system/NetworkManager-dispatcher.service 27679 -etc/systemd/system.conf 27678 -lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 27677 -lib/systemd/system.conf.d/set-StatusUnitFormat-to-combined.conf 27676 -lib/systemd/system-generators/systemd-bless-boot-generator 27675 -lib/systemd/system-generators/systemd-cryptsetup-generator 27674 -lib/systemd/system-generators/lvm2-activation-generator 27673 +lib/systemd/system/NetworkManager.service 27679 +lib/systemd/system/NetworkManager-wait-online.service 27678 +lib/systemd/system/NetworkManager-dispatcher.service 27677 +etc/systemd/system.conf 27676 +lib/systemd/system.conf.d/lower-DefaultTimeoutStopSec.conf 27675 +lib/systemd/system.conf.d/set-StatusUnitFormat-to-combined.conf 27674 +lib/systemd/system-generators/systemd-cryptsetup-generator 27673 lib/systemd/system-generators/systemd-fstab-generator 27672 lib/systemd/system-generators/systemd-getty-generator 27671 -lib/systemd/system-generators/systemd-hibernate-resume-generator 27670 -lib/systemd/system-generators/systemd-debug-generator 27669 -lib/systemd/system-generators/systemd-gpt-auto-generator 27668 -lib/systemd/system-generators/live-config-getty-generator 27667 -lib/live/init-config.sh 27666 -lib/systemd/system-generators/systemd-run-generator 27665 -sbin/lvm 27664 -lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 27663 -usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 27662 -lib/systemd/system-generators/systemd-system-update-generator 27661 -lib/systemd/system-generators/systemd-rc-local-generator 27660 -etc/live/config.d/noroot.conf 27659 -etc/live/config.d/user-default-groups.conf 27658 +lib/systemd/system-generators/live-config-getty-generator 27670 +lib/live/init-config.sh 27669 +etc/live/config.d/noroot.conf 27668 +etc/live/config.d/user-default-groups.conf 27667 +lib/systemd/system-generators/systemd-bless-boot-generator 27666 +lib/systemd/system-generators/systemd-gpt-auto-generator 27665 +lib/systemd/system-generators/systemd-debug-generator 27664 +lib/systemd/system-generators/systemd-rc-local-generator 27663 +lib/systemd/system-generators/systemd-system-update-generator 27662 +lib/systemd/system-generators/lvm2-activation-generator 27661 +lib/systemd/system-generators/systemd-hibernate-resume-generator 27660 +lib/systemd/system-generators/systemd-run-generator 27659 +lib/systemd/system-generators/systemd-veritysetup-generator 27658 lib/systemd/system-generators/systemd-sysv-generator 27657 lib/systemd/system-generators/tor-generator 27656 -lib/systemd/system-generators/systemd-veritysetup-generator 27655 -etc/lvm/lvm.conf 27654 -etc/lvm/lvmlocal.conf 27653 -lib/systemd/system/alsa-utils.service 27652 -etc/systemd/system/avahi-daemon.service 27651 -lib/systemd/system/gdm3.service 27650 -lib/systemd/system/gdm.service 27649 -lib/systemd/system/hwclock.service 27648 -lib/systemd/system/kmod.service 27647 -lib/systemd/system/systemd-modules-load.service 27646 -etc/systemd/system/live-tools.service 27645 -lib/systemd/system/lvm2.service 27644 -lib/systemd/system/plymouth.service 27643 -lib/systemd/system/plymouth-quit.service 27642 -lib/systemd/system/plymouth-log.service 27641 -lib/systemd/system/plymouth-read-write.service 27640 -lib/systemd/system/procps.service 27639 -lib/systemd/system/systemd-sysctl.service 27638 -lib/systemd/system/pulseaudio-enable-autospawn.service 27637 -lib/systemd/system/saned.service 27636 -lib/systemd/system/speech-dispatcher.service 27635 -lib/systemd/system/speech-dispatcherd.service 27634 -lib/systemd/system/spice-vdagent.service 27633 -lib/systemd/system/spice-vdagentd.service 27632 -lib/systemd/system/sudo.service 27631 -lib/systemd/system/udev.service 27630 -lib/systemd/system/systemd-udevd.service 27629 -lib/systemd/system/x11-common.service 27628 -etc/init.d/gdomap 27627 -lib/systemd/system/wpa_supplicant.service 27626 -lib/systemd/system/avahi-daemon.service 27625 -lib/systemd/system/ModemManager.service 27624 -lib/systemd/system/systemd-timesyncd.service 27623 -lib/systemd/system/open-vm-tools.service 27622 -lib/systemd/system/getty@.service 27621 -lib/systemd/system/reboot.target 27620 -lib/systemd/system/systemd-logind.service 27619 -lib/systemd/system/systemd-timedated.service 27618 -lib/systemd/system/graphical.target 27617 -lib/systemd/system/poweroff.target 27616 -lib/systemd/system/rescue.target 27615 -lib/systemd/system/multi-user.target 27614 -lib/systemd/system/systemd-backlight@.service 27613 -lib/systemd/system/systemd-journald.socket 27612 -lib/systemd/system/systemd-journald.service 27611 -lib/systemd/system/syslog.socket 27610 -lib/systemd/system/emergency.service 27609 -lib/systemd/system/rescue.service 27608 -lib/systemd/system/plymouth-start.service 27607 -lib/systemd/system/systemd-ask-password-plymouth.service 27606 -lib/systemd/system/keyboard-setup.service 27605 -lib/systemd/system/local-fs-pre.target 27604 -lib/systemd/system/systemd-udevd-kernel.socket 27603 -lib/systemd/system/systemd-udevd-control.socket 27602 -lib/systemd/system/systemd-hwdb-update.service 27601 -lib/systemd/system/systemd-sysusers.service 27600 -lib/systemd/system/systemd-udev-trigger.service 27599 -lib/systemd/system/systemd-ask-password-plymouth.path 27598 -lib/systemd/system/basic.target 27597 -lib/systemd/system/live-config.service 27596 -lib/systemd/system/live-config.service.d/after-tmpfiles.conf 27595 -lib/systemd/system/systemd-tmpfiles-setup.service 27594 -lib/systemd/system/local-fs.target 27593 -lib/systemd/system/emergency.target 27592 -lib/systemd/system/slices.target 27591 -lib/systemd/system/paths.target 27590 -lib/systemd/system/timers.target 27589 -lib/systemd/system/systemd-tmpfiles-clean.timer 27588 -lib/systemd/system/systemd-tmpfiles-clean.service 27587 -lib/systemd/system/time-set.target 27586 -lib/systemd/system/logrotate.timer 27585 -lib/systemd/system/time-sync.target 27584 -lib/systemd/system/logrotate.service 27583 -lib/systemd/system/fstrim.timer 27582 -lib/systemd/system/fstrim.service 27581 -lib/systemd/system/e2scrub_all.timer 27580 -lib/systemd/system/e2scrub_all.service 27579 -lib/systemd/system/apt-daily.timer 27578 -lib/systemd/system/apt-daily.service 27577 -lib/systemd/system/dbus.socket 27576 -lib/systemd/system/dbus.service 27575 -lib/systemd/system/network-pre.target 27574 -lib/systemd/system/network-online.target 27573 -lib/systemd/system/networking.service 27572 -lib/systemd/system/apparmor.service 27571 -lib/systemd/system/ifupdown-pre.service 27570 -lib/systemd/system/network.target 27569 -lib/systemd/system/apt-daily-upgrade.timer 27568 -lib/systemd/system/apt-daily-upgrade.service 27567 -lib/systemd/system/systemd-journald-audit.socket 27566 -lib/systemd/system/systemd-journald-dev-log.socket 27565 -lib/systemd/system/sockets.target 27564 -lib/systemd/system/tca-portal.socket 27563 -lib/systemd/system/tca-portal.service 27562 -lib/systemd/system/systemd-initctl.socket 27561 -lib/systemd/system/systemd-initctl.service 27560 -lib/systemd/system/pcscd.socket 27559 -lib/systemd/system/pcscd.service 27558 -lib/systemd/system/dm-event.socket 27557 -lib/systemd/system/dm-event.service 27556 -lib/systemd/system/cups.socket 27555 -lib/systemd/system/cups.service 27554 -lib/systemd/system/cups.service.d/after-AppArmor.conf 27553 -lib/systemd/system/systemd-remount-fs.service 27552 -lib/systemd/system/systemd-fsck-root.service 27551 -lib/systemd/system/systemd-fsckd.socket 27550 -lib/systemd/system/systemd-fsckd.service 27549 -lib/systemd/system/sysinit.target 27548 -lib/systemd/system/tails-create-netns.service 27547 -lib/systemd/system/onion-grater.service 27546 -lib/systemd/system/systemd-update-utmp.service 27545 -lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf 27544 -lib/systemd/system/systemd-tmpfiles-setup-dev.service 27543 -lib/systemd/system/systemd-random-seed.service 27542 -lib/systemd/system/first-boot-complete.target 27541 -lib/systemd/system/systemd-pstore.service 27540 -lib/systemd/system/systemd-machine-id-commit.service 27539 -lib/systemd/system/systemd-journal-flush.service 27538 -lib/systemd/system/systemd-boot-system-token.service 27537 -lib/systemd/system/systemd-binfmt.service 27536 -lib/systemd/system/systemd-ask-password-console.path 27535 -lib/systemd/system/systemd-ask-password-console.service 27534 -lib/systemd/system/proc-sys-fs-binfmt_misc.automount 27533 -lib/systemd/system/lvm2-monitor.service 27532 -lib/systemd/system/lvm2-lvmpolld.socket 27531 -lib/systemd/system/lvm2-lvmpolld.service 27530 -lib/systemd/system/kmod-static-nodes.service 27529 -lib/systemd/system/haveged.service 27528 -lib/systemd/system/ferm.service 27527 -lib/systemd/system/cryptsetup.target 27526 -lib/systemd/system/blk-availability.service 27525 -lib/systemd/system/swap.target 27524 -lib/systemd/system/shutdown.target 27523 -lib/systemd/system/umount.target 27522 -lib/systemd/system/proc-sys-fs-binfmt_misc.mount 27521 -lib/systemd/system/sys-fs-fuse-connections.mount 27520 -lib/systemd/system/modprobe@.service 27519 -lib/systemd/system/sys-kernel-config.mount 27518 -lib/systemd/system/run-initramfs.mount 27517 -lib/systemd/system/initramfs-shutdown.service 27516 -lib/systemd/system/dev-mqueue.mount 27515 -lib/systemd/system/var-tmp.mount 27514 +sbin/lvm 27655 +lib/x86_64-linux-gnu/libdevmapper-event.so.1.02.1 27654 +usr/lib/x86_64-linux-gnu/libaio.so.1.0.1 27653 +etc/lvm/lvm.conf 27652 +etc/lvm/lvmlocal.conf 27651 +lib/systemd/system/alsa-utils.service 27650 +etc/systemd/system/avahi-daemon.service 27649 +lib/systemd/system/gdm3.service 27648 +lib/systemd/system/gdm.service 27647 +lib/systemd/system/hwclock.service 27646 +lib/systemd/system/kmod.service 27645 +lib/systemd/system/systemd-modules-load.service 27644 +etc/systemd/system/live-tools.service 27643 +lib/systemd/system/lvm2.service 27642 +lib/systemd/system/plymouth.service 27641 +lib/systemd/system/plymouth-quit.service 27640 +lib/systemd/system/plymouth-log.service 27639 +lib/systemd/system/plymouth-read-write.service 27638 +lib/systemd/system/procps.service 27637 +lib/systemd/system/systemd-sysctl.service 27636 +lib/systemd/system/pulseaudio-enable-autospawn.service 27635 +lib/systemd/system/saned.service 27634 +lib/systemd/system/speech-dispatcher.service 27633 +lib/systemd/system/speech-dispatcherd.service 27632 +lib/systemd/system/spice-vdagent.service 27631 +lib/systemd/system/spice-vdagentd.service 27630 +lib/systemd/system/sudo.service 27629 +lib/systemd/system/udev.service 27628 +lib/systemd/system/systemd-udevd.service 27627 +lib/systemd/system/x11-common.service 27626 +etc/init.d/gdomap 27625 +lib/systemd/system/wpa_supplicant.service 27624 +lib/systemd/system/avahi-daemon.service 27623 +lib/systemd/system/ModemManager.service 27622 +lib/systemd/system/systemd-timesyncd.service 27621 +lib/systemd/system/open-vm-tools.service 27620 +lib/systemd/system/getty@.service 27619 +lib/systemd/system/reboot.target 27618 +lib/systemd/system/systemd-logind.service 27617 +lib/systemd/system/systemd-timedated.service 27616 +lib/systemd/system/graphical.target 27615 +lib/systemd/system/poweroff.target 27614 +lib/systemd/system/rescue.target 27613 +lib/systemd/system/multi-user.target 27612 +lib/systemd/system/systemd-backlight@.service 27611 +lib/systemd/system/systemd-journald.socket 27610 +lib/systemd/system/systemd-journald.service 27609 +lib/systemd/system/syslog.socket 27608 +lib/systemd/system/emergency.service 27607 +lib/systemd/system/rescue.service 27606 +lib/systemd/system/plymouth-start.service 27605 +lib/systemd/system/systemd-ask-password-plymouth.service 27604 +lib/systemd/system/keyboard-setup.service 27603 +lib/systemd/system/local-fs-pre.target 27602 +lib/systemd/system/systemd-udevd-kernel.socket 27601 +lib/systemd/system/systemd-udevd-control.socket 27600 +lib/systemd/system/systemd-hwdb-update.service 27599 +lib/systemd/system/systemd-sysusers.service 27598 +lib/systemd/system/systemd-udev-trigger.service 27597 +lib/systemd/system/systemd-ask-password-plymouth.path 27596 +lib/systemd/system/basic.target 27595 +lib/systemd/system/live-config.service 27594 +lib/systemd/system/live-config.service.d/after-tmpfiles.conf 27593 +lib/systemd/system/systemd-tmpfiles-setup.service 27592 +lib/systemd/system/local-fs.target 27591 +lib/systemd/system/emergency.target 27590 +lib/systemd/system/slices.target 27589 +lib/systemd/system/paths.target 27588 +lib/systemd/system/timers.target 27587 +lib/systemd/system/systemd-tmpfiles-clean.timer 27586 +lib/systemd/system/systemd-tmpfiles-clean.service 27585 +lib/systemd/system/time-set.target 27584 +lib/systemd/system/logrotate.timer 27583 +lib/systemd/system/time-sync.target 27582 +lib/systemd/system/logrotate.service 27581 +lib/systemd/system/fstrim.timer 27580 +lib/systemd/system/fstrim.service 27579 +lib/systemd/system/e2scrub_all.timer 27578 +lib/systemd/system/e2scrub_all.service 27577 +lib/systemd/system/apt-daily.timer 27576 +lib/systemd/system/apt-daily.service 27575 +lib/systemd/system/dbus.socket 27574 +lib/systemd/system/dbus.service 27573 +lib/systemd/system/network-pre.target 27572 +lib/systemd/system/network-online.target 27571 +lib/systemd/system/networking.service 27570 +lib/systemd/system/apparmor.service 27569 +lib/systemd/system/ifupdown-pre.service 27568 +lib/systemd/system/network.target 27567 +lib/systemd/system/apt-daily-upgrade.timer 27566 +lib/systemd/system/apt-daily-upgrade.service 27565 +lib/systemd/system/systemd-journald-audit.socket 27564 +lib/systemd/system/systemd-journald-dev-log.socket 27563 +lib/systemd/system/sockets.target 27562 +lib/systemd/system/tca-portal.socket 27561 +lib/systemd/system/tca-portal.service 27560 +lib/systemd/system/systemd-initctl.socket 27559 +lib/systemd/system/systemd-initctl.service 27558 +lib/systemd/system/pcscd.socket 27557 +lib/systemd/system/pcscd.service 27556 +lib/systemd/system/dm-event.socket 27555 +lib/systemd/system/dm-event.service 27554 +lib/systemd/system/cups.socket 27553 +lib/systemd/system/cups.service 27552 +lib/systemd/system/cups.service.d/after-AppArmor.conf 27551 +lib/systemd/system/systemd-remount-fs.service 27550 +lib/systemd/system/systemd-fsck-root.service 27549 +lib/systemd/system/systemd-fsckd.socket 27548 +lib/systemd/system/systemd-fsckd.service 27547 +lib/systemd/system/sysinit.target 27546 +lib/systemd/system/tails-create-netns.service 27545 +lib/systemd/system/onion-grater.service 27544 +lib/systemd/system/systemd-update-utmp.service 27543 +lib/systemd/system/systemd-update-utmp.service.d/empty-overlayfs-rw-tmpfs.conf 27542 +lib/systemd/system/systemd-tmpfiles-setup-dev.service 27541 +lib/systemd/system/systemd-random-seed.service 27540 +lib/systemd/system/first-boot-complete.target 27539 +lib/systemd/system/systemd-pstore.service 27538 +lib/systemd/system/systemd-machine-id-commit.service 27537 +lib/systemd/system/systemd-journal-flush.service 27536 +lib/systemd/system/systemd-boot-system-token.service 27535 +lib/systemd/system/systemd-binfmt.service 27534 +lib/systemd/system/systemd-ask-password-console.path 27533 +lib/systemd/system/systemd-ask-password-console.service 27532 +lib/systemd/system/proc-sys-fs-binfmt_misc.automount 27531 +lib/systemd/system/lvm2-monitor.service 27530 +lib/systemd/system/lvm2-lvmpolld.socket 27529 +lib/systemd/system/lvm2-lvmpolld.service 27528 +lib/systemd/system/kmod-static-nodes.service 27527 +lib/systemd/system/haveged.service 27526 +lib/systemd/system/ferm.service 27525 +lib/systemd/system/cryptsetup.target 27524 +lib/systemd/system/blk-availability.service 27523 +lib/systemd/system/swap.target 27522 +lib/systemd/system/shutdown.target 27521 +lib/systemd/system/umount.target 27520 +lib/systemd/system/proc-sys-fs-binfmt_misc.mount 27519 +lib/systemd/system/sys-fs-fuse-connections.mount 27518 +lib/systemd/system/modprobe@.service 27517 +lib/systemd/system/sys-kernel-config.mount 27516 +lib/systemd/system/dev-hugepages.mount 27515 +lib/systemd/system/sys-kernel-tracing.mount 27514 lib/systemd/system/sys-kernel-debug.mount 27513 -lib/systemd/system/sys-kernel-tracing.mount 27512 -lib/systemd/system/dev-hugepages.mount 27511 -lib/systemd/system/sound.target 27510 -lib/systemd/system/alsa-state.service 27509 -lib/systemd/system/alsa-restore.service 27508 -lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 27507 -lib/systemd/system/smartcard.target 27506 -lib/systemd/system/systemd-rfkill.socket 27505 -lib/systemd/system/systemd-rfkill.service 27504 -lib/systemd/system/user.slice 27503 -lib/systemd/system/systemd-user-sessions.service 27502 -lib/systemd/system/nss-user-lookup.target 27501 -lib/systemd/system/remote-fs.target 27500 -lib/systemd/system/remote-fs-pre.target 27499 -lib/systemd/system/tails-set-wireless-devices-state.service 27498 -lib/systemd/system/accounts-daemon.service 27497 -lib/systemd/system/udisks2.service 27496 -lib/systemd/system/systemd-update-utmp-runlevel.service 27495 -lib/systemd/system/zramswap.service 27494 -lib/systemd/system/tor.service 27493 -lib/systemd/system/tor@default.service 27492 -lib/systemd/system/tor@default.service.d/50-resolv-conf-override.conf 27491 -lib/systemd/system/tor@default.service.d/fix-lyrebird.conf 27490 -lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 27489 -lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 27488 -lib/systemd/system/tails-tor-has-bootstrapped.target 27487 -lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 27486 -lib/systemd/system/nss-lookup.target 27485 -lib/systemd/system/tails-shutdown-on-media-removal.service 27484 -lib/systemd/system/tails-autotest-remote-shell.service 27483 -lib/systemd/system/gdm.service.d/failure.conf 27482 -lib/systemd/system/gdm.service.d/restart.conf 27481 -lib/systemd/system/tails-gdm-failed-to-start.service 27480 -lib/systemd/system/rc-local.service 27479 -lib/systemd/system/rc-local.service.d/debian.conf 27478 -lib/systemd/system/getty-pre.target 27477 -lib/systemd/system/tails-autotest-broken-gnome-shell.service 27476 -lib/systemd/system/systemd-ask-password-wall.path 27475 -lib/systemd/system/systemd-ask-password-wall.service 27474 -lib/systemd/system/rsync.service 27473 -lib/systemd/system/plymouth-quit-wait.service 27472 -lib/systemd/system/vgauth.service 27471 -lib/systemd/system/memlockd.service 27470 -lib/systemd/system/memlockd.service.d/oom.conf 27469 -lib/systemd/system/lmt-poll.service 27468 -lib/systemd/system/laptop-mode.timer 27467 -lib/systemd/system/laptop-mode.service 27466 -lib/systemd/system/getty.target 27465 -lib/systemd/system/getty-static.service 27464 -lib/systemd/system/cups-browsed.service 27463 -lib/systemd/system/cron.service 27462 -lib/systemd/system/console-setup.service 27461 -lib/systemd/system/console-setup.service.d/override.conf 27460 -lib/systemd/system/polkit.service 27459 -lib/systemd/system/e2scrub_reap.service 27458 -usr/lib/NetworkManager/nm-dispatcher 27455 -usr/sbin/NetworkManager 27454 -usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 27453 -usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 27452 -etc/NetworkManager/NetworkManager.conf 27451 -etc/NetworkManager/conf.d/dhcp.conf 27450 -etc/NetworkManager/conf.d/dns.conf 27449 -etc/NetworkManager/conf.d/spoof-mac.conf 27448 -etc/os-release 27446 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-adsl.so 27445 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-bluetooth.so 27444 -usr/lib/x86_64-linux-gnu/libbluetooth.so.3.19.3 27443 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-wwan.so 27442 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-team.so 27441 -usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 27440 -usr/lib/x86_64-linux-gnu/libjansson.so.4.13.0 27439 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wifi.so 27438 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wwan.so 27437 -usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-settings-plugin-ifupdown.so 27436 -etc/NetworkManager/dispatcher.d/00-firewall.sh 27435 -etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 27434 -usr/bin/nm-online 27432 -etc/NetworkManager/dispatcher.d/01-ifupdown 27431 -etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 27430 -usr/sbin/deluser 27429 -etc/NetworkManager/dispatcher.d/10-tor.sh 27428 -etc/NetworkManager/dispatcher.d/20-time.sh 27427 -etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 27426 -usr/share/perl/5.32.1/File/Find.pm 27425 -usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm 27424 -usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm 27423 -usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm 27422 -usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm 27421 -usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm 27420 -usr/lib/x86_64-linux-gnu/perl-base/Errno.pm 27419 -usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm 27418 -etc/deluser.conf 27417 -usr/bin/passwd 27416 -etc/gdm3/PreSession/Default 27413 -etc/profile 27410 -usr/bin/id 27409 -etc/profile.d/bash_completion.sh 27408 -etc/profile.d/vte-2.91.sh 27407 -usr/lib/systemd/user/gnome-session-wayland@.target 27405 -usr/lib/systemd/user/tails-dump-user-env.service 27404 -usr/lib/systemd/user/gnome-session.target 27403 -usr/lib/systemd/user/gnome-session-monitor.service 27402 -usr/lib/systemd/user/gnome-session-pre.target 27401 -usr/lib/systemd/user/gnome-session-initialized.target 27400 -usr/lib/systemd/user/gnome-session-signal-init.service 27399 -usr/lib/systemd/user/graphical-session-pre.target 27398 -usr/lib/systemd/user/ssh-agent.service 27397 -usr/lib/systemd/user/gnome-session-wayland.target 27396 -usr/lib/systemd/user/gnome-session@.target 27395 -usr/lib/systemd/user/gnome-session@gnome.target.d/gnome.session.conf 27394 -usr/lib/systemd/user/org.gnome.Shell.target 27393 -usr/lib/systemd/user/org.gnome.Shell@x11.service 27392 -usr/lib/systemd/user/session.slice 27391 -usr/lib/systemd/user/gnome-session-manager.target 27390 -usr/lib/systemd/user/gnome-session-failed.target 27389 -usr/lib/systemd/user/gnome-session-failed.service 27388 -usr/lib/systemd/user/org.gnome.Shell-disable-extensions.service 27387 -usr/lib/systemd/user/org.gnome.Shell@wayland.service 27386 -usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.target 27385 -usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.service 27384 -usr/lib/systemd/user/gnome-session-x11-services-ready.target 27383 -usr/lib/systemd/user/gnome-session-x11-services.target 27382 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.target 27381 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.service 27380 -usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.target 27379 -usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.service 27378 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.target 27377 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.service 27376 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.target 27375 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.service 27374 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.target 27373 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.service 27372 -usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.target 27371 -usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.service 27370 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.target 27369 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.service 27368 -usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.target 27367 -usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.service 27366 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.target 27365 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.service 27364 -usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.target 27363 -usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.service 27362 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.target 27361 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.service 27360 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.target 27359 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.service 27358 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.target 27357 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.service 27356 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.target 27355 -usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.service 27354 -usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.target 27353 -usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.service 27352 -usr/lib/systemd/user/gnome-session-manager@.service 27351 -usr/lib/systemd/user/graphical-session.target 27350 -usr/lib/systemd/user/gnome-session-shutdown.target 27349 -usr/lib/systemd/user/gnome-session-restart-dbus.service 27348 -usr/libexec/gnome-session-ctl 27346 -usr/lib/openssh/agent-launch 27344 -usr/share/gnome-session/sessions/gnome.session 27340 -usr/lib/systemd/user/gnome-early-initialization.target 27337 -usr/lib/systemd/user/tails-configure-keyboard.service 27336 -usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 27335 -usr/lib/systemd/user/systemd-tmpfiles-setup.service 27334 -bin/systemd-tmpfiles 27331 -usr/share/user-tmpfiles.d/tor-browser-directory.conf 27330 -usr/local/lib/tails-configure-keyboard 27328 -usr/local/lib/add-GNOME-bookmarks 27326 -usr/local/lib/tails-shell-library/libgnome-bookmarks.sh 27325 -usr/bin/gio 27321 -usr/bin/gnome-keyring-daemon 27318 -usr/bin/start-pulseaudio-x11 27311 -usr/bin/xdg-user-dirs-update 27306 -etc/xdg/user-dirs.conf 27302 -etc/xdg/user-dirs.defaults 27301 -etc/dconf/profile/ibus 27270 -usr/lib/systemd/user/xdg-permission-store.service 27269 -usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 27265 -usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 27264 -usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 27263 -usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 27262 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27261 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27260 -usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 27259 -usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27258 -usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 27257 -etc/xdg/menus/gnome-applications.menu 27256 -etc/xdg/menus/applications-merged/Tails.menu 27255 -usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 27254 -usr/share/gnome-shell/extensions/date@tails.boum.org/metadata.json 27253 -usr/share/gnome-shell/extensions/date@tails.boum.org/extension.js 27252 -usr/local/lib/tails-get-date 27251 -usr/lib/python3.9/zoneinfo/__init__.py 27246 -usr/lib/python3.9/zoneinfo/_tzpath.py 27244 -usr/lib/python3.9/_sysconfigdata__x86_64-linux-gnu.py 27241 -usr/lib/python3.9/zoneinfo/_common.py 27239 -usr/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so 27237 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 27227 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 27226 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 27225 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 27224 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 27223 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 27222 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 27221 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 27220 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 27219 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/templateManager.js 27218 -usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 27217 -usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27216 -usr/share/gnome-shell/extensions/horizontal-workspaces@gnome-shell-extensions.gcampax.github.com/metadata.json 27215 -usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 27214 -usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 27213 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27212 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27211 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 27210 -usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27209 -usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 27208 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 27207 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 27206 -usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 27205 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 27204 -usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27203 -usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 27202 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 27201 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27200 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js 27199 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/workspaceIndicator.js 27198 -usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27197 -usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27196 -usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27195 -usr/libexec/gsd-disk-utility-notify 27172 -usr/bin/xdg-user-dirs-gtk-update 27169 -usr/libexec/evolution-data-server/evolution-alarm-notify 27166 -usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 27165 -usr/lib/x86_64-linux-gnu/libecal-2.0.so.1.0.0 27164 -usr/local/lib/start-systemd-desktop-target 27161 -usr/local/lib/end-profile 27158 -usr/libexec/gnome-shell-overrides-migration.sh 27155 -usr/share/ibus-mozc/ibus-mozc-gnome-initial-setup.sh 27152 -usr/bin/xargs 27151 -usr/lib/x86_64-linux-gnu/libical-glib.so.3.0.9 27150 -usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.25.0.0 27149 -usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 27148 -usr/lib/systemd/user/desktop.target 27147 -usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 27146 -usr/lib/systemd/user/tails-virt-notify-user.service 27145 -usr/lib/systemd/user/tails-upgrade-frontend.service 27144 +lib/systemd/system/var-tmp.mount 27512 +lib/systemd/system/run-initramfs.mount 27511 +lib/systemd/system/initramfs-shutdown.service 27510 +lib/systemd/system/dev-mqueue.mount 27509 +lib/systemd/system/sound.target 27508 +lib/systemd/system/alsa-state.service 27507 +lib/systemd/system/alsa-restore.service 27506 +lib/systemd/system/alsa-restore.service.d/dont-store-state-on-shutdown.conf 27505 +lib/systemd/system/smartcard.target 27504 +lib/systemd/system/systemd-rfkill.socket 27503 +lib/systemd/system/systemd-rfkill.service 27502 +lib/systemd/system/tails-shutdown-on-media-removal.service 27501 +lib/systemd/system/memlockd.service 27500 +lib/systemd/system/memlockd.service.d/oom.conf 27499 +lib/systemd/system/nss-lookup.target 27498 +lib/systemd/system/nss-user-lookup.target 27497 +lib/systemd/system/cups-browsed.service 27496 +usr/lib/systemd/user/gvfs-metadata.service 27495 +lib/systemd/system/user.slice 27494 +lib/systemd/system/systemd-user-sessions.service 27493 +lib/systemd/system/remote-fs.target 27492 +lib/systemd/system/remote-fs-pre.target 27491 +lib/systemd/system/getty-static.service 27490 +lib/systemd/system/tails-autotest-broken-gnome-shell.service 27489 +lib/systemd/system/gdm.service.d/failure.conf 27488 +lib/systemd/system/gdm.service.d/restart.conf 27487 +lib/systemd/system/tails-gdm-failed-to-start.service 27486 +lib/systemd/system/plymouth-quit-wait.service 27485 +lib/systemd/system/rc-local.service 27484 +lib/systemd/system/rc-local.service.d/debian.conf 27483 +lib/systemd/system/getty.target 27482 +lib/systemd/system/getty-pre.target 27481 +lib/systemd/system/lmt-poll.service 27480 +lib/systemd/system/systemd-update-utmp-runlevel.service 27479 +lib/systemd/system/udisks2.service 27478 +lib/systemd/system/e2scrub_reap.service 27477 +lib/systemd/system/accounts-daemon.service 27476 +lib/systemd/system/zramswap.service 27475 +lib/systemd/system/tor.service 27474 +lib/systemd/system/tor@default.service 27473 +lib/systemd/system/tor@default.service.d/50-resolv-conf-override.conf 27472 +lib/systemd/system/tor@default.service.d/fix-lyrebird.conf 27471 +lib/systemd/system/tor@default.service.d/writable-etc-tor.conf 27470 +lib/systemd/system/tails-wait-until-tor-has-bootstrapped.service 27469 +lib/systemd/system/tails-tor-has-bootstrapped.target 27468 +lib/systemd/system/tails-tor-has-bootstrapped-flag-file.service 27467 +lib/systemd/system/tails-set-wireless-devices-state.service 27466 +lib/systemd/system/tails-autotest-remote-shell.service 27465 +usr/libexec/gvfsd-metadata 27463 +lib/systemd/system/systemd-ask-password-wall.path 27462 +lib/systemd/system/systemd-ask-password-wall.service 27461 +lib/systemd/system/rsync.service 27460 +lib/systemd/system/vgauth.service 27459 +lib/systemd/system/laptop-mode.timer 27458 +lib/systemd/system/laptop-mode.service 27457 +lib/systemd/system/cron.service 27456 +lib/systemd/system/console-setup.service 27455 +lib/systemd/system/console-setup.service.d/override.conf 27454 +lib/systemd/system/polkit.service 27453 +usr/lib/NetworkManager/nm-dispatcher 27450 +usr/sbin/NetworkManager 27449 +usr/lib/x86_64-linux-gnu/libndp.so.0.1.0 27448 +usr/lib/NetworkManager/conf.d/no-mac-addr-change.conf 27447 +etc/NetworkManager/NetworkManager.conf 27446 +etc/NetworkManager/conf.d/dhcp.conf 27445 +etc/NetworkManager/conf.d/dns.conf 27444 +etc/NetworkManager/conf.d/spoof-mac.conf 27443 +etc/os-release 27441 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-adsl.so 27440 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-bluetooth.so 27439 +usr/lib/x86_64-linux-gnu/libbluetooth.so.3.19.3 27438 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-wwan.so 27437 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-team.so 27436 +usr/lib/x86_64-linux-gnu/libteamdctl.so.0.1.5 27435 +usr/lib/x86_64-linux-gnu/libjansson.so.4.13.0 27434 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wifi.so 27433 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-device-plugin-wwan.so 27432 +usr/lib/x86_64-linux-gnu/NetworkManager/1.30.6/libnm-settings-plugin-ifupdown.so 27431 +etc/NetworkManager/dispatcher.d/00-firewall.sh 27429 +usr/bin/nm-online 27428 +etc/NetworkManager/dispatcher.d/00-resolv-over-clearnet 27427 +etc/NetworkManager/dispatcher.d/01-ifupdown 27426 +etc/NetworkManager/dispatcher.d/01-wait-for-notification-recipient.sh 27425 +etc/NetworkManager/dispatcher.d/10-tor.sh 27424 +usr/sbin/deluser 27423 +etc/NetworkManager/dispatcher.d/20-time.sh 27422 +etc/NetworkManager/dispatcher.d/70-upgrade-additional-software.sh 27421 +usr/share/perl/5.32.1/File/Find.pm 27420 +usr/lib/x86_64-linux-gnu/perl-base/File/Basename.pm 27419 +usr/lib/x86_64-linux-gnu/perl-base/File/Spec.pm 27418 +usr/lib/x86_64-linux-gnu/perl-base/File/Spec/Unix.pm 27417 +usr/lib/x86_64-linux-gnu/perl-base/File/Temp.pm 27416 +usr/lib/x86_64-linux-gnu/perl-base/File/Path.pm 27415 +usr/lib/x86_64-linux-gnu/perl-base/Errno.pm 27414 +usr/lib/x86_64-linux-gnu/perl-base/Carp/Heavy.pm 27413 +etc/deluser.conf 27412 +usr/bin/passwd 27411 +etc/gdm3/PreSession/Default 27408 +etc/profile 27405 +usr/bin/id 27404 +etc/profile.d/bash_completion.sh 27403 +etc/profile.d/vte-2.91.sh 27402 +usr/lib/systemd/user/gnome-session-wayland@.target 27400 +usr/lib/systemd/user/tails-dump-user-env.service 27399 +usr/lib/systemd/user/gnome-session.target 27398 +usr/lib/systemd/user/gnome-session-monitor.service 27397 +usr/lib/systemd/user/gnome-session-pre.target 27396 +usr/lib/systemd/user/gnome-session-initialized.target 27395 +usr/lib/systemd/user/gnome-session-signal-init.service 27394 +usr/lib/systemd/user/graphical-session-pre.target 27393 +usr/lib/systemd/user/ssh-agent.service 27392 +usr/lib/systemd/user/gnome-session-wayland.target 27391 +usr/lib/systemd/user/gnome-session@.target 27390 +usr/lib/systemd/user/gnome-session@gnome.target.d/gnome.session.conf 27389 +usr/lib/systemd/user/org.gnome.Shell.target 27388 +usr/lib/systemd/user/org.gnome.Shell@x11.service 27387 +usr/lib/systemd/user/session.slice 27386 +usr/lib/systemd/user/gnome-session-manager.target 27385 +usr/lib/systemd/user/gnome-session-failed.target 27384 +usr/lib/systemd/user/gnome-session-failed.service 27383 +usr/lib/systemd/user/org.gnome.Shell-disable-extensions.service 27382 +usr/lib/systemd/user/org.gnome.Shell@wayland.service 27381 +usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.target 27380 +usr/lib/systemd/user/org.gnome.SettingsDaemon.XSettings.service 27379 +usr/lib/systemd/user/gnome-session-x11-services-ready.target 27378 +usr/lib/systemd/user/gnome-session-x11-services.target 27377 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.target 27376 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Wacom.service 27375 +usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.target 27374 +usr/lib/systemd/user/org.gnome.SettingsDaemon.UsbProtection.service 27373 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.target 27372 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Sound.service 27371 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.target 27370 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Smartcard.service 27369 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.target 27368 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Sharing.service 27367 +usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.target 27366 +usr/lib/systemd/user/org.gnome.SettingsDaemon.ScreensaverProxy.service 27365 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.target 27364 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Rfkill.service 27363 +usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.target 27362 +usr/lib/systemd/user/org.gnome.SettingsDaemon.PrintNotifications.service 27361 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.target 27360 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Power.service 27359 +usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.target 27358 +usr/lib/systemd/user/org.gnome.SettingsDaemon.MediaKeys.service 27357 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.target 27356 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Keyboard.service 27355 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.target 27354 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Housekeeping.service 27353 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.target 27352 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Datetime.service 27351 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.target 27350 +usr/lib/systemd/user/org.gnome.SettingsDaemon.Color.service 27349 +usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.target 27348 +usr/lib/systemd/user/org.gnome.SettingsDaemon.A11ySettings.service 27347 +usr/lib/systemd/user/gnome-session-manager@.service 27346 +usr/lib/systemd/user/graphical-session.target 27345 +usr/lib/systemd/user/gnome-session-shutdown.target 27344 +usr/lib/systemd/user/gnome-session-restart-dbus.service 27343 +usr/libexec/gnome-session-ctl 27341 +usr/lib/openssh/agent-launch 27339 +usr/share/gnome-session/sessions/gnome.session 27335 +usr/lib/systemd/user/gnome-early-initialization.target 27332 +usr/lib/systemd/user/tails-configure-keyboard.service 27331 +usr/lib/systemd/user/tails-add-GNOME-bookmarks.service 27330 +usr/lib/systemd/user/systemd-tmpfiles-setup.service 27329 +bin/systemd-tmpfiles 27326 +usr/local/lib/tails-configure-keyboard 27324 +usr/share/user-tmpfiles.d/tor-browser-directory.conf 27323 +usr/local/lib/add-GNOME-bookmarks 27321 +usr/local/lib/tails-shell-library/libgnome-bookmarks.sh 27320 +usr/bin/gio 27318 +usr/bin/gnome-keyring-daemon 27313 +usr/bin/start-pulseaudio-x11 27304 +usr/bin/xdg-user-dirs-update 27298 +etc/xdg/user-dirs.conf 27297 +etc/xdg/user-dirs.defaults 27295 +etc/dconf/profile/ibus 27265 +usr/lib/systemd/user/xdg-permission-store.service 27264 +bin/false 27261 +usr/share/gnome-shell/search-providers/gnome-control-center-search-provider.ini 27259 +usr/share/gnome-shell/search-providers/gnome-terminal-search-provider.ini 27258 +usr/share/gnome-shell/search-providers/org.gnome.Calculator-search-provider.ini 27257 +usr/share/gnome-shell/search-providers/org.gnome.Nautilus.search-provider.ini 27256 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27255 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27254 +usr/lib/x86_64-linux-gnu/girepository-1.0/GMenu-3.0.typelib 27253 +usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27252 +usr/lib/x86_64-linux-gnu/libgnome-menu-3.so.0.0.1 27251 +etc/xdg/menus/gnome-applications.menu 27250 +etc/xdg/menus/applications-merged/Tails.menu 27249 +usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com/metadata.json 27248 +usr/share/gnome-shell/extensions/date@tails.boum.org/metadata.json 27247 +usr/share/gnome-shell/extensions/date@tails.boum.org/extension.js 27246 +usr/local/lib/tails-get-date 27245 +usr/lib/python3.9/zoneinfo/__init__.py 27240 +usr/lib/python3.9/zoneinfo/_tzpath.py 27238 +usr/lib/python3.9/_sysconfigdata__x86_64-linux-gnu.py 27235 +usr/lib/python3.9/zoneinfo/_common.py 27233 +usr/lib/python3.9/lib-dynload/_zoneinfo.cpython-39-x86_64-linux-gnu.so 27231 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/metadata.json 27225 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/extension.js 27224 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/prefs.js 27223 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopManager.js 27222 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopGrid.js 27221 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/createFolderDialog.js 27220 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/desktopIconsUtil.js 27219 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/fileItem.js 27218 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/dbusUtils.js 27217 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/templateManager.js 27216 +usr/share/gnome-shell/extensions/desktop-icons@csoriano/stylesheet.css 27215 +usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27214 +usr/share/gnome-shell/extensions/horizontal-workspaces@gnome-shell-extensions.gcampax.github.com/metadata.json 27213 +usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com/metadata.json 27212 +usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com/metadata.json 27211 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/metadata.json 27210 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/extension.js 27209 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/placeDisplay.js 27208 +usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27207 +usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com/metadata.json 27206 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/metadata.json 27205 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js 27204 +usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/lib.js 27203 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/metadata.json 27202 +usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js 27201 +usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com/metadata.json 27200 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/metadata.json 27199 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/extension.js 27198 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/windowPicker.js 27197 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/workspaceIndicator.js 27196 +usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com/stylesheet.css 27195 +usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com/metadata.json 27194 +usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com/metadata.json 27193 +usr/libexec/gsd-disk-utility-notify 27170 +usr/bin/xdg-user-dirs-gtk-update 27167 +usr/libexec/evolution-data-server/evolution-alarm-notify 27164 +usr/lib/x86_64-linux-gnu/libedataserverui-1.2.so.2.0.0 27163 +usr/lib/x86_64-linux-gnu/libecal-2.0.so.1.0.0 27162 +usr/local/lib/start-systemd-desktop-target 27159 +usr/local/lib/end-profile 27156 +usr/lib/systemd/user/desktop.target 27153 +usr/libexec/gnome-shell-overrides-migration.sh 27152 +usr/lib/x86_64-linux-gnu/libical-glib.so.3.0.9 27151 +usr/lib/x86_64-linux-gnu/libedataserver-1.2.so.25.0.0 27150 +usr/lib/systemd/user/tails-wait-until-tor-has-bootstrapped.service 27147 +usr/lib/systemd/user/tails-virt-notify-user.service 27146 +usr/lib/systemd/user/tails-upgrade-frontend.service 27145 +usr/share/ibus-mozc/ibus-mozc-gnome-initial-setup.sh 27144 usr/lib/systemd/user/tails-security-check.service 27143 usr/lib/systemd/user/tails-ibus-proxy.service 27142 usr/lib/systemd/user/tails-htpdate-notify-user.service 27141 usr/lib/systemd/user/tails-create-persistent-storage.service 27140 usr/lib/systemd/user/tails-additional-software-install.service 27139 usr/lib/systemd/user/tails-a11y-bus-proxy.service 27138 -usr/bin/seq 27137 -usr/lib/systemd/user/at-spi-dbus-bus.service 27136 +usr/lib/systemd/user/at-spi-dbus-bus.service 27137 +usr/lib/x86_64-linux-gnu/libgcr-ui-3.so.1.0.0 27136 usr/lib/x86_64-linux-gnu/libwebkit2gtk-4.0.so.37.63.5 27135 -usr/local/lib/tails-virt-notify-user 27128 -usr/local/lib/tails-htp-notify-user 27127 -usr/local/lib/tails-ibus-proxy 27126 +usr/local/lib/tails-htp-notify-user 27133 +usr/local/lib/tails-ibus-proxy 27129 +usr/local/lib/tails-virt-notify-user 27127 usr/lib/x86_64-linux-gnu/perl/5.32.1/Data/Dumper.pm 27125 -usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 27124 -usr/local/lib/tails-a11y-bus-proxy 27122 -lib/systemd/system/tails-additional-software-install.service 27120 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Data/Dumper/Dumper.so 27119 -usr/lib/python3/dist-packages/dbus/__init__.py 27109 -usr/lib/python3/dist-packages/dbus/_compat.py 27108 -usr/lib/python3/dist-packages/dbus/exceptions.py 27105 -usr/lib/python3/dist-packages/dbus/types.py 27104 -usr/lib/python3/dist-packages/_dbus_bindings.cpython-39-x86_64-linux-gnu.so 27103 -usr/lib/python3/dist-packages/dbus/_dbus.py 27101 -usr/lib/python3/dist-packages/dbus/bus.py 27099 -usr/bin/ibus 27098 -usr/lib/x86_64-linux-gnu/libical.so.3.0.9 27097 -usr/local/lib/tails-dbus-proxy 27095 -usr/share/perl5/Desktop/Notify.pm 27094 -usr/lib/x86_64-linux-gnu/libgdata.so.22.5.2 27083 -usr/lib/x86_64-linux-gnu/girepository-1.0/Notify-0.7.typelib 27078 -usr/lib/x86_64-linux-gnu/libwpe-1.0.so.1.5.1 27076 -usr/lib/x86_64-linux-gnu/libWPEBackend-fdo-1.0.so.1.6.3 27075 -usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.22.14 27074 -usr/lib/python3/dist-packages/dbus/connection.py 27071 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus.pm 27070 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/DBus.so 27069 -usr/local/bin/tails-ask-again 27068 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Bus.pm 27067 -usr/bin/systemd-detect-virt 27066 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Connection.pm 27065 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodCall.pm 27064 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message.pm 27063 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Iterator.pm 27062 -usr/lib/python3/dist-packages/dbus/lowlevel.py 27061 -usr/lib/python3/dist-packages/dbus/proxies.py 27060 -usr/lib/python3/dist-packages/dbus/_expat_introspect_parser.py 27059 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Signal.pm 27058 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodReturn.pm 27057 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Error.pm 27056 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/PendingCall.pm 27055 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Service.pm 27054 -usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2 27052 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteService.pm 27051 -usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27050 -usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20704.0 27049 -usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3 27048 -usr/lib/x86_64-linux-gnu/libenchant-2.so.2.2.15 27047 -usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0 27046 -usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27045 -usr/lib/x86_64-linux-gnu/libmanette-0.2.so.0 27042 -usr/lib/x86_64-linux-gnu/libssl3.so 27041 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteObject.pm 27040 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Introspector.pm 27039 -usr/bin/nohup 27038 -usr/share/perl5/XML/Twig.pm 27037 -usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2 27036 -usr/share/perl/5.32.1/UNIVERSAL.pm 27035 -usr/sbin/ferm 27034 -usr/bin/xdg-dbus-proxy 27033 -usr/lib/x86_64-linux-gnu/perl-base/utf8.pm 27032 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser.pm 27031 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser/Expat.pm 27030 -usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm 27029 -usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so 27028 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/Parser/Expat/Expat.so 27027 -etc/ferm/ferm.conf 27026 -usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 27025 -usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 27024 -usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 27023 -usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 27022 -usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 27021 -usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 27020 -usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 27019 -etc/services 27018 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/ASyncReply.pm 27017 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Annotation.pm 27016 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockConnection.pm 27015 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Error.pm 27014 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockMessage.pm 27013 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockIterator.pm 27012 -usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Value.pm 27011 -usr/share/perl5/Desktop/Notify/Notification.pm 27010 -usr/share/perl5/Class/Accessor.pm 27009 -etc/network/if-up.d/ethtool 27008 -usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Name.pm 27007 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Name/Name.so 27006 +usr/bin/seq 27124 +usr/lib/x86_64-linux-gnu/libcamel-1.2.so.62.0.0 27123 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Data/Dumper/Dumper.so 27122 +lib/systemd/system/tails-additional-software-install.service 27121 +usr/local/lib/tails-a11y-bus-proxy 27120 +usr/share/perl5/Desktop/Notify.pm 27118 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus.pm 27115 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/DBus.so 27111 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Bus.pm 27103 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Connection.pm 27102 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodCall.pm 27101 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message.pm 27100 +usr/lib/python3/dist-packages/dbus/__init__.py 27099 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Iterator.pm 27097 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Signal.pm 27096 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/MethodReturn.pm 27095 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Message/Error.pm 27094 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/PendingCall.pm 27092 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Service.pm 27091 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteService.pm 27090 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/RemoteObject.pm 27089 +usr/bin/ibus 27088 +usr/lib/x86_64-linux-gnu/libical.so.3.0.9 27087 +usr/lib/x86_64-linux-gnu/girepository-1.0/Notify-0.7.typelib 27071 +usr/lib/x86_64-linux-gnu/libgdata.so.22.5.2 27070 +usr/lib/python3/dist-packages/dbus/_compat.py 27069 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Introspector.pm 27068 +usr/local/lib/tails-dbus-proxy 27067 +usr/lib/x86_64-linux-gnu/libwpe-1.0.so.1.5.1 27066 +usr/share/perl5/XML/Twig.pm 27063 +usr/local/bin/tails-ask-again 27061 +usr/lib/x86_64-linux-gnu/libWPEBackend-fdo-1.0.so.1.6.3 27060 +usr/lib/x86_64-linux-gnu/libjavascriptcoregtk-4.0.so.18.22.14 27059 +usr/bin/systemd-detect-virt 27058 +usr/lib/python3/dist-packages/dbus/exceptions.py 27056 +usr/share/perl/5.32.1/UNIVERSAL.pm 27055 +usr/lib/x86_64-linux-gnu/perl-base/utf8.pm 27054 +usr/lib/python3/dist-packages/dbus/types.py 27053 +usr/lib/python3/dist-packages/_dbus_bindings.cpython-39-x86_64-linux-gnu.so 27052 +usr/lib/python3/dist-packages/dbus/_dbus.py 27051 +usr/lib/python3/dist-packages/dbus/bus.py 27050 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser.pm 27049 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/Parser/Expat.pm 27048 +usr/lib/x86_64-linux-gnu/libwoff2dec.so.1.0.2 27047 +usr/lib/x86_64-linux-gnu/libharfbuzz-icu.so.0.20704.0 27046 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/Parser/Expat/Expat.so 27045 +usr/lib/python3/dist-packages/dbus/connection.py 27044 +usr/lib/x86_64-linux-gnu/libwebpdemux.so.2.0.3 27043 +usr/lib/x86_64-linux-gnu/libenchant-2.so.2.2.15 27042 +usr/lib/x86_64-linux-gnu/libhyphen.so.0.3.0 27041 +usr/lib/x86_64-linux-gnu/libXt.so.6.0.0 27040 +usr/lib/python3/dist-packages/dbus/lowlevel.py 27039 +usr/lib/x86_64-linux-gnu/libmanette-0.2.so.0 27038 +usr/lib/x86_64-linux-gnu/perl-base/File/Glob.pm 27037 +usr/bin/nohup 27036 +usr/lib/x86_64-linux-gnu/perl-base/auto/File/Glob/Glob.so 27035 +usr/lib/python3/dist-packages/dbus/proxies.py 27034 +usr/lib/python3/dist-packages/dbus/_expat_introspect_parser.py 27033 +usr/bin/xdg-dbus-proxy 27032 +usr/share/fonts/opentype/noto/NotoSansCJK-Regular.ttc 27031 +usr/lib/x86_64-linux-gnu/libssl3.so 27029 +usr/lib/x86_64-linux-gnu/libwoff2common.so.1.0.2 27028 +usr/sbin/ferm 27026 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/ASyncReply.pm 27025 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Annotation.pm 27024 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockConnection.pm 27023 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Error.pm 27022 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockMessage.pm 27021 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Test/MockIterator.pm 27020 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/Binding/Value.pm 27019 +usr/share/perl5/Desktop/Notify/Notification.pm 27018 +usr/share/perl5/Class/Accessor.pm 27017 +etc/ferm/ferm.conf 27016 +usr/lib/x86_64-linux-gnu/xtables/libipt_REDIRECT.so 27015 +usr/lib/x86_64-linux-gnu/xtables/libxt_udp.so 27014 +usr/lib/x86_64-linux-gnu/xtables/libxt_multiport.so 27013 +usr/lib/x86_64-linux-gnu/xtables/libxt_owner.so 27012 +usr/lib/x86_64-linux-gnu/xtables/libipt_LOG.so 27011 +usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Name.pm 27010 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Name/Name.so 27009 +usr/lib/x86_64-linux-gnu/xtables/libip6t_LOG.so 27008 +usr/lib/x86_64-linux-gnu/xtables/libip6t_REJECT.so 27007 +etc/services 27006 usr/share/perl/5.32.1/English.pm 27005 usr/share/perl5/Locale/TextDomain.pm 27004 usr/share/perl5/Locale/Messages.pm 27003 usr/share/perl5/Locale/gettext_xs.pm 27002 usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Locale/gettext_xs/gettext_xs.so 27001 -etc/wpa_supplicant/ifupdown.sh 27000 -etc/wpa_supplicant/functions.sh 26999 -usr/share/perl5/File/ShareDir.pm 26998 -usr/share/perl5/Class/Inspector.pm 26997 -usr/share/perl5/List/MoreUtils.pm 26996 -usr/share/perl5/List/MoreUtils/PP.pm 26995 -usr/lib/x86_64-linux-gnu/perl5/5.32/List/MoreUtils/XS.pm 26994 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/List/MoreUtils/XS/XS.so 26993 -usr/share/perl5/Exporter/Tiny.pm 26992 -usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util.pm 26991 -usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util/PP.pm 26990 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Util/Util.so 26989 -usr/share/perl5/URI.pm 26988 -usr/share/perl5/URI/Escape.pm 26987 -usr/local/lib/run-with-user-env 26982 -sbin/runuser 26981 -etc/pam.d/runuser 26980 -usr/share/X11/xkb/symbols/kr 26979 -usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 26978 -usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 26977 -usr/lib/systemd/user/exit.target 26976 -usr/lib/systemd/user/systemd-exit.service 26972 -usr/local/lib/dump-user-env 26970 -usr/lib/python3/dist-packages/tailslib/userenv.py 26968 -usr/lib/systemd/user/evolution-source-registry.service 26965 -usr/local/lib/run-with-env 26964 -usr/libexec/evolution-source-registry 26962 -usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 26961 -usr/lib/x86_64-linux-gnu/libdb-5.3.so 26960 -usr/lib/locale/C.UTF-8/LC_CTYPE 26959 -usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 26952 -usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 26951 -usr/lib/evolution-data-server/registry-modules/module-google-backend.so 26950 -usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 26949 -usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 26948 -usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 26947 -usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 26946 -usr/bin/nautilus 26945 -usr/share/icons/Adwaita/16x16/ui/pan-end-symbolic.symbolic.png 26944 -usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 26943 -usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 26942 -usr/lib/systemd/user/tca.service 26941 -usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 26940 -usr/local/bin/tca 26938 -usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 26937 -usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 26936 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls 26935 -usr/lib/evolution-data-server/camel-providers/libcamellocal.urls 26934 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls 26933 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls 26932 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls 26931 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls 26930 -usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so 26929 -usr/lib/evolution-data-server/camel-providers/libcamelnntp.so 26928 -usr/lib/evolution-data-server/camel-providers/libcamellocal.so 26927 -usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so 26926 -usr/lib/evolution-data-server/camel-providers/libcamelpop3.so 26925 -usr/lib/python3/dist-packages/tailslib/greeter.py 26924 -usr/lib/evolution-data-server/camel-providers/libcamelimapx.so 26923 -usr/lib/python3/dist-packages/tailslib/shell.py 26922 -usr/lib/python3/dist-packages/tca/__init__.py 26921 -usr/lib/python3/dist-packages/tca/config.py 26920 -usr/libexec/gvfsd-trash 26919 -usr/share/zoneinfo/zone.tab 26918 -usr/share/zoneinfo/EST 26917 -usr/share/zoneinfo/Etc/GMT 26916 -usr/share/zoneinfo/MST 26915 -usr/local/lib/run-tca-in-netns 26914 -usr/share/zoneinfo/posix/EST 26913 -usr/share/zoneinfo/posix/Etc/GMT 26912 -usr/share/zoneinfo/posix/Etc/UTC 26911 -usr/share/thumbnailers/evince.thumbnailer 26910 -usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 26909 -usr/share/zoneinfo/posix/MST 26908 -usr/lib/python3/dist-packages/tailslib/fd.py 26907 -usr/share/thumbnailers/librsvg.thumbnailer 26906 -usr/share/thumbnailers/totem.thumbnailer 26905 +usr/share/perl5/File/ShareDir.pm 27000 +usr/share/perl5/Class/Inspector.pm 26999 +usr/share/perl5/List/MoreUtils.pm 26998 +usr/share/perl5/List/MoreUtils/PP.pm 26997 +usr/lib/x86_64-linux-gnu/perl5/5.32/List/MoreUtils/XS.pm 26996 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/List/MoreUtils/XS/XS.so 26995 +usr/share/perl5/Exporter/Tiny.pm 26994 +usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util.pm 26993 +usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Util/PP.pm 26992 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Util/Util.so 26991 +usr/share/perl5/URI.pm 26990 +usr/share/perl5/URI/Escape.pm 26989 +etc/network/if-up.d/ethtool 26988 +etc/wpa_supplicant/ifupdown.sh 26987 +etc/wpa_supplicant/functions.sh 26986 +usr/local/lib/run-with-user-env 26981 +sbin/runuser 26980 +etc/pam.d/runuser 26979 +usr/share/X11/xkb/symbols/kr 26978 +usr/share/icons/hicolor/scalable/status/tor-disconnected-symbolic.svg 26977 +usr/share/icons/Adwaita/16x16/devices/network-wired-symbolic.symbolic.png 26976 +usr/local/lib/dump-user-env 26972 +usr/lib/systemd/user/exit.target 26970 +usr/lib/systemd/user/systemd-exit.service 26968 +usr/lib/python3/dist-packages/tailslib/userenv.py 26967 +usr/local/lib/run-with-env 26966 +usr/lib/locale/C.UTF-8/LC_CTYPE 26965 +usr/bin/nautilus 26958 +usr/lib/systemd/user/tca.service 26957 +usr/lib/systemd/user/evolution-source-registry.service 26956 +usr/local/bin/tca 26954 +usr/share/icons/Adwaita/16x16/ui/pan-end-symbolic.symbolic.png 26953 +usr/libexec/evolution-source-registry 26951 +usr/lib/x86_64-linux-gnu/libebackend-1.2.so.10.0.0 26950 +usr/lib/x86_64-linux-gnu/libdb-5.3.so 26949 +usr/lib/x86_64-linux-gnu/libnautilus-extension.so.1.5.0 26948 +usr/lib/x86_64-linux-gnu/libgnome-autoar-0.so.0.0.0 26947 +usr/libexec/gvfsd-trash 26946 +usr/lib/python3/dist-packages/tailslib/greeter.py 26945 +usr/lib/python3/dist-packages/tailslib/shell.py 26944 +usr/lib/python3/dist-packages/tca/__init__.py 26943 +usr/lib/python3/dist-packages/tca/config.py 26942 +usr/lib/evolution-data-server/registry-modules/module-cache-reaper.so 26941 +usr/lib/evolution-data-server/registry-modules/module-gnome-online-accounts.so 26940 +usr/lib/evolution-data-server/registry-modules/module-google-backend.so 26939 +usr/lib/evolution-data-server/registry-modules/module-oauth2-services.so 26938 +usr/lib/evolution-data-server/registry-modules/module-outlook-backend.so 26937 +usr/lib/evolution-data-server/registry-modules/module-secret-monitor.so 26936 +usr/lib/evolution-data-server/registry-modules/module-trust-prompt.so 26935 +usr/local/lib/run-tca-in-netns 26934 +usr/share/thumbnailers/evince.thumbnailer 26933 +usr/share/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer 26932 +usr/share/thumbnailers/librsvg.thumbnailer 26931 +usr/share/thumbnailers/totem.thumbnailer 26930 +usr/lib/evolution-data-server/registry-modules/module-webdav-backend.so 26929 +usr/lib/evolution-data-server/registry-modules/module-yahoo-backend.so 26928 +usr/lib/evolution-data-server/credential-modules/module-credentials-goa.so 26927 +usr/lib/evolution-data-server/camel-providers/libcamelimapx.urls 26926 +usr/lib/evolution-data-server/camel-providers/libcamellocal.urls 26925 +usr/lib/evolution-data-server/camel-providers/libcamelnntp.urls 26924 +usr/lib/evolution-data-server/camel-providers/libcamelpop3.urls 26923 +usr/lib/evolution-data-server/camel-providers/libcamelsendmail.urls 26922 +usr/lib/evolution-data-server/camel-providers/libcamelsmtp.urls 26921 +usr/lib/evolution-data-server/camel-providers/libcamelsendmail.so 26920 +usr/lib/evolution-data-server/camel-providers/libcamelnntp.so 26919 +usr/lib/evolution-data-server/camel-providers/libcamellocal.so 26918 +usr/lib/evolution-data-server/camel-providers/libcamelsmtp.so 26917 +usr/lib/evolution-data-server/camel-providers/libcamelpop3.so 26916 +usr/lib/evolution-data-server/camel-providers/libcamelimapx.so 26915 +usr/lib/python3/dist-packages/tailslib/fd.py 26914 +usr/share/zoneinfo/zone.tab 26913 +usr/share/zoneinfo/EST 26912 +usr/share/zoneinfo/Etc/GMT 26911 +usr/share/zoneinfo/MST 26910 +usr/share/zoneinfo/posix/EST 26909 +usr/share/zoneinfo/posix/Etc/GMT 26908 +usr/share/zoneinfo/posix/Etc/UTC 26907 +usr/lib/python3/dist-packages/tailslib/netnsdrop.py 26906 +usr/share/zoneinfo/posix/MST 26905 usr/share/icons/Adwaita/48x48/places/user-trash.png 26904 usr/share/pixmaps/whisperback.svg 26903 usr/share/icons/Adwaita/24x24/emblems/emblem-symbolic-link.png 26902 -usr/lib/systemd/user/evolution-calendar-factory.service 26901 -usr/libexec/evolution-calendar-factory 26899 -usr/lib/x86_64-linux-gnu/libedata-cal-2.0.so.1.0.0 26898 -usr/lib/python3/dist-packages/tailslib/netnsdrop.py 26897 -usr/lib/python3/dist-packages/tailslib/persistence.py 26896 -usr/lib/python3/dist-packages/tailslib/utils.py 26895 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 26893 -usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 26892 -usr/lib/x86_64-linux-gnu/libebook-1.2.so.20.1.3 26891 -usr/local/lib/tca-portal 26890 -usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.3.0.0 26889 -usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.26.0.0 26888 -usr/lib/x86_64-linux-gnu/libphonenumber.so.8.12 26887 -usr/bin/bwrap 26886 -usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 26884 -usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 26883 -usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 26882 -usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 26881 -usr/lib/python3/dist-packages/tca/application.py 26874 -usr/lib/python3/dist-packages/tinyrpc/__init__.py 26873 -usr/lib/python3/dist-packages/tinyrpc/protocols/__init__.py 26871 -usr/lib/python3/dist-packages/tinyrpc/exc.py 26869 -usr/lib/python3/dist-packages/tinyrpc/client.py 26867 -usr/lib/python3/dist-packages/tinyrpc/protocols/jsonrpc.py 26865 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 26864 -usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 26863 -usr/lib/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so 26862 -usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 26860 -usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 26859 -usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 26858 -usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 26857 -usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 26856 -usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 26855 -usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 26854 -usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 26853 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 26852 -usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 26851 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 26850 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 26849 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 26848 -usr/lib/x86_64-linux-gnu/libpython3.9.so.1.0 26847 -usr/lib/systemd/user/evolution-addressbook-factory.service 26841 -usr/lib/python3/dist-packages/systemd/__init__.py 26840 -usr/lib/python3/dist-packages/systemd/daemon.py 26838 -usr/lib/python3/dist-packages/systemd/_daemon.cpython-39-x86_64-linux-gnu.so 26836 -usr/lib/python3/dist-packages/tailslib/logutils.py 26835 -usr/libexec/evolution-addressbook-factory 26833 -usr/lib/python3/dist-packages/prctl.py 26829 -usr/lib/python3/dist-packages/_prctl.cpython-39-x86_64-linux-gnu.so 26827 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 26826 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 26825 -usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 26824 -usr/lib/python3.9/multiprocessing/queues.py 26823 -usr/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so 26821 -usr/lib/python3.9/multiprocessing/connection.py 26820 -usr/lib/python3.9/multiprocessing/util.py 26812 -usr/lib/python3.9/multiprocessing/synchronize.py 26810 -usr/lib/python3.9/multiprocessing/popen_fork.py 26808 -usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 26805 -usr/share/nautilus-python/extensions/mat2.py 26803 +usr/lib/python3/dist-packages/tailslib/persistence.py 26901 +usr/lib/python3/dist-packages/tailslib/utils.py 26900 +usr/local/lib/tca-portal 26898 +usr/lib/systemd/user/evolution-calendar-factory.service 26897 +usr/libexec/evolution-calendar-factory 26895 +usr/lib/x86_64-linux-gnu/libedata-cal-2.0.so.1.0.0 26894 +usr/bin/bwrap 26893 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libevince-properties-page.so 26892 +usr/lib/x86_64-linux-gnu/libevdocument3.so.4.0.0 26891 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcaldav.so 26887 +usr/lib/evolution-data-server/calendar-backends/libecalbackendcontacts.so 26886 +usr/lib/x86_64-linux-gnu/libebook-1.2.so.20.1.3 26885 +usr/lib/x86_64-linux-gnu/libebook-contacts-1.2.so.3.0.0 26884 +usr/lib/x86_64-linux-gnu/libsynctex.so.2.0.0 26882 +usr/lib/x86_64-linux-gnu/evince/4/backends/comicsdocument.evince-backend 26881 +usr/lib/x86_64-linux-gnu/evince/4/backends/djvudocument.evince-backend 26880 +usr/lib/x86_64-linux-gnu/evince/4/backends/dvidocument.evince-backend 26879 +usr/lib/x86_64-linux-gnu/evince/4/backends/pdfdocument.evince-backend 26877 +usr/lib/x86_64-linux-gnu/evince/4/backends/psdocument.evince-backend 26876 +usr/lib/x86_64-linux-gnu/evince/4/backends/tiffdocument.evince-backend 26875 +usr/lib/x86_64-linux-gnu/evince/4/backends/xpsdocument.evince-backend 26874 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libgtkhash-properties-nautilus.so 26873 +usr/lib/x86_64-linux-gnu/libb2.so.1.0.4 26872 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-fileroller.so 26871 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-image-properties.so 26869 +usr/lib/x86_64-linux-gnu/libedata-book-1.2.so.26.0.0 26867 +usr/lib/x86_64-linux-gnu/libphonenumber.so.8.12 26866 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-python.so 26865 +usr/lib/x86_64-linux-gnu/libpython3.9.so.1.0 26864 +usr/lib/python3/dist-packages/tinyrpc/__init__.py 26863 +usr/lib/python3/dist-packages/tinyrpc/protocols/__init__.py 26861 +usr/lib/python3/dist-packages/tinyrpc/exc.py 26859 +usr/lib/python3/dist-packages/tinyrpc/client.py 26857 +usr/lib/python3/dist-packages/tinyrpc/protocols/jsonrpc.py 26855 +usr/lib/evolution-data-server/calendar-backends/libecalbackendfile.so 26853 +usr/lib/evolution-data-server/calendar-backends/libecalbackendgtasks.so 26852 +usr/lib/evolution-data-server/calendar-backends/libecalbackendhttp.so 26851 +usr/lib/evolution-data-server/calendar-backends/libecalbackendweather.so 26850 +usr/lib/python3/dist-packages/systemd/__init__.py 26844 +usr/lib/python3/dist-packages/systemd/daemon.py 26842 +usr/lib/python3/dist-packages/systemd/_daemon.cpython-39-x86_64-linux-gnu.so 26840 +usr/lib/python3/dist-packages/tailslib/logutils.py 26839 +usr/lib/evolution-data-server/calendar-backends/libecalbackendwebdavnotes.so 26834 +usr/lib/python3/dist-packages/prctl.py 26833 +usr/lib/python3/dist-packages/_prctl.cpython-39-x86_64-linux-gnu.so 26831 +usr/lib/python3.9/multiprocessing/queues.py 26830 +usr/lib/python3.9/lib-dynload/_multiprocessing.cpython-39-x86_64-linux-gnu.so 26828 +usr/lib/python3/dist-packages/tca/application.py 26827 +usr/lib/python3.9/multiprocessing/connection.py 26826 +usr/lib/python3.9/multiprocessing/util.py 26824 +usr/lib/python3.9/multiprocessing/synchronize.py 26822 +usr/lib/python3.9/multiprocessing/popen_fork.py 26820 +usr/lib/systemd/user/evolution-addressbook-factory.service 26818 +usr/libexec/evolution-addressbook-factory 26816 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendcarddav.so 26815 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendfile.so 26814 +usr/lib/evolution-data-server/addressbook-backends/libebookbackendldap.so 26813 +usr/lib/x86_64-linux-gnu/girepository-1.0/Nautilus-3.0.typelib 26812 +usr/share/nautilus-python/extensions/mat2.py 26810 usr/lib/python3/dist-packages/libmat2/__init__.py 26802 usr/lib/python3/dist-packages/libmat2/exiftool.py 26801 usr/lib/python3/dist-packages/libmat2/abstract.py 26800 @@ -4437,511 +4440,792 @@ usr/lib/python3/dist-packages/libmat2/parser_factory.py 26797 etc/mime.types 26796 usr/lib/python3/dist-packages/libmat2/archive.py 26795 usr/lib/python3/dist-packages/libmat2/audio.py 26794 -usr/lib/python3/dist-packages/mutagen/__init__.py 26792 -usr/lib/python3/dist-packages/mutagen/_util.py 26791 -usr/lib/python3.9/decimal.py 26790 -usr/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so 26789 -usr/lib/python3/dist-packages/dbus/mainloop/__init__.py 26788 -usr/lib/python3/dist-packages/dbus/mainloop/glib.py 26787 -usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-39-x86_64-linux-gnu.so 26786 -usr/lib/python3/dist-packages/tca/ui/__init__.py 26783 -usr/lib/python3/dist-packages/tca/ui/main_window.py 26782 -usr/lib/x86_64-linux-gnu/libmpdec.so.2.5.1 26781 -usr/lib/python3.9/numbers.py 26780 -usr/lib/python3/dist-packages/mutagen/_file.py 26779 -usr/lib/python3/dist-packages/mutagen/_tags.py 26778 -usr/lib/python3/dist-packages/libmat2/epub.py 26777 -usr/lib/python3.9/uuid.py 26776 -usr/lib/python3.9/lib-dynload/_uuid.cpython-39-x86_64-linux-gnu.so 26775 -usr/lib/python3.9/xml/etree/__init__.py 26774 -usr/lib/python3.9/xml/etree/ElementTree.py 26773 -usr/lib/python3/dist-packages/pytz/__init__.py 26772 -usr/lib/python3/dist-packages/pytz/exceptions.py 26771 -usr/lib/python3/dist-packages/pytz/lazy.py 26770 -usr/lib/python3.9/xml/etree/ElementPath.py 26769 -usr/lib/python3/dist-packages/pytz/tzinfo.py 26768 -usr/lib/python3/dist-packages/pytz/tzfile.py 26767 -usr/lib/python3/dist-packages/libmat2/office.py 26766 -usr/lib/python3/dist-packages/libmat2/harmless.py 26765 -usr/lib/python3/dist-packages/tca/ui/asyncutils.py 26764 -usr/lib/python3/dist-packages/libmat2/images.py 26759 -usr/lib/python3.9/imghdr.py 26757 -usr/lib/python3/dist-packages/libmat2/pdf.py 26756 -usr/lib/python3.9/distutils/__init__.py 26755 -usr/lib/python3.9/distutils/version.py 26754 -usr/lib/x86_64-linux-gnu/girepository-1.0/Poppler-0.18.typelib 26753 -usr/lib/python3/dist-packages/tca/torutils.py 26752 -usr/lib/python3/dist-packages/tca/ui/dialogs.py 26751 -usr/lib/python3/dist-packages/libmat2/torrent.py 26750 -usr/lib/python3/dist-packages/libmat2/web.py 26749 -usr/lib/python3.9/html/__init__.py 26748 -usr/lib/python3.9/html/entities.py 26747 -usr/lib/python3.9/html/parser.py 26746 -usr/lib/python3.9/_markupbase.py 26745 -usr/share/nautilus-python/extensions/onionshare-nautilus.py 26744 -usr/lib/python3/dist-packages/tca/timeutils.py 26743 -etc/onion-grater.d/onioncircuits.yml 26741 -etc/onion-grater.d/onionshare.yml 26740 -etc/onion-grater.d/tor-browser.yml 26739 -etc/onion-grater.d/tor-connection-assistant.yml 26738 -usr/share/onionshare/locale/am.json 26737 -usr/share/onionshare/locale/ar.json 26736 -usr/share/onionshare/locale/bg.json 26735 -usr/share/onionshare/locale/bn.json 26734 -usr/share/onionshare/locale/ca.json 26733 -usr/share/onionshare/locale/cs.json 26732 -usr/share/onionshare/locale/da.json 26731 -usr/share/onionshare/locale/de.json 26730 -usr/share/onionshare/locale/el.json 26729 -usr/share/onionshare/locale/en.json 26728 -usr/share/onionshare/locale/eo.json 26727 -usr/share/onionshare/locale/es.json 26726 -usr/share/onionshare/locale/fa.json 26725 -usr/share/onionshare/locale/fi.json 26724 -usr/share/onionshare/locale/fr.json 26723 -usr/share/onionshare/locale/ga.json 26722 -usr/share/onionshare/locale/gu.json 26721 -usr/share/onionshare/locale/he.json 26720 -usr/share/onionshare/locale/hi.json 26719 -usr/share/onionshare/locale/hu.json 26718 -usr/share/onionshare/locale/id.json 26717 -usr/share/onionshare/locale/is.json 26716 -usr/share/onionshare/locale/it.json 26715 -usr/share/onionshare/locale/ja.json 26714 -usr/share/onionshare/locale/ka.json 26713 -usr/share/onionshare/locale/km.json 26712 -usr/share/onionshare/locale/ko.json 26711 -usr/share/onionshare/locale/lg.json 26710 -usr/share/onionshare/locale/mk.json 26709 -usr/share/onionshare/locale/ms.json 26708 -usr/share/onionshare/locale/nb.json 26707 -usr/share/onionshare/locale/nl.json 26706 -usr/share/onionshare/locale/pa.json 26705 -usr/share/onionshare/locale/pl.json 26704 -usr/share/onionshare/locale/pt_BR.json 26703 -usr/share/onionshare/locale/pt_PT.json 26702 -usr/share/onionshare/locale/ro.json 26701 -usr/share/onionshare/locale/ru.json 26700 -usr/share/onionshare/locale/sl.json 26699 -usr/share/onionshare/locale/sn.json 26698 -usr/share/onionshare/locale/sr_Latn.json 26697 -usr/share/onionshare/locale/sv.json 26696 -usr/share/onionshare/locale/sw.json 26695 -usr/share/onionshare/locale/te.json 26694 -usr/share/onionshare/locale/tr.json 26693 -usr/share/onionshare/locale/uk.json 26692 -usr/share/onionshare/locale/wo.json 26691 -usr/share/onionshare/locale/yo.json 26690 -usr/share/onionshare/locale/zh_Hans.json 26689 -usr/share/onionshare/locale/zh_Hant.json 26688 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 26687 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 26686 -usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 26685 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 26684 -usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 26683 -usr/share/tails/tca/tca.css 26682 -usr/share/tails/tca/main.ui 26681 -lib/systemd/system/htpdate.service 26680 -etc/default/htpdate.pools 26679 -usr/local/lib/tor_variable 26677 -usr/share/icons/Adwaita/16x16/ui/window-minimize-symbolic.symbolic.png 26659 -usr/share/icons/Adwaita/16x16/ui/window-maximize-symbolic.symbolic.png 26658 -usr/share/icons/Adwaita/16x16/ui/window-close-symbolic.symbolic.png 26657 -usr/share/icons/Adwaita/16x16/status/image-missing.png 26656 -usr/share/icons/gnome/16x16/status/dialog-warning.png 26650 -usr/share/icons/Adwaita/16x16/legacy/go-previous.png 26647 -usr/share/doc/tails/website/about/relays.svg 26632 -usr/share/icons/Adwaita/24x24/mimetypes/application-x-executable.png 26623 -usr/share/icons/tor-connection.svg 26621 -usr/share/doc/tails/website/about/walkie-talkie.svg 26392 -usr/local/lib/tails-get-network-time 26391 -usr/lib/python3/dist-packages/pycurl.cpython-39-x86_64-linux-gnu.so 26390 -usr/lib/python3/dist-packages/tailslib/release.py 26389 -etc/tails-get-network-time.conf 26388 -etc/gai.conf 26387 -usr/lib/python3.9/_strptime.py 26386 -usr/local/lib/tails-set-date 26385 -usr/bin/unshare 26384 -usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 26383 -usr/local/lib/tor-pt-configuration-helper 26375 -usr/local/lib/tails-shell-library/common.sh 26374 -usr/local/lib/tails-shell-library/tor.sh 26373 -usr/libexec/ibus-engine-libpinyin 26366 -usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 26365 -usr/libexec/ibus-engine-hangul 26364 -usr/lib/x86_64-linux-gnu/libopencc.so.1.1.1 26363 -usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 26362 -usr/lib/ibus/ibus-engine-chewing 26361 -usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 26360 -usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.33 26359 -usr/lib/x86_64-linux-gnu/liblua5.4.so.0.0.0 26358 -usr/lib/x86_64-linux-gnu/libmarisa.so.0.0.0 26357 -usr/share/libhangul/hanja/hanja.txt 26356 -usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.33 26355 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 26354 -usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 26353 -usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 26352 -usr/share/themes/Adwaita/gtk-2.0/gtkrc 26351 -usr/share/themes/Adwaita/gtk-2.0/main.rc 26350 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 26349 -usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 26348 -usr/share/themes/Adwaita/gtk-2.0/apps.rc 26347 -usr/share/themes/Adwaita/gtk-2.0/hacks.rc 26346 -usr/share/themes/Default/gtk-2.0-key/gtkrc 26345 -usr/share/ibus-hangul/data/symbol.txt 26344 -usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 26339 -usr/local/bin/tails-security-check 26337 -usr/local/bin/tails-upgrade-frontend-wrapper 26335 -usr/share/perl5/Carp/Assert/More.pm 26334 -usr/share/perl5/Carp/Assert.pm 26333 -usr/share/perl/5.32.1/Fatal.pm 26332 -usr/share/perl/5.32.1/Tie/RefHash.pm 26331 -usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl 26330 -usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl 26329 -usr/share/perl/5.32.1/autodie/Util.pm 26328 -usr/share/perl/5.32.1/autodie/Scope/GuardStack.pm 26327 -usr/share/perl/5.32.1/autodie/Scope/Guard.pm 26326 -usr/local/share/perl/5.32.1/Tails/Download/HTTPS.pm 26321 -usr/share/tails/tca/default_bridges.txt 26319 -usr/share/perl5/Moo/sification.pm 26318 -usr/share/perl5/Moo/_strictures.pm 26317 -usr/share/perl5/Moo.pm 26316 -usr/share/perl5/Moo/_mro.pm 26315 -usr/lib/x86_64-linux-gnu/perl/5.32.1/mro.pm 26314 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/mro/mro.so 26312 -usr/share/perl5/Moo/_Utils.pm 26311 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Sub/Util.pm 26310 -usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 26309 -usr/share/perl5/Moo/Object.pm 26308 -usr/share/perl5/strictures.pm 26307 -usr/share/perl/5.32.1/autodie.pm 26306 -usr/share/perl5/IPC/System/Simple.pm 26305 -usr/share/perl/5.32.1/autodie/exception/system.pm 26304 -usr/share/perl/5.32.1/autodie/exception.pm 26303 -usr/lib/x86_64-linux-gnu/perl5/5.32/Function/Parameters.pm 26302 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Function/Parameters/Parameters.so 26301 -usr/share/perl5/Types/Standard.pm 26300 -usr/share/perl5/Type/Library.pm 26299 -usr/share/perl5/Eval/TypeTiny.pm 26298 -usr/share/perl5/Type/Tiny.pm 26297 -usr/share/perl5/Types/TypeTiny.pm 26296 -usr/lib/x86_64-linux-gnu/perl5/5.32/Type/Tiny/XS.pm 26295 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Type/Tiny/XS/XS.so 26294 -usr/lib/x86_64-linux-gnu/perl/5.32.1/B.pm 26293 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/B/B.so 26292 -usr/share/perl5/Type/Coercion.pm 26291 -usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl/Easy.pm 26289 -usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl.pm 26288 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/WWW/Curl/Curl.so 26287 -usr/local/sbin/htpdate 26286 -usr/share/perl5/namespace/clean.pm 26285 -usr/share/perl5/B/Hooks/EndOfScope.pm 26284 -usr/share/perl5/Module/Implementation.pm 26283 -usr/share/perl5/Module/Runtime.pm 26282 -usr/share/perl5/Try/Tiny.pm 26281 -usr/share/perl5/B/Hooks/EndOfScope/XS.pm 26280 -usr/lib/x86_64-linux-gnu/perl5/5.32/Variable/Magic.pm 26279 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Variable/Magic/Magic.so 26278 -usr/share/perl5/Sub/Exporter/Progressive.pm 26277 -usr/share/perl5/Package/Stash.pm 26276 -usr/lib/x86_64-linux-gnu/perl5/5.32/Package/Stash/XS.pm 26275 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Package/Stash/XS/XS.so 26274 -usr/share/perl/5.32.1/version.pm 26273 -usr/share/perl5/namespace/clean/_Util.pm 26272 -usr/share/perl/5.32.1/version/regex.pm 26271 -usr/share/perl5/Method/Generate/Constructor.pm 26270 -usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime.pm 26269 -usr/share/perl5/Sub/Quote.pm 26268 -usr/share/perl5/Sub/Defer.pm 26267 -usr/share/perl5/namespace/autoclean.pm 26266 -usr/share/perl5/Method/Generate/Accessor.pm 26265 -usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Duration.pm 26264 -usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor.pm 26263 -usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Helpers.pm 26262 -usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor/Heavy.pm 26261 -usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Types.pm 26260 -usr/share/perl5/Specio/Exporter.pm 26259 -usr/share/perl5/Specio/Helpers.pm 26258 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Class/XSAccessor/XSAccessor.so 26257 -usr/lib/x86_64-linux-gnu/perl5/5.32/XString.pm 26256 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XString/XString.so 26255 -usr/share/perl5/Specio/Registry.pm 26254 -usr/share/perl5/Specio.pm 26253 -usr/share/perl5/Specio/Declare.pm 26252 -usr/share/perl5/Specio/Coercion.pm 26251 -usr/share/perl5/Specio/OO.pm 26250 -usr/share/perl5/MRO/Compat.pm 26249 -usr/share/perl5/XML/Atom.pm 26248 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML.pm 26247 -usr/share/perl5/Role/Tiny.pm 26246 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Error.pm 26245 -usr/share/perl5/Specio/PartialDump.pm 26244 -usr/share/perl5/Specio/TypeChecks.pm 26243 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/NodeList.pm 26242 -usr/share/perl5/Role/Tiny/With.pm 26241 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Boolean.pm 26240 -usr/share/perl5/Specio/Role/Inlinable.pm 26239 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Number.pm 26238 -usr/share/perl5/Eval/Closure.pm 26237 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Literal.pm 26236 -usr/share/perl5/Specio/Constraint/Simple.pm 26235 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/XPathContext.pm 26234 -usr/share/perl5/Specio/Constraint/Role/Interface.pm 26233 -usr/share/perl5/Specio/Exception.pm 26232 -usr/share/perl5/Devel/StackTrace.pm 26231 -usr/share/perl5/Devel/StackTrace/Frame.pm 26230 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/LibXML/LibXML.so 26229 -usr/share/perl5/Specio/DeclaredAt.pm 26228 -usr/share/perl5/Specio/Library/Builtins.pm 26227 -usr/share/perl5/Specio/Constraint/Parameterizable.pm 26226 -usr/share/perl5/Specio/Constraint/Parameterized.pm 26225 -usr/share/perl5/Specio/Library/Numeric.pm 26224 -usr/share/perl5/Specio/Library/String.pm 26223 -usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Identify.pm 26222 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Identify/Identify.so 26221 -usr/share/perl5/Specio/Constraint/AnyCan.pm 26220 -usr/share/perl5/Specio/Constraint/Role/CanType.pm 26219 -usr/share/perl5/Specio/Constraint/ObjectIsa.pm 26218 -usr/share/perl5/Specio/Constraint/Role/IsaType.pm 26217 -usr/share/perl5/Specio/Constraint/Enum.pm 26216 -usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/AttributeHash.pm 26215 -usr/share/perl5/Specio/Constraint/Union.pm 26214 -usr/share/perl5/XML/SAX/Exception.pm 26213 -usr/share/perl5/XML/Atom/ErrorHandler.pm 26212 -usr/share/perl5/Specio/Constraint/ObjectCan.pm 26211 -usr/share/perl5/XML/Atom/Feed.pm 26210 -usr/share/perl5/XML/Atom/Thing.pm 26209 -usr/share/perl5/XML/Atom/Base.pm 26208 -usr/share/perl5/Class/Data/Inheritable.pm 26207 -usr/share/perl5/XML/Atom/Util.pm 26206 -usr/share/perl5/XML/Atom/Category.pm 26205 -usr/share/perl5/XML/Atom/Link.pm 26204 -usr/share/perl5/LWP/UserAgent.pm 26203 -usr/share/perl5/LWP/MemberMixin.pm 26202 -usr/share/perl5/HTTP/Request.pm 26201 -usr/share/perl5/HTTP/Message.pm 26200 -usr/share/perl5/Params/ValidationCompiler.pm 26199 -usr/share/perl5/Params/ValidationCompiler/Compiler.pm 26198 -usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 26197 -usr/share/perl5/HTTP/Headers.pm 26196 -usr/share/perl5/Exception/Class.pm 26195 -usr/share/perl5/Exception/Class/Base.pm 26194 -usr/lib/x86_64-linux-gnu/perl5/5.32/Clone.pm 26193 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Clone/Clone.so 26192 -usr/share/perl5/HTTP/Response.pm 26191 -usr/share/perl5/HTTP/Status.pm 26190 -usr/share/perl5/HTTP/Date.pm 26189 -usr/share/perl/5.32.1/Time/Local.pm 26188 -usr/share/perl5/DateTime/Locale.pm 26187 -usr/share/perl5/DateTime/Locale/Data.pm 26186 -usr/share/perl5/LWP.pm 26185 -usr/share/perl5/LWP/Protocol.pm 26184 -usr/share/perl5/XML/Atom/Entry.pm 26183 -usr/lib/x86_64-linux-gnu/perl/5.32.1/MIME/Base64.pm 26182 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/MIME/Base64/Base64.so 26181 -usr/share/perl5/XML/Atom/Person.pm 26180 -usr/share/perl5/XML/Atom/Content.pm 26179 -usr/share/perl5/DateTime/Locale/FromData.pm 26178 -usr/share/perl5/DateTime/Locale/Util.pm 26177 -usr/share/perl5/DateTime/TimeZone.pm 26176 -usr/share/perl5/DateTime/TimeZone/Catalog.pm 26175 -usr/share/perl5/DateTime/TimeZone/Floating.pm 26174 -usr/share/perl5/Class/Singleton.pm 26173 -usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 26172 -usr/share/perl5/DateTime/TimeZone/UTC.pm 26171 -usr/share/perl5/DateTime/TimeZone/Local.pm 26170 -usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 26169 -usr/lib/x86_64-linux-gnu/perl-base/integer.pm 26168 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/DateTime/DateTime.so 26167 -usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Infinite.pm 26166 -usr/share/perl5/DateTime/Format/DateParse.pm 26165 -usr/share/perl5/Date/Parse.pm 26164 -usr/share/perl5/Time/Zone.pm 26163 -usr/lib/x86_64-linux-gnu/perl/5.32.1/File/Spec/Functions.pm 26162 -usr/share/perl5/Getopt/Long/Descriptive.pm 26161 -usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate.pm 26160 -usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/Constants.pm 26159 -usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/XS.pm 26158 -usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Validate/XS/XS.so 26157 -usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 26156 -usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 26155 -usr/share/perl5/Sub/Exporter/Util.pm 26154 -usr/share/perl5/Data/OptList.pm 26153 -usr/share/perl5/Sub/Install.pm 26152 -usr/share/perl5/Sub/Exporter.pm 26151 -usr/share/perl5/IPC/Run.pm 26150 -usr/share/perl5/IPC/Run/Debug.pm 26149 -usr/share/perl5/IPC/Run/IO.pm 26148 -usr/share/perl5/IPC/Run/Timer.pm 26147 -usr/share/perl/5.32.1/open.pm 26146 -usr/share/perl5/String/Errf.pm 26145 -usr/share/perl5/String/Formatter.pm 26144 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Piece.pm 26143 -usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Seconds.pm 26142 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/Piece/Piece.so 26141 -usr/lib/x86_64-linux-gnu/perl/5.32.1/threads.pm 26140 -usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/threads/threads.so 26139 -usr/local/lib/https-get-expired 26138 -usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt 26137 -usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt 26136 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt 26135 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt 26134 -usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt 26133 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt 26132 -usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt 26131 -usr/share/ca-certificates/mozilla/GTS_Root_R3.crt 26130 -usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt 26129 -usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt 26128 -usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt 26127 -usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt 26126 -usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt 26125 -usr/share/ca-certificates/mozilla/GTS_Root_R1.crt 26124 -usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt 26123 -usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt 26122 -usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt 26121 -usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt 26120 -usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt 26119 -usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt 26118 -usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt 26117 -usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt 26116 -usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 26115 -usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt 26114 -usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt 26113 -usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt 26112 -usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt 26111 -usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt 26110 -usr/share/ca-certificates/mozilla/EC-ACC.crt 26109 -usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt 26108 -usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt 26107 -usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt 26106 -usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt 26105 -usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt 26104 -usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt 26103 -usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt 26102 -usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt 26101 -usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt 26100 -usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt 26099 -usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt 26098 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt 26097 -usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt 26096 -usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt 26095 -usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt 26094 -usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt 26093 -usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt 26092 -usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt 26091 -usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt 26090 -usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt 26089 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt 26088 -usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt 26087 -usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt 26086 -usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt 26085 -usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt 26084 -usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt 26083 -usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt 26082 -usr/share/ca-certificates/mozilla/GTS_Root_R2.crt 26081 -usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt 26080 -usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt 26079 -usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt 26078 -usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt 26077 -usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt 26076 -usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt 26075 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt 26074 -usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt 26073 -usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt 26072 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt 26071 -usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt 26070 -usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt 26069 -usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt 26068 -usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt 26067 -usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt 26066 -usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt 26065 -usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt 26064 -usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt 26063 -usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt 26062 -usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt 26061 -usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_FÅ‘tanúsÃtvány.crt 26060 -usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt 26059 -usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt 26058 -usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt 26057 -usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt 26056 -usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt 26055 -usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt 26054 -usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt 26053 -usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt 26052 -usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt 26051 -usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt 26050 -usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt 26049 -usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt 26048 -usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt 26047 -usr/share/ca-certificates/mozilla/Certigna.crt 26046 -usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt 26045 -usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt 26044 -usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt 26043 -usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt 26042 -usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt 26041 -usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt 26040 -usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt 26039 -usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt 26038 -usr/share/ca-certificates/mozilla/GTS_Root_R4.crt 26037 -usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt 26036 -usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt 26035 -usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt 26034 -usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt 26033 -usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt 26032 -usr/share/ca-certificates/mozilla/Izenpe.com.crt 26031 -usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt 26030 -usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt 26029 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt 26028 -usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt 26027 -usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt 26026 -usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt 26025 -usr/share/ca-certificates/mozilla/SecureTrust_CA.crt 26024 -usr/share/ca-certificates/mozilla/Secure_Global_CA.crt 26023 -usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt 26022 -usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt 26021 -usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt 26020 -usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt 26019 -usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt 26018 -usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt 26017 -usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt 26016 -usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt 26015 -usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt 26014 -usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt 26013 -usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt 26012 -usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt 26011 -usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt 26010 -usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt 26009 -lib/systemd/system/tails-additional-software-upgrade.path 26005 -lib/systemd/system/tails-additional-software-upgrade.service 26004 -usr/bin/gtk-launch 26003 -usr/local/bin/tor-browser 26002 -usr/bin/systemd-run 26001 -usr/local/lib/run-tor-browser-in-netns 26000 -usr/bin/tor-browser 25999 -usr/local/lib/tails-shell-library/tor-browser.sh 25998 -usr/local/lib/tails-shell-library/systemd.sh 25997 -usr/bin/7z 25996 -usr/lib/p7zip/7z 25995 -usr/lib/p7zip/7z.so 25994 -usr/local/lib/tor-browser/omni.ja 25993 -etc/tor-browser/locale-profiles/en-US.js 25992 -usr/local/lib/tor-browser/firefox.real 25991 -usr/local/lib/tor-browser/dependentlibs.list 25990 -usr/local/lib/tor-browser/libnspr4.so 25989 -usr/local/lib/tor-browser/libplc4.so 25988 -usr/local/lib/tor-browser/libplds4.so 25987 -usr/local/lib/tor-browser/libmozsandbox.so 25986 -usr/local/lib/tor-browser/liblgpllibs.so 25985 -usr/local/lib/tor-browser/libnssutil3.so 25984 -usr/local/lib/tor-browser/libnss3.so 25983 -usr/local/lib/tor-browser/libsmime3.so 25982 -usr/local/lib/tor-browser/libmozsqlite3.so 25981 -usr/local/lib/tor-browser/libssl3.so 25980 -usr/local/lib/tor-browser/libmozgtk.so 25979 -usr/local/lib/tor-browser/libmozwayland.so 25978 -usr/local/lib/tor-browser/libxul.so 25977 -usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 25976 -usr/lib/x86_64-linux-gnu/libpci.so.3.7.0 25975 -usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 25974 -usr/local/lib/tor-browser/browser/omni.ja 25973 -usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 25972 +usr/lib/python3/dist-packages/mutagen/__init__.py 26793 +usr/lib/python3/dist-packages/mutagen/_util.py 26792 +usr/lib/python3.9/decimal.py 26791 +usr/lib/python3.9/lib-dynload/_decimal.cpython-39-x86_64-linux-gnu.so 26790 +usr/lib/x86_64-linux-gnu/libmpdec.so.2.5.1 26789 +usr/lib/python3.9/numbers.py 26788 +usr/lib/python3/dist-packages/mutagen/_file.py 26787 +usr/lib/python3/dist-packages/mutagen/_tags.py 26786 +usr/lib/python3/dist-packages/libmat2/epub.py 26785 +usr/lib/python3.9/uuid.py 26784 +usr/lib/python3.9/lib-dynload/_uuid.cpython-39-x86_64-linux-gnu.so 26783 +usr/lib/python3.9/xml/etree/__init__.py 26782 +usr/lib/python3.9/xml/etree/ElementTree.py 26781 +usr/lib/python3.9/xml/etree/ElementPath.py 26780 +usr/lib/python3/dist-packages/libmat2/office.py 26779 +usr/lib/python3/dist-packages/libmat2/harmless.py 26777 +usr/lib/python3/dist-packages/libmat2/images.py 26776 +usr/lib/python3.9/imghdr.py 26775 +usr/lib/python3/dist-packages/libmat2/pdf.py 26774 +usr/lib/python3.9/distutils/__init__.py 26773 +usr/lib/python3.9/distutils/version.py 26772 +usr/lib/x86_64-linux-gnu/girepository-1.0/Poppler-0.18.typelib 26771 +usr/lib/python3/dist-packages/libmat2/torrent.py 26770 +usr/lib/python3/dist-packages/libmat2/web.py 26769 +usr/lib/python3.9/html/__init__.py 26768 +usr/lib/python3.9/html/entities.py 26767 +usr/lib/python3.9/html/parser.py 26766 +usr/lib/python3.9/_markupbase.py 26765 +usr/share/nautilus-python/extensions/onionshare-nautilus.py 26764 +usr/share/onionshare/locale/am.json 26762 +usr/share/onionshare/locale/ar.json 26761 +usr/share/onionshare/locale/bg.json 26760 +usr/share/onionshare/locale/bn.json 26759 +usr/share/onionshare/locale/ca.json 26758 +usr/share/onionshare/locale/cs.json 26757 +usr/share/onionshare/locale/da.json 26756 +usr/share/onionshare/locale/de.json 26755 +usr/share/onionshare/locale/el.json 26754 +usr/share/onionshare/locale/en.json 26753 +usr/share/onionshare/locale/eo.json 26752 +usr/share/onionshare/locale/es.json 26751 +usr/share/onionshare/locale/fa.json 26750 +usr/share/onionshare/locale/fi.json 26749 +usr/share/onionshare/locale/fr.json 26748 +usr/share/onionshare/locale/ga.json 26747 +usr/share/onionshare/locale/gu.json 26746 +usr/share/onionshare/locale/he.json 26745 +usr/share/onionshare/locale/hi.json 26744 +usr/share/onionshare/locale/hu.json 26743 +usr/share/onionshare/locale/id.json 26742 +usr/share/onionshare/locale/is.json 26741 +usr/share/onionshare/locale/it.json 26740 +usr/share/onionshare/locale/ja.json 26739 +usr/share/onionshare/locale/ka.json 26738 +usr/share/onionshare/locale/km.json 26737 +usr/share/onionshare/locale/ko.json 26736 +usr/lib/python3/dist-packages/dbus/mainloop/__init__.py 26735 +usr/lib/python3/dist-packages/dbus/mainloop/glib.py 26734 +usr/share/onionshare/locale/lg.json 26733 +usr/lib/python3/dist-packages/_dbus_glib_bindings.cpython-39-x86_64-linux-gnu.so 26732 +usr/share/onionshare/locale/mk.json 26731 +usr/lib/python3/dist-packages/tca/ui/__init__.py 26728 +usr/lib/python3/dist-packages/tca/ui/main_window.py 26727 +usr/share/onionshare/locale/ms.json 26726 +usr/share/onionshare/locale/nb.json 26725 +usr/share/onionshare/locale/nl.json 26724 +usr/share/onionshare/locale/pa.json 26723 +usr/share/onionshare/locale/pl.json 26722 +usr/share/onionshare/locale/pt_BR.json 26721 +usr/share/onionshare/locale/pt_PT.json 26720 +usr/share/onionshare/locale/ro.json 26719 +usr/share/onionshare/locale/ru.json 26718 +usr/share/onionshare/locale/sl.json 26717 +usr/share/onionshare/locale/sn.json 26716 +usr/share/onionshare/locale/sr_Latn.json 26715 +usr/share/onionshare/locale/sv.json 26714 +usr/share/onionshare/locale/sw.json 26713 +usr/share/onionshare/locale/te.json 26712 +usr/lib/python3/dist-packages/pytz/__init__.py 26711 +usr/share/onionshare/locale/tr.json 26710 +usr/share/onionshare/locale/uk.json 26709 +usr/share/onionshare/locale/wo.json 26708 +usr/share/onionshare/locale/yo.json 26707 +usr/share/onionshare/locale/zh_Hans.json 26706 +usr/lib/python3/dist-packages/pytz/exceptions.py 26705 +usr/share/onionshare/locale/zh_Hant.json 26704 +usr/lib/python3/dist-packages/pytz/lazy.py 26703 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-sendto.so 26702 +usr/lib/python3/dist-packages/pytz/tzinfo.py 26701 +usr/lib/python3/dist-packages/pytz/tzfile.py 26700 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libnautilus-wipe.so 26699 +usr/lib/x86_64-linux-gnu/libgsecuredelete.so.0.1.0 26698 +usr/lib/python3/dist-packages/tca/ui/asyncutils.py 26697 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libterminal-nautilus.so 26696 +usr/lib/python3/dist-packages/tca/torutils.py 26690 +usr/lib/python3/dist-packages/tca/ui/dialogs.py 26689 +usr/lib/x86_64-linux-gnu/nautilus/extensions-3.0/libtotem-properties-page.so 26688 +usr/lib/python3/dist-packages/tca/timeutils.py 26687 +etc/onion-grater.d/onioncircuits.yml 26685 +etc/onion-grater.d/onionshare.yml 26684 +etc/onion-grater.d/tor-browser.yml 26683 +etc/onion-grater.d/tor-connection-assistant.yml 26682 +usr/share/tails/tca/tca.css 26681 +usr/share/tails/tca/main.ui 26680 +lib/systemd/system/htpdate.service 26679 +etc/default/htpdate.pools 26678 +usr/local/lib/tor_variable 26676 +usr/share/icons/Adwaita/16x16/ui/window-minimize-symbolic.symbolic.png 26656 +usr/share/icons/Adwaita/16x16/ui/window-maximize-symbolic.symbolic.png 26655 +usr/share/icons/Adwaita/16x16/ui/window-close-symbolic.symbolic.png 26654 +usr/share/icons/Adwaita/16x16/status/image-missing.png 26653 +usr/share/icons/gnome/16x16/status/dialog-warning.png 26643 +usr/share/icons/Adwaita/16x16/legacy/go-previous.png 26636 +usr/share/doc/tails/website/about/relays.svg 26633 +usr/share/icons/Adwaita/24x24/mimetypes/application-x-executable.png 26627 +usr/share/icons/tor-connection.svg 26623 +usr/share/doc/tails/website/about/walkie-talkie.svg 26390 +usr/local/lib/tails-get-network-time 26389 +usr/lib/python3/dist-packages/pycurl.cpython-39-x86_64-linux-gnu.so 26388 +usr/lib/python3/dist-packages/tailslib/release.py 26387 +etc/tails-get-network-time.conf 26386 +etc/gai.conf 26385 +usr/lib/python3.9/_strptime.py 26384 +usr/local/lib/tails-set-date 26383 +usr/bin/unshare 26382 +usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf 26381 +var/lib/systemd/timers/stamp-e2scrub_all.timer 26380 +usr/local/lib/tor-pt-configuration-helper 26373 +usr/local/lib/tails-shell-library/common.sh 26372 +usr/local/lib/tails-shell-library/tor.sh 26371 +usr/share/icons/hicolor/scalable/status/tor-connected-symbolic.svg 26362 +usr/local/bin/tails-security-check 26359 +usr/local/bin/tails-upgrade-frontend-wrapper 26358 +usr/share/tails/tca/default_bridges.txt 26357 +usr/share/perl5/Carp/Assert/More.pm 26356 +usr/share/perl5/Carp/Assert.pm 26355 +usr/share/perl/5.32.1/Fatal.pm 26354 +usr/share/perl/5.32.1/Tie/RefHash.pm 26353 +usr/lib/x86_64-linux-gnu/perl-base/Config_heavy.pl 26352 +usr/lib/x86_64-linux-gnu/perl-base/Config_git.pl 26351 +usr/share/perl/5.32.1/autodie/Util.pm 26350 +usr/share/perl/5.32.1/autodie/Scope/GuardStack.pm 26349 +usr/share/perl/5.32.1/autodie/Scope/Guard.pm 26348 +usr/local/share/perl/5.32.1/Tails/Download/HTTPS.pm 26342 +usr/share/perl5/Moo/sification.pm 26341 +usr/share/perl5/Moo/_strictures.pm 26340 +usr/share/perl5/Moo.pm 26339 +usr/share/perl5/Moo/_mro.pm 26338 +usr/lib/x86_64-linux-gnu/perl/5.32.1/mro.pm 26337 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/mro/mro.so 26336 +usr/share/perl5/Moo/_Utils.pm 26335 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Sub/Util.pm 26334 +usr/share/perl5/Moo/HandleMoose/_TypeMap.pm 26333 +usr/share/perl5/Moo/Object.pm 26332 +usr/share/perl5/strictures.pm 26331 +usr/share/perl/5.32.1/autodie.pm 26330 +usr/share/perl5/IPC/System/Simple.pm 26329 +usr/share/perl/5.32.1/autodie/exception/system.pm 26328 +usr/share/perl/5.32.1/autodie/exception.pm 26327 +usr/lib/x86_64-linux-gnu/perl5/5.32/Function/Parameters.pm 26326 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Function/Parameters/Parameters.so 26325 +usr/share/perl5/Types/Standard.pm 26324 +usr/share/perl5/Type/Library.pm 26323 +usr/share/perl5/Eval/TypeTiny.pm 26322 +usr/share/perl5/Type/Tiny.pm 26320 +usr/share/perl5/Types/TypeTiny.pm 26319 +usr/lib/x86_64-linux-gnu/perl5/5.32/Type/Tiny/XS.pm 26318 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Type/Tiny/XS/XS.so 26316 +usr/local/sbin/htpdate 26315 +usr/share/perl/5.32.1/version.pm 26314 +usr/share/perl/5.32.1/version/regex.pm 26313 +usr/lib/x86_64-linux-gnu/perl/5.32.1/B.pm 26312 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/B/B.so 26311 +usr/share/perl5/Type/Coercion.pm 26310 +usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime.pm 26309 +usr/share/perl5/namespace/autoclean.pm 26308 +usr/share/perl5/B/Hooks/EndOfScope.pm 26307 +usr/share/perl5/Module/Implementation.pm 26306 +usr/share/perl5/Module/Runtime.pm 26305 +usr/share/perl5/Try/Tiny.pm 26304 +usr/share/perl5/B/Hooks/EndOfScope/XS.pm 26303 +usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl/Easy.pm 26302 +usr/lib/x86_64-linux-gnu/perl5/5.32/WWW/Curl.pm 26301 +usr/lib/x86_64-linux-gnu/perl5/5.32/Variable/Magic.pm 26300 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/WWW/Curl/Curl.so 26299 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Variable/Magic/Magic.so 26298 +usr/share/perl5/Sub/Exporter/Progressive.pm 26297 +usr/share/perl5/namespace/clean.pm 26296 +usr/share/perl5/Package/Stash.pm 26295 +usr/lib/x86_64-linux-gnu/perl5/5.32/Package/Stash/XS.pm 26294 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Package/Stash/XS/XS.so 26293 +usr/share/perl5/namespace/clean/_Util.pm 26292 +usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Duration.pm 26291 +usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Helpers.pm 26290 +usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Types.pm 26289 +usr/share/perl5/Specio/Exporter.pm 26288 +usr/share/perl5/Specio/Helpers.pm 26287 +usr/lib/x86_64-linux-gnu/perl5/5.32/XString.pm 26286 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XString/XString.so 26285 +usr/share/perl5/Specio/Registry.pm 26284 +usr/share/perl5/Method/Generate/Constructor.pm 26283 +usr/share/perl5/Sub/Quote.pm 26282 +usr/share/perl5/Specio.pm 26281 +usr/share/perl5/Sub/Defer.pm 26280 +usr/share/perl5/Specio/Declare.pm 26279 +usr/share/perl5/Specio/Coercion.pm 26278 +usr/share/perl5/Specio/OO.pm 26277 +usr/share/perl5/MRO/Compat.pm 26276 +usr/share/perl5/Method/Generate/Accessor.pm 26275 +usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor.pm 26274 +usr/lib/x86_64-linux-gnu/perl5/5.32/Class/XSAccessor/Heavy.pm 26273 +usr/share/perl5/Role/Tiny.pm 26272 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Class/XSAccessor/XSAccessor.so 26271 +usr/share/perl5/XML/Atom.pm 26270 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML.pm 26269 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Error.pm 26268 +usr/share/perl5/Specio/PartialDump.pm 26267 +usr/share/perl5/Specio/TypeChecks.pm 26266 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/NodeList.pm 26265 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Boolean.pm 26264 +usr/share/perl5/Role/Tiny/With.pm 26263 +usr/share/perl5/Specio/Role/Inlinable.pm 26262 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Number.pm 26261 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/Literal.pm 26260 +usr/share/perl5/Eval/Closure.pm 26259 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/XPathContext.pm 26258 +usr/share/perl5/Specio/Constraint/Simple.pm 26257 +usr/share/perl5/Specio/Constraint/Role/Interface.pm 26256 +usr/share/perl5/Specio/Exception.pm 26255 +usr/share/perl5/Devel/StackTrace.pm 26254 +usr/share/perl5/Devel/StackTrace/Frame.pm 26253 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/XML/LibXML/LibXML.so 26252 +usr/share/perl5/Specio/DeclaredAt.pm 26251 +usr/share/perl5/Specio/Library/Builtins.pm 26250 +usr/share/perl5/Specio/Constraint/Parameterizable.pm 26249 +usr/share/perl5/Specio/Constraint/Parameterized.pm 26248 +usr/lib/x86_64-linux-gnu/perl5/5.32/XML/LibXML/AttributeHash.pm 26247 +usr/share/perl5/Specio/Library/Numeric.pm 26246 +usr/share/perl5/XML/SAX/Exception.pm 26245 +usr/share/perl5/Specio/Library/String.pm 26244 +usr/lib/x86_64-linux-gnu/perl5/5.32/Sub/Identify.pm 26243 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Sub/Identify/Identify.so 26242 +usr/share/perl5/XML/Atom/ErrorHandler.pm 26241 +usr/share/perl5/Specio/Constraint/AnyCan.pm 26240 +usr/share/perl5/XML/Atom/Feed.pm 26239 +usr/share/perl5/XML/Atom/Thing.pm 26238 +usr/share/perl5/Specio/Constraint/Role/CanType.pm 26237 +usr/share/perl5/XML/Atom/Base.pm 26236 +usr/share/perl5/Class/Data/Inheritable.pm 26235 +usr/share/perl5/Specio/Constraint/ObjectIsa.pm 26234 +usr/share/perl5/XML/Atom/Util.pm 26233 +usr/share/perl5/Specio/Constraint/Role/IsaType.pm 26232 +usr/share/perl5/XML/Atom/Category.pm 26231 +usr/share/perl5/XML/Atom/Link.pm 26230 +usr/share/perl5/Specio/Constraint/Enum.pm 26229 +usr/share/perl5/LWP/UserAgent.pm 26228 +usr/share/perl5/LWP/MemberMixin.pm 26227 +usr/share/perl5/Specio/Constraint/Union.pm 26226 +usr/share/perl5/HTTP/Request.pm 26225 +usr/share/perl5/HTTP/Message.pm 26224 +usr/share/perl5/Specio/Constraint/ObjectCan.pm 26223 +usr/share/perl5/HTTP/Headers.pm 26222 +usr/lib/x86_64-linux-gnu/perl5/5.32/Clone.pm 26221 +usr/share/perl5/Params/ValidationCompiler.pm 26220 +usr/share/perl5/Params/ValidationCompiler/Compiler.pm 26219 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Clone/Clone.so 26218 +usr/share/perl5/Params/ValidationCompiler/Exceptions.pm 26217 +usr/share/perl5/Exception/Class.pm 26216 +usr/share/perl5/Exception/Class/Base.pm 26215 +usr/share/perl5/HTTP/Response.pm 26214 +usr/share/perl5/HTTP/Status.pm 26213 +usr/share/perl5/HTTP/Date.pm 26212 +usr/share/perl/5.32.1/Time/Local.pm 26211 +usr/share/perl5/DateTime/Locale.pm 26210 +usr/share/perl5/DateTime/Locale/Data.pm 26209 +usr/share/perl5/LWP.pm 26208 +usr/share/perl5/LWP/Protocol.pm 26207 +usr/share/perl5/XML/Atom/Entry.pm 26206 +usr/lib/x86_64-linux-gnu/perl/5.32.1/MIME/Base64.pm 26205 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/MIME/Base64/Base64.so 26204 +usr/share/perl5/XML/Atom/Person.pm 26203 +usr/share/perl5/XML/Atom/Content.pm 26202 +usr/share/perl5/DateTime/Locale/FromData.pm 26201 +usr/share/perl5/DateTime/Locale/Util.pm 26200 +usr/share/perl5/DateTime/TimeZone.pm 26199 +usr/share/perl5/DateTime/TimeZone/Catalog.pm 26198 +usr/share/perl5/DateTime/TimeZone/Floating.pm 26197 +usr/share/perl5/Class/Singleton.pm 26196 +usr/share/perl5/DateTime/TimeZone/OffsetOnly.pm 26195 +usr/share/perl5/DateTime/TimeZone/UTC.pm 26194 +usr/share/perl5/DateTime/TimeZone/Local.pm 26193 +usr/share/perl5/DateTime/TimeZone/OlsonDB/Change.pm 26192 +usr/lib/x86_64-linux-gnu/perl-base/integer.pm 26191 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/DateTime/DateTime.so 26190 +usr/lib/x86_64-linux-gnu/perl5/5.32/DateTime/Infinite.pm 26189 +usr/share/perl5/DateTime/Format/DateParse.pm 26188 +usr/share/perl5/Date/Parse.pm 26187 +usr/share/perl5/Time/Zone.pm 26186 +usr/lib/x86_64-linux-gnu/perl/5.32.1/File/Spec/Functions.pm 26185 +usr/share/perl5/Getopt/Long/Descriptive.pm 26184 +usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate.pm 26183 +usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/Constants.pm 26182 +usr/lib/x86_64-linux-gnu/perl5/5.32/Params/Validate/XS.pm 26181 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Params/Validate/XS/XS.so 26180 +usr/share/perl5/Getopt/Long/Descriptive/Opts.pm 26179 +usr/share/perl5/Getopt/Long/Descriptive/Usage.pm 26178 +usr/share/perl5/Sub/Exporter/Util.pm 26177 +usr/share/perl5/Data/OptList.pm 26176 +usr/share/perl5/Sub/Install.pm 26175 +usr/share/perl5/Sub/Exporter.pm 26174 +usr/share/perl5/IPC/Run.pm 26173 +usr/share/perl5/IPC/Run/Debug.pm 26172 +usr/share/perl5/IPC/Run/IO.pm 26171 +usr/share/perl5/IPC/Run/Timer.pm 26170 +usr/share/perl/5.32.1/open.pm 26169 +usr/share/perl5/String/Errf.pm 26168 +usr/share/perl5/String/Formatter.pm 26167 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Piece.pm 26166 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/Seconds.pm 26165 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/Piece/Piece.so 26164 +usr/lib/x86_64-linux-gnu/perl/5.32.1/threads.pm 26163 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/threads/threads.so 26162 +usr/local/lib/https-get-expired 26161 +usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt 26160 +usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt 26159 +usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt 26158 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt 26157 +usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt 26156 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt 26155 +usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt 26154 +usr/share/ca-certificates/mozilla/GTS_Root_R3.crt 26153 +usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt 26152 +usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt 26151 +usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt 26150 +usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt 26149 +usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt 26148 +usr/share/ca-certificates/mozilla/GTS_Root_R1.crt 26147 +usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt 26146 +usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt 26145 +usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt 26144 +usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt 26143 +usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt 26142 +usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt 26141 +usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt 26140 +usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt 26139 +usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt 26138 +usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt 26137 +usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt 26136 +usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt 26135 +usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt 26134 +usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt 26133 +usr/share/ca-certificates/mozilla/EC-ACC.crt 26132 +usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt 26131 +usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt 26130 +usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt 26129 +usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt 26128 +usr/share/ca-certificates/mozilla/NAVER_Global_Root_Certification_Authority.crt 26127 +usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt 26126 +usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt 26125 +usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt 26124 +usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt 26123 +usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt 26122 +usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt 26121 +usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt 26120 +usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt 26119 +usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt 26118 +usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt 26117 +usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt 26116 +usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt 26115 +usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt 26114 +usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt 26113 +usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt 26112 +usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt 26111 +usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt 26110 +usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt 26109 +usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G4.crt 26108 +usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt 26107 +usr/share/ca-certificates/mozilla/certSIGN_Root_CA_G2.crt 26106 +usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt 26105 +usr/share/ca-certificates/mozilla/GTS_Root_R2.crt 26104 +usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt 26103 +usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt 26102 +usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt 26101 +usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt 26100 +usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt 26099 +usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt 26098 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt 26097 +usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt 26096 +usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt 26095 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt 26094 +usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt 26093 +usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt 26092 +usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt 26091 +usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt 26090 +usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt 26089 +usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt 26088 +usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt 26087 +usr/share/ca-certificates/mozilla/Microsoft_ECC_Root_Certificate_Authority_2017.crt 26086 +usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt 26085 +usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt 26084 +usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_FÅ‘tanúsÃtvány.crt 26083 +usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P256_Certification_Authority.crt 26082 +usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt 26081 +usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt 26080 +usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt 26079 +usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt 26078 +usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt 26077 +usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt 26076 +usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt 26075 +usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt 26074 +usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt 26073 +usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt 26072 +usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt 26071 +usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt 26070 +usr/share/ca-certificates/mozilla/Certigna.crt 26069 +usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt 26068 +usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt 26067 +usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt 26066 +usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt 26065 +usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt 26064 +usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt 26063 +usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt 26062 +usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt 26061 +usr/share/ca-certificates/mozilla/GTS_Root_R4.crt 26060 +usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt 26059 +usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt 26058 +usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt 26057 +usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt 26056 +usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt 26055 +usr/share/ca-certificates/mozilla/Izenpe.com.crt 26054 +usr/share/ca-certificates/mozilla/Microsoft_RSA_Root_Certificate_Authority_2017.crt 26053 +usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt 26052 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt 26051 +usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt 26050 +usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt 26049 +usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt 26048 +usr/share/ca-certificates/mozilla/SecureTrust_CA.crt 26047 +usr/share/ca-certificates/mozilla/Secure_Global_CA.crt 26046 +usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt 26045 +usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt 26044 +usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt 26043 +usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt 26042 +usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt 26041 +usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt 26040 +usr/share/ca-certificates/mozilla/Trustwave_Global_Certification_Authority.crt 26039 +usr/share/ca-certificates/mozilla/Trustwave_Global_ECC_P384_Certification_Authority.crt 26038 +usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt 26037 +usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt 26036 +usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt 26035 +usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt 26034 +usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt 26033 +usr/share/ca-certificates/mozilla/e-Szigno_Root_CA_2017.crt 26032 +lib/systemd/system/tails-additional-software-upgrade.path 26029 +lib/systemd/system/tails-additional-software-upgrade.service 26028 +usr/libexec/ibus-engine-libpinyin 26027 +usr/lib/x86_64-linux-gnu/libpinyin.so.13.0.0 26026 +usr/libexec/ibus-engine-hangul 26025 +usr/lib/x86_64-linux-gnu/libhangul.so.1.0.0 26024 +usr/lib/x86_64-linux-gnu/libopencc.so.1.1.1 26023 +usr/lib/ibus/ibus-engine-chewing 26022 +usr/lib/x86_64-linux-gnu/libchewing.so.3.3.1 26021 +usr/lib/x86_64-linux-gnu/liblua5.4.so.0.0.0 26020 +usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0.2400.33 26019 +usr/lib/x86_64-linux-gnu/libmarisa.so.0.0.0 26018 +usr/share/libhangul/hanja/hanja.txt 26017 +usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0.2400.33 26016 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libgail.so 26015 +usr/lib/x86_64-linux-gnu/libgailutil.so.18.0.1 26014 +usr/lib/x86_64-linux-gnu/gtk-2.0/modules/libatk-bridge.so 26013 +usr/share/themes/Adwaita/gtk-2.0/gtkrc 26012 +usr/share/themes/Adwaita/gtk-2.0/main.rc 26011 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libadwaita.so 26010 +usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/engines/libpixmap.so 26009 +usr/share/themes/Adwaita/gtk-2.0/apps.rc 26008 +usr/share/themes/Adwaita/gtk-2.0/hacks.rc 26007 +usr/share/themes/Default/gtk-2.0-key/gtkrc 26006 +usr/share/ibus-hangul/data/symbol.txt 26005 +usr/bin/gtk-launch 26004 +usr/local/bin/tor-browser 26003 +usr/bin/systemd-run 26002 +usr/local/lib/run-tor-browser-in-netns 26001 +usr/bin/tor-browser 26000 +usr/local/lib/tails-shell-library/tor-browser.sh 25999 +usr/local/lib/tails-shell-library/systemd.sh 25998 +usr/bin/7z 25997 +usr/lib/p7zip/7z 25996 +usr/lib/p7zip/7z.so 25995 +usr/local/lib/tor-browser/omni.ja 25994 +etc/tor-browser/locale-profiles/en-US.js 25993 +usr/local/lib/tor-browser/firefox.real 25992 +usr/local/lib/tor-browser/dependentlibs.list 25991 +usr/local/lib/tor-browser/libnspr4.so 25990 +usr/local/lib/tor-browser/libplc4.so 25989 +usr/local/lib/tor-browser/libplds4.so 25988 +usr/local/lib/tor-browser/libmozsandbox.so 25987 +usr/local/lib/tor-browser/liblgpllibs.so 25986 +usr/local/lib/tor-browser/libnssutil3.so 25985 +usr/local/lib/tor-browser/libnss3.so 25984 +usr/local/lib/tor-browser/libsmime3.so 25983 +usr/local/lib/tor-browser/libmozsqlite3.so 25982 +usr/local/lib/tor-browser/libssl3.so 25981 +usr/local/lib/tor-browser/libmozgtk.so 25980 +usr/local/lib/tor-browser/libmozwayland.so 25979 +usr/local/lib/tor-browser/libxul.so 25978 +usr/lib/x86_64-linux-gnu/libdbus-glib-1.so.2.3.4 25977 +usr/lib/x86_64-linux-gnu/libpci.so.3.7.0 25976 +usr/local/lib/tor-browser/TorBrowser/Data/Browser/profiles.ini 25975 +usr/local/lib/tor-browser/browser/omni.ja 25974 +usr/local/lib/tor-browser/defaults/pref/channel-prefs.js 25973 +usr/bin/lsb_release 25972 +usr/local/lib/tor-browser/distribution/policies.json 25971 +usr/local/share/tor-browser-extensions/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi 25970 +usr/local/lib/tor-browser/libsoftokn3.so 25969 +usr/local/lib/tor-browser/libfreeblpriv3.so 25968 +usr/local/lib/tor-browser/libnssckbi.so 25967 +usr/local/lib/tor-browser/browser/features/onboarding@mozilla.org.xpi 25966 +usr/local/lib/tor-browser/libipcclientcerts.so 25965 +usr/lib/locale/C.UTF-8/LC_IDENTIFICATION 25964 +etc/ld.so.conf 25963 +etc/ld.so.conf.d/libc.conf 25962 +etc/ld.so.conf.d/x86_64-linux-gnu.conf 25961 +usr/lib/locale/C.UTF-8/LC_MEASUREMENT 25960 +usr/lib/locale/C.UTF-8/LC_TELEPHONE 25959 +usr/lib/locale/C.UTF-8/LC_ADDRESS 25958 +usr/lib/locale/C.UTF-8/LC_NAME 25957 +usr/lib/locale/C.UTF-8/LC_PAPER 25956 +usr/lib/locale/C.UTF-8/LC_MONETARY 25955 +usr/lib/locale/C.UTF-8/LC_COLLATE 25954 +usr/lib/locale/C.UTF-8/LC_TIME 25953 +usr/lib/locale/C.UTF-8/LC_NUMERIC 25952 +usr/lib/systemd/user/xdg-desktop-portal.service 25951 +usr/libexec/xdg-desktop-portal 25949 +usr/share/xdg-desktop-portal/portals/gnome-keyring.portal 25948 +usr/share/xdg-desktop-portal/portals/gnome-shell.portal 25947 +usr/lib/systemd/user/xdg-document-portal.service 25946 +usr/libexec/xdg-document-portal 25944 +lib/x86_64-linux-gnu/libfuse.so.2.9.9 25943 +bin/fusermount3 25942 +etc/fuse.conf 25941 +usr/share/icons/Adwaita/32x32/ui/window-close-symbolic.symbolic.png 25940 +usr/local/lib/tor-browser/fontconfig/fonts.conf 25939 +usr/local/lib/tor-browser/fonts/Arimo-Bold.ttf 25938 +usr/local/lib/tor-browser/fonts/Arimo-BoldItalic.ttf 25937 +usr/local/lib/tor-browser/fonts/Arimo-Italic.ttf 25936 +usr/local/lib/tor-browser/fonts/Arimo-Regular.ttf 25935 +usr/local/lib/tor-browser/fonts/Cousine-Regular.ttf 25934 +usr/local/lib/tor-browser/fonts/NotoNaskhArabic-Regular.ttf 25933 +usr/local/lib/tor-browser/fonts/NotoSansAdlam-Regular.ttf 25932 +usr/local/lib/tor-browser/fonts/NotoSansArmenian-Regular.ttf 25931 +usr/local/lib/tor-browser/fonts/NotoSansBalinese-Regular.ttf 25930 +usr/local/lib/tor-browser/fonts/NotoSansBamum-Regular.ttf 25929 +usr/local/lib/tor-browser/fonts/NotoSansBassaVah-Regular.ttf 25928 +usr/local/lib/tor-browser/fonts/NotoSansBatak-Regular.ttf 25927 +usr/local/lib/tor-browser/fonts/NotoSansBengali-Regular.ttf 25926 +usr/local/lib/tor-browser/fonts/NotoSansBuginese-Regular.ttf 25925 +usr/local/lib/tor-browser/fonts/NotoSansBuhid-Regular.ttf 25924 +usr/local/lib/tor-browser/fonts/NotoSansCanadianAboriginal-Regular.ttf 25923 +usr/local/lib/tor-browser/fonts/NotoSansChakma-Regular.ttf 25922 +usr/local/lib/tor-browser/fonts/NotoSansCham-Regular.ttf 25921 +usr/local/lib/tor-browser/fonts/NotoSansCherokee-Regular.ttf 25920 +usr/local/lib/tor-browser/fonts/NotoSansCoptic-Regular.ttf 25919 +usr/local/lib/tor-browser/fonts/NotoSansDeseret-Regular.ttf 25918 +usr/local/lib/tor-browser/fonts/NotoSansDevanagari-Regular.ttf 25917 +usr/local/lib/tor-browser/fonts/NotoSansElbasan-Regular.ttf 25916 +usr/local/lib/tor-browser/fonts/NotoSansEthiopic-Regular.ttf 25915 +usr/local/lib/tor-browser/fonts/NotoSansGeorgian-Regular.ttf 25914 +usr/local/lib/tor-browser/fonts/NotoSansGrantha-Regular.ttf 25913 +usr/local/lib/tor-browser/fonts/NotoSansGujarati-Regular.ttf 25912 +usr/local/lib/tor-browser/fonts/NotoSansGunjalaGondi-Regular.ttf 25911 +usr/local/lib/tor-browser/fonts/NotoSansGurmukhi-Regular.ttf 25910 +usr/local/lib/tor-browser/fonts/NotoSansHanifiRohingya-Regular.ttf 25909 +usr/local/lib/tor-browser/fonts/NotoSansHanunoo-Regular.ttf 25908 +usr/local/lib/tor-browser/fonts/NotoSansHebrew-Regular.ttf 25907 +usr/local/lib/tor-browser/fonts/NotoSansJP-Regular.otf 25906 +usr/local/lib/tor-browser/fonts/NotoSansJavanese-Regular.ttf 25905 +usr/local/lib/tor-browser/fonts/NotoSansKR-Regular.otf 25904 +usr/local/lib/tor-browser/fonts/NotoSansKannada-Regular.ttf 25903 +usr/local/lib/tor-browser/fonts/NotoSansKayahLi-Regular.ttf 25902 +usr/local/lib/tor-browser/fonts/NotoSansKhmer-Regular.ttf 25901 +usr/local/lib/tor-browser/fonts/NotoSansKhojki-Regular.ttf 25900 +usr/local/lib/tor-browser/fonts/NotoSansKhudawadi-Regular.ttf 25899 +usr/local/lib/tor-browser/fonts/NotoSansLao-Regular.ttf 25898 +usr/local/lib/tor-browser/fonts/NotoSansLepcha-Regular.ttf 25897 +usr/local/lib/tor-browser/fonts/NotoSansLimbu-Regular.ttf 25896 +usr/local/lib/tor-browser/fonts/NotoSansLisu-Regular.ttf 25895 +usr/local/lib/tor-browser/fonts/NotoSansMahajani-Regular.ttf 25894 +usr/local/lib/tor-browser/fonts/NotoSansMalayalam-Regular.ttf 25893 +usr/local/lib/tor-browser/fonts/NotoSansMandaic-Regular.ttf 25892 +usr/local/lib/tor-browser/fonts/NotoSansMasaramGondi-Regular.ttf 25891 +usr/local/lib/tor-browser/fonts/NotoSansMedefaidrin-Regular.ttf 25890 +usr/local/lib/tor-browser/fonts/NotoSansMeeteiMayek-Regular.ttf 25889 +usr/local/lib/tor-browser/fonts/NotoSansMendeKikakui-Regular.ttf 25888 +usr/local/lib/tor-browser/fonts/NotoSansMiao-Regular.ttf 25887 +usr/local/lib/tor-browser/fonts/NotoSansModi-Regular.ttf 25886 +usr/local/lib/tor-browser/fonts/NotoSansMongolian-Regular.ttf 25885 +usr/local/lib/tor-browser/fonts/NotoSansMro-Regular.ttf 25884 +usr/local/lib/tor-browser/fonts/NotoSansMultani-Regular.ttf 25883 +usr/local/lib/tor-browser/fonts/NotoSansMyanmar-Regular.ttf 25882 +usr/local/lib/tor-browser/fonts/NotoSansNKo-Regular.ttf 25881 +usr/local/lib/tor-browser/fonts/NotoSansNewTaiLue-Regular.ttf 25880 +usr/local/lib/tor-browser/fonts/NotoSansNewa-Regular.ttf 25879 +usr/local/lib/tor-browser/fonts/NotoSansOlChiki-Regular.ttf 25878 +usr/local/lib/tor-browser/fonts/NotoSansOriya-Regular.ttf 25877 +usr/local/lib/tor-browser/fonts/NotoSansOsage-Regular.ttf 25876 +usr/local/lib/tor-browser/fonts/NotoSansOsmanya-Regular.ttf 25875 +usr/local/lib/tor-browser/fonts/NotoSansPahawhHmong-Regular.ttf 25874 +usr/local/lib/tor-browser/fonts/NotoSansPauCinHau-Regular.ttf 25873 +usr/local/lib/tor-browser/fonts/NotoSansRejang-Regular.ttf 25872 +usr/local/lib/tor-browser/fonts/NotoSansRunic-Regular.ttf 25871 +usr/local/lib/tor-browser/fonts/NotoSansSC-Regular.otf 25870 +usr/local/lib/tor-browser/fonts/NotoSansSamaritan-Regular.ttf 25869 +usr/local/lib/tor-browser/fonts/NotoSansSaurashtra-Regular.ttf 25868 +usr/local/lib/tor-browser/fonts/NotoSansSharada-Regular.ttf 25867 +usr/local/lib/tor-browser/fonts/NotoSansShavian-Regular.ttf 25866 +usr/local/lib/tor-browser/fonts/NotoSansSinhala-Regular.ttf 25865 +usr/local/lib/tor-browser/fonts/NotoSansSoraSompeng-Regular.ttf 25864 +usr/local/lib/tor-browser/fonts/NotoSansSoyombo-Regular.ttf 25863 +usr/local/lib/tor-browser/fonts/NotoSansSundanese-Regular.ttf 25862 +usr/local/lib/tor-browser/fonts/NotoSansSylotiNagri-Regular.ttf 25861 +usr/local/lib/tor-browser/fonts/NotoSansSymbols-Regular.ttf 25860 +usr/local/lib/tor-browser/fonts/NotoSansSymbols2-Regular.ttf 25859 +usr/local/lib/tor-browser/fonts/NotoSansSyriac-Regular.ttf 25858 +usr/local/lib/tor-browser/fonts/NotoSansTC-Regular.otf 25857 +usr/local/lib/tor-browser/fonts/NotoSansTagalog-Regular.ttf 25856 +usr/local/lib/tor-browser/fonts/NotoSansTagbanwa-Regular.ttf 25855 +usr/local/lib/tor-browser/fonts/NotoSansTaiLe-Regular.ttf 25854 +usr/local/lib/tor-browser/fonts/NotoSansTaiTham-Regular.ttf 25853 +usr/local/lib/tor-browser/fonts/NotoSansTaiViet-Regular.ttf 25852 +usr/local/lib/tor-browser/fonts/NotoSansTakri-Regular.ttf 25851 +usr/local/lib/tor-browser/fonts/NotoSansTamil-Regular.ttf 25850 +usr/local/lib/tor-browser/fonts/NotoSansTelugu-Regular.ttf 25849 +usr/local/lib/tor-browser/fonts/NotoSansThaana-Regular.ttf 25848 +usr/local/lib/tor-browser/fonts/NotoSansThai-Regular.ttf 25847 +usr/local/lib/tor-browser/fonts/NotoSansTifinagh-Regular.ttf 25846 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAPT-Regular.ttf 25845 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAdrar-Regular.ttf 25844 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAgrawImazighen-Regular.ttf 25843 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAhaggar-Regular.ttf 25842 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAir-Regular.ttf 25841 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghAzawagh-Regular.ttf 25840 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghGhat-Regular.ttf 25839 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghHawad-Regular.ttf 25838 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghRhissaIxa-Regular.ttf 25837 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghSIL-Regular.ttf 25836 +usr/local/lib/tor-browser/fonts/NotoSansTifinaghTawellemmet-Regular.ttf 25835 +usr/local/lib/tor-browser/fonts/NotoSansTirhuta-Regular.ttf 25834 +usr/local/lib/tor-browser/fonts/NotoSansVai-Regular.ttf 25833 +usr/local/lib/tor-browser/fonts/NotoSansWancho-Regular.ttf 25832 +usr/local/lib/tor-browser/fonts/NotoSansWarangCiti-Regular.ttf 25831 +usr/local/lib/tor-browser/fonts/NotoSansYi-Regular.ttf 25830 +usr/local/lib/tor-browser/fonts/NotoSansZanabazarSquare-Regular.ttf 25829 +usr/local/lib/tor-browser/fonts/NotoSerifArmenian-Regular.ttf 25828 +usr/local/lib/tor-browser/fonts/NotoSerifBalinese-Regular.ttf 25827 +usr/local/lib/tor-browser/fonts/NotoSerifBengali-Regular.ttf 25826 +usr/local/lib/tor-browser/fonts/NotoSerifDevanagari-Regular.ttf 25825 +usr/local/lib/tor-browser/fonts/NotoSerifDogra-Regular.ttf 25824 +usr/local/lib/tor-browser/fonts/NotoSerifEthiopic-Regular.ttf 25823 +usr/local/lib/tor-browser/fonts/NotoSerifGeorgian-Regular.ttf 25822 +usr/local/lib/tor-browser/fonts/NotoSerifGrantha-Regular.ttf 25821 +usr/local/lib/tor-browser/fonts/NotoSerifGujarati-Regular.ttf 25820 +usr/local/lib/tor-browser/fonts/NotoSerifGurmukhi-Regular.ttf 25819 +usr/local/lib/tor-browser/fonts/NotoSerifHebrew-Regular.ttf 25818 +usr/local/lib/tor-browser/fonts/NotoSerifKannada-Regular.ttf 25817 +usr/local/lib/tor-browser/fonts/NotoSerifKhmer-Regular.ttf 25816 +usr/local/lib/tor-browser/fonts/NotoSerifKhojki-Regular.ttf 25815 +usr/local/lib/tor-browser/fonts/NotoSerifLao-Regular.ttf 25814 +usr/local/lib/tor-browser/fonts/NotoSerifMalayalam-Regular.ttf 25813 +usr/local/lib/tor-browser/fonts/NotoSerifMyanmar-Regular.ttf 25812 +usr/local/lib/tor-browser/fonts/NotoSerifNyiakengPuachueHmong-Regular.ttf 25811 +usr/local/lib/tor-browser/fonts/NotoSerifSinhala-Regular.ttf 25810 +usr/local/lib/tor-browser/fonts/NotoSerifTamil-Regular.ttf 25809 +usr/local/lib/tor-browser/fonts/NotoSerifTelugu-Regular.ttf 25808 +usr/local/lib/tor-browser/fonts/NotoSerifThai-Regular.ttf 25807 +usr/local/lib/tor-browser/fonts/NotoSerifTibetan-Regular.ttf 25806 +usr/local/lib/tor-browser/fonts/NotoSerifYezidi-Regular.ttf 25805 +usr/local/lib/tor-browser/fonts/STIXMath-Regular.otf 25804 +usr/local/lib/tor-browser/fonts/Tinos-Bold.ttf 25803 +usr/local/lib/tor-browser/fonts/Tinos-BoldItalic.ttf 25802 +usr/local/lib/tor-browser/fonts/Tinos-Italic.ttf 25801 +usr/local/lib/tor-browser/fonts/Tinos-Regular.ttf 25800 +usr/local/lib/tor-browser/fonts/TwemojiMozilla.ttf 25799 +usr/local/lib/tor-browser/browser/chrome/icons/default/default16.png 25798 +usr/local/lib/tor-browser/browser/chrome/icons/default/default32.png 25797 +usr/local/lib/tor-browser/browser/chrome/icons/default/default48.png 25796 +usr/local/lib/tor-browser/browser/chrome/icons/default/default64.png 25795 +usr/local/lib/tor-browser/browser/chrome/icons/default/default128.png 25794 +usr/share/mime/application/xml-dtd.xml 25793 +usr/share/mime/audio/mpeg.xml 25792 +usr/share/mime/video/mp4.xml 25791 +usr/bin/xhost 25790 +usr/local/bin/tails-upgrade-frontend 25789 +usr/share/perl/5.32.1/FindBin.pm 25788 +usr/lib/x86_64-linux-gnu/perl-base/lib.pm 25787 +usr/local/share/perl/5.32.1/Tails/IUK/Frontend.pm 25786 +usr/share/perl/5.32.1/Env.pm 25785 +usr/share/perl/5.32.1/Tie/Array.pm 25784 +usr/share/perl5/Path/Tiny.pm 25783 +usr/local/share/perl/5.32.1/Tails/RunningSystem.pm 25782 +usr/share/perl5/Sys/Statistics/Linux/MemStats.pm 25781 +usr/local/share/perl/5.32.1/Tails/Constants.pm 25780 +usr/share/perl5/MooX/late.pm 25779 +usr/share/perl5/Sub/HandlesVia.pm 25778 +usr/share/perl5/Exporter/Shiny.pm 25777 +usr/share/perl5/Sub/HandlesVia/Toolkit/Moo.pm 25776 +usr/share/perl5/Sub/HandlesVia/Toolkit.pm 25775 +usr/share/perl5/Type/Params.pm 25774 +usr/share/perl5/Error/TypeTiny.pm 25773 +usr/share/perl5/Error/TypeTiny/Assertion.pm 25772 +usr/share/perl5/Error/TypeTiny/WrongNumberOfParameters.pm 25771 +usr/share/perl5/Sub/HandlesVia/Handler.pm 25770 +usr/share/perl5/Class/Tiny.pm 25769 +usr/share/perl5/Type/Utils.pm 25768 +usr/share/perl5/Type/Registry.pm 25767 +usr/share/perl5/Type/Parser.pm 25766 +usr/local/share/perl/5.32.1/Tails/UDisks.pm 25765 +usr/share/perl/5.32.1/File/stat.pm 25764 +usr/share/perl/5.32.1/Class/Struct.pm 25763 +usr/share/perl5/Syntax/Keyword/Junction.pm 25762 +usr/share/perl5/Syntax/Keyword/Junction/All.pm 25761 +usr/share/perl5/Syntax/Keyword/Junction/Base.pm 25760 +usr/share/perl/5.32.1/if.pm 25759 +usr/share/perl5/Syntax/Keyword/Junction/Any.pm 25758 +usr/share/perl5/Syntax/Keyword/Junction/None.pm 25757 +usr/share/perl5/Syntax/Keyword/Junction/One.pm 25756 +usr/share/perl5/Types/Path/Tiny.pm 25755 +usr/share/perl5/Type/Tiny/Class.pm 25754 +usr/share/perl5/Type/Tiny/ConstrainedObject.pm 25753 +usr/share/perl5/Type/Tiny/Intersection.pm 25752 +usr/lib/x86_64-linux-gnu/perl5/5.32/Unix/Mknod.pm 25751 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unix/Mknod/Mknod.so 25750 +usr/share/perl5/Moo/Role.pm 25749 +usr/local/share/perl/5.32.1/Tails/Role/HasDBus/System.pm 25748 +usr/lib/x86_64-linux-gnu/perl5/5.32/Net/DBus/GLib.pm 25747 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Net/DBus/GLib/GLib.so 25746 +usr/local/share/perl/5.32.1/Tails.pm 25745 +usr/local/share/perl/5.32.1/Tails/Role/HasEncoding.pm 25744 +usr/share/perl5/Type/Tiny/Union.pm 25743 +usr/local/share/perl/5.32.1/Tails/Role/DisplayError/Gtk3.pm 25742 +usr/share/perl5/Gtk3.pm 25741 +usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo/GObject.pm 25740 +usr/lib/x86_64-linux-gnu/perl5/5.32/Cairo.pm 25739 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/Cairo.so 25738 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Cairo/GObject/GObject.so 25737 +usr/local/share/perl/5.32.1/Tails/IUK/DownloadProgress.pm 25736 +usr/lib/x86_64-linux-gnu/perl/5.32.1/Time/HiRes.pm 25735 +usr/lib/x86_64-linux-gnu/perl/5.32.1/auto/Time/HiRes/HiRes.so 25734 +usr/share/perl5/Time/Duration.pm 25733 +usr/local/share/perl/5.32.1/Tails/IUK/Role/FormatByte.pm 25732 +usr/share/perl5/Number/Format.pm 25731 +usr/share/perl5/Types/Standard/HashRef.pm 25730 +usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile.pm 25729 +usr/share/perl5/MooX/HandlesVia.pm 25728 +usr/share/perl5/Dpkg/Version.pm 25727 +usr/share/perl5/Dpkg/Gettext.pm 25726 +usr/lib/x86_64-linux-gnu/perl-base/feature.pm 25725 +usr/share/perl5/Dpkg/ErrorHandling.pm 25724 +usr/share/perl5/Dpkg.pm 25723 +usr/share/perl5/YAML/Any.pm 25722 +usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS.pm 25721 +usr/lib/x86_64-linux-gnu/perl5/5.32/YAML/XS/LibYAML.pm 25720 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/YAML/XS/LibYAML/LibYAML.so 25719 +usr/share/perl5/Data/Perl/Collection/Array/MooseLike.pm 25718 +usr/share/perl5/Class/Method/Modifiers.pm 25717 +usr/share/perl5/Data/Perl/Role/Collection/Array.pm 25716 +usr/local/share/perl/5.32.1/Tails/IUK/Utils.pm 25715 +usr/share/perl5/GnuPG/Interface.pm 25714 +usr/share/perl/5.32.1/Math/BigInt.pm 25713 +usr/share/perl/5.32.1/Math/BigInt/Calc.pm 25712 +usr/share/perl/5.32.1/Math/BigInt/Lib.pm 25711 +usr/share/perl5/GnuPG/Options.pm 25710 +usr/share/perl5/GnuPG/HashInit.pm 25709 +usr/share/perl5/GnuPG/Handles.pm 25708 +usr/lib/x86_64-linux-gnu/perl5/5.32/Filesys/Df.pm 25707 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Filesys/Df/Df.so 25706 +usr/share/perl5/MooX/Options.pm 25705 +usr/share/perl5/MooX/Options/Role.pm 25704 +usr/share/perl5/MooX/Options/Descriptive.pm 25703 +usr/share/perl5/MooX/Options/Descriptive/Usage.pm 25702 +usr/lib/x86_64-linux-gnu/perl5/5.32/Text/LineFold.pm 25701 +usr/share/perl5/MIME/Charset.pm 25700 +usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak.pm 25699 +usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/GCString.pm 25698 +usr/lib/x86_64-linux-gnu/perl5/5.32/Unicode/LineBreak/Constants.pm 25697 +usr/lib/x86_64-linux-gnu/perl5/5.32/auto/Unicode/LineBreak/LineBreak.so 25696 +usr/lib/x86_64-linux-gnu/libsombok.so.3.1.7 25695 +usr/share/perl5/MooX/Locale/Passthrough.pm 25694 +usr/local/bin/tails-iuk-get-upgrade-description-file 25693 +usr/local/share/perl/5.32.1/Tails/IUK/UpgradeDescriptionFile/Download.pm 25692 +usr/share/perl5/Method/Generate/BuildAll.pm 25691 -- GitLab From 66c8f184cb91486a1b2b9ce7cf488cd3cc35c76f Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 09:10:19 +0000 Subject: [PATCH 106/119] Mark Tails 5.17 as released. --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 76e51015f30..7439890a839 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -tails (5.17) UNRELEASED; urgency=medium +tails (5.17) unstable; urgency=medium * Upgrade Thunderbird to 1:102.15.0-1~deb11u1 @@ -192,7 +192,7 @@ tails (5.17) UNRELEASED; urgency=medium - Only add metadata, when available. - Add script to detect needed package updates from Debian - -- Tails developers <tails@boum.org> Mon, 04 Sep 2023 07:41:12 +0000 + -- Tails developers <tails@boum.org> Mon, 04 Sep 2023 09:10:16 +0000 tails (5.16.1) unstable; urgency=medium -- GitLab From d0d93a2a8644ad5f1c6d79c0c320431e21f0eac1 Mon Sep 17 00:00:00 2001 From: anonym <anonym@riseup.net> Date: Mon, 4 Sep 2023 14:40:20 +0200 Subject: [PATCH 107/119] Release process: clarify which options are allowed when running the automated test suite --- wiki/src/contribute/release_process/test.mdwn | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/wiki/src/contribute/release_process/test.mdwn b/wiki/src/contribute/release_process/test.mdwn index d5cf685e873..1e6f3c2459b 100644 --- a/wiki/src/contribute/release_process/test.mdwn +++ b/wiki/src/contribute/release_process/test.mdwn @@ -90,9 +90,21 @@ This section can **not** be done by the RM. Automated test suite ==================== -Revert 4d9b13e6b8c055237aab403945c6bb9d03ac6d85. +* Revert 4d9b13e6b8c055237aab403945c6bb9d03ac6d85. -Point `--old-iso` to the ISO image of the previous stable release. +* Point `--old-iso` to the ISO image of the previous stable release. + +* We want the test suite run to be as "vanilla" and reproducible as + possible, so the only allowed options for `run_test_suite` are: + + - `--artifacts-base-uri` + - `--capture` and `--capture-all` + - `--tmpdir` + - `--view` + - `--vnc-server-only` + - `--iso` and `--old-iso` (in fact, both of these are mandatory) + + For `cucumber` itself we only allow the `--format` option. See: -- GitLab From d8242d5fe68183d47765467b828abd71bae5aebf Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 13:34:30 +0000 Subject: [PATCH 108/119] Update upgrade-description files. --- .../v2/Tails/5.0/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.0/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml | 14 +++++++------- .../5.0~beta1/amd64/alpha/upgrades.yml.pgp | 17 ++++------------- .../Tails/5.0~beta1/amd64/stable/upgrades.yml | 14 +++++++------- .../5.0~beta1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.1.1/amd64/stable/upgrades.yml | 14 +++++++------- .../Tails/5.1.1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.1/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.10/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.10/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.11/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.11/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.12/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.12/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.13/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.13/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.14/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.14/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.15.1/amd64/stable/upgrades.yml | 14 +++++++------- .../Tails/5.15.1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.16.1/amd64/stable/upgrades.yml | 15 +++++++++++++++ .../Tails/5.16.1/amd64/stable/upgrades.yml.pgp | 8 ++++---- .../v2/Tails/5.16/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.16/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.17.1/amd64/alpha/upgrades.yml | 5 +++++ .../Tails/5.17.1/amd64/alpha/upgrades.yml.pgp | 7 +++++++ .../v2/Tails/5.17.1/amd64/stable/upgrades.yml | 5 +++++ .../Tails/5.17.1/amd64/stable/upgrades.yml.pgp | 7 +++++++ .../v2/Tails/5.18/amd64/alpha/upgrades.yml | 5 +++++ .../v2/Tails/5.18/amd64/alpha/upgrades.yml.pgp | 7 +++++++ .../v2/Tails/5.18/amd64/stable/upgrades.yml | 5 +++++ .../v2/Tails/5.18/amd64/stable/upgrades.yml.pgp | 7 +++++++ .../v2/Tails/5.2/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.2/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.3.1/amd64/stable/upgrades.yml | 14 +++++++------- .../Tails/5.3.1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.3/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.3/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.4/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.4/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.5/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.5/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.6/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.6/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.7/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.7/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.8/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.8/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml | 8 ++++---- .../5.8~beta1/amd64/alpha/upgrades.yml.pgp | 17 ++++------------- .../Tails/5.8~beta1/amd64/stable/upgrades.yml | 8 ++++---- .../5.8~beta1/amd64/stable/upgrades.yml.pgp | 17 ++++------------- .../v2/Tails/5.9/amd64/stable/upgrades.yml | 14 +++++++------- .../v2/Tails/5.9/amd64/stable/upgrades.yml.pgp | 17 ++++------------- 56 files changed, 314 insertions(+), 458 deletions(-) create mode 100644 wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml create mode 100644 wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml.pgp create mode 100644 wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml create mode 100644 wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml.pgp create mode 100644 wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml create mode 100644 wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml.pgp create mode 100644 wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml create mode 100644 wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml.pgp diff --git a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml index 13eb2a14260..382ccb49c3e 100644 --- a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.0' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 1752f6c6947557871d3895a90007f74f9b217fdeb8c2c4ebd4a17869505f09c7 - size: 660332544 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0_to_5.16.1.iuk + - sha256: e3c1a2cb0bd150c97f54d0d398952bf6eddffd6c3fb8607bc1b0b37f46bb8cb9 + size: 665292800 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp index 966c827c659..29994b90f11 100644 --- a/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.0/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYvYACgkQe/vSuQLu -E9Cw0A//Ru2MSxfEjz1GaOtH5s4Reps0byq2JDdPj9nK+bv8ii6uowQaYOWWc+CT -xaBjyIjwzK6xhk0cURd2ZUBq4R6MJuj04mlp2JMd/ND2h/SP1D4qrBN9KCxf89Xv -ATdDhvn1X6ONYBnja0dzgMHB2BV8noUW38MRIeCSXSJ76ce5YiBsbRqDTKBw6Ilw -K0gOC+Imiw+zT4oqiQAzfbc/sI4VZWuLvx5hQ1xe0zZs4AmkgAChE8n0fMpjs/ly -0j5Irp9bqeflGxUuVidr5aPy+t0k9EkDWOmebinBGvBeQ1Gj1RIXOjC9SzR3Nrtq -SL7UhcH0j1XcYGS2HVAMU348AfXjk3jIZP9zw5C92nIChNO4Di3qAc/H4Hd90qJ6 -tr8B45dkJMXIkxW5nv1mKUTTNPugIxAWlMnvQxJiM+5eMZ379VIM3WeX1lU8cYDw -R7mxOAfkD8wQtKvAJu7jGyKe4Y9kUd6EZ46Qn22+X5YOL1nhKSGGTYinH3ZmHWmn -GpdDxqlM7+yedShHEqQUyPWJsNpAfLq+neFIZ2uzyAvFHInMiAifayd8FsEpF75z -o/yOmENsCwlV5f1Dqn+C0zhtFHt9SVBlko+Ngry/iODUAzg2AMjQX/vHvxX4734d -ht2Li8+dP9scmAMaC5CyjthQttlJdUprThR+Ry0t0twf3R5XGZc= -=MmMS +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb/QAKCRCQsrS9eu0j +X85GAP9zBf6Ldn2oLpPoyfk1LPKTbxnlRbKG8APFhA4/u22nVwEA4whwjfO2gqya +0wPfZPJ8Tz5H4g2eq+LZ3nFjxB7/NwA= +=EbSt -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml index 2ad62d2aee4..3600988b707 100644 --- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml @@ -4,17 +4,17 @@ channel: alpha initial-install-version: 5.0~beta1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 2309317d63898a1c4f4df9dc8c3bbcfcec67897bebe1a1f27ed73d960d641711 - size: 681275392 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.16.1.iuk + - sha256: 30f0719ba1d754ba4ddaf460567271d439189affdf8d00d70d1e9c7f7d4b915c + size: 686211072 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp index 5bf00d29603..2013c6ed7c6 100644 --- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/alpha/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYxcACgkQe/vSuQLu -E9AVmRAAqQRlFruff2i7QFqet9zS7fM8XOvuHjNAQS8yuOL5kRTBOpuwE2jqraDW -Z6WjcamobCczoi/1RH3E40CkGsw6Rr/LRem8f4fbo2nSPMMszQu9h7uKUSmB59Qg -YQIm0cPyXOQdpa17QKGzLusy/JqCfAJ5HAL43rH/0yDBnfjM1QBxE2LHQ6Vn0trI -3CAyCkDsjOoFt8/wx7H1/PK/24o+cv2DOT45Evya1cyfOoSUQv8J96ctJZBWkbVa -neGiGEW8cZLA/q0dIeCMprUD+oL+RUMfFlQQqbx/HXzCBipOMrDZGKSkHa8Y/5Gv -px7WpeqqfI9AH5yR/y8P7/ft5rRLsRif9R2jWCA81TkfsgBN2Kq9i14kE3qhyUoZ -DK4BC/PDnktaM6DogRg/xoSILSMdUoPVIW/4tgDgHcta54VH6I7xm2q2JAyRjppk -ouC08zgkTBy8orKLaUkKnv3q2lVCKYbK+vzB0o/Tx1qiwjLAvWDRgyy/xx2kUnIA -gBDrtQPoA2Da9TLx8lyHi6ecwgLpKZFsinUoa0JopUhhtUHzxrqeHI3Vnmi0BtDI -zUutwZbOTk/wkytpuBBM/s64pxdsZqC4Nm3vpv8xP3NtQetAiA9qcBDYjCXDhKDZ -MbWmJDgi9EkanCbRZBUNSncGiw/hWMrlxzAfjJcZL9SxVN4Z9a4= -=YlcF +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcAwAKCRCQsrS9eu0j +X0sPAQDbErhS8P8zt41QY2Au5MLv5h7w1B9LKL9BdcQXYPirUgEArrdSv74WPXBf +hqUif2gWwjC0gBkf11UmfspLKCXh7wo= +=cRFo -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml index 6489c1130b8..e201488e569 100644 --- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 5.0~beta1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 2309317d63898a1c4f4df9dc8c3bbcfcec67897bebe1a1f27ed73d960d641711 - size: 681275392 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.16.1.iuk + - sha256: 30f0719ba1d754ba4ddaf460567271d439189affdf8d00d70d1e9c7f7d4b915c + size: 686211072 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.0~beta1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp index 2b103567090..6f54bf4e165 100644 --- a/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.0~beta1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYxQACgkQe/vSuQLu -E9C1Bg//agW0aWK5qV4f0XDarf0ryJt75q62LYgrvVNJCKMUxq/dmR7Uy6HHXzAM -kd5joEgUIwiQcNuh4hCIpPVyP3e4+/R91CPl5jskcgObsn98YVOcFFsNrReXcw03 -kU0Ko3qkfVN3yyppIZqp34+JGpPdHd0pGOqDJcLBUxg2oeHsvlcFxdj1a2MGFvFf -X6+27KDDDkJ9ytdjwd0vdK0YV0sCKCWBKvBfR7SnKwbGLFVy7MxfSoUncYRWAV0t -bAGzCBzH/g7tpp32CFDMkdIl3pI9lXWxANHLLxXuh/vt/RV3ndZ5sKbuPfEIEcnF -1EeBpaXLm/qo/l906b+DvIEtrzyKWR0wsdbi5+u5lBgNN4xECzW+T91rDMgkxVgl -emzZp+jl6Gf9zP6owzde8Ln9+VPqf1aHz5I40CxestJdw+XVZy7bBdTFGERaTCJd -1u4Y+wZxgKAqaH2XtDrDh9uWBnZeJ37JbLgodYEnO9jYDeAP/orNH3f6M1APAEQ1 -IyjO71UWVm+sKcXKwr9CgXLl99aUuTTfpPilcovWZ2gazBBXt0qktqDqItNPN1wF -Tnbx7VQsHkcH7FNyaxgwy9RHxbrt0u/EG60yMUbm5vU3JGj+2e76Jq09B3eDS+yy -Quu9oIzPjoCKorf74+UGfWMvDnMXktmF/IlVVlI3uGC/E5iH2YM= -=QIbo +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcAgAKCRCQsrS9eu0j +Xz9cAP9a4gZj6KRaGhd7+rG/nZDbJN7yWttyeFKRUpxr0mfY7wEA1LXVUygDtYU6 +0nCx9LgeKP1N8yDxzPVQYSgtrWn2dQo= +=2WZb -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml index c44978d72de..6dc4073cd6e 100644 --- a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 5.1.1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 8d27c600967b7590f58bd6133321af3d6bea854e1e920ef61c24b759024ce1f1 - size: 653361152 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1.1_to_5.16.1.iuk + - sha256: 30e48d888fba614bac92261a5ef12916403e745fad4ae6216604b727b75ac509 + size: 658325504 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1.1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp index 733c9604c9b..4828db898e9 100644 --- a/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.1.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYvkACgkQe/vSuQLu -E9CNZxAAkZ2t3o6zIVPTAgtsbAK8jTx9cVuSYIB8b4PAK6ELddkHhJRzL8+8sdmn -7XZxQ4K80lWR7HA/KYwlHOPeI4w5VUZKImxoz4GwwQ7tRFoD0rbOkVMNc4p3jeUw -TG0JvL9mTe1WH+iC1bHgBlsBW7VYUz9W0D/YBop8R2vXqfwnWKDCv7741yL+wZjY -zWF81K51odnh+sBKqJ223kP8i+H0g9/4oa/EBV3zNI95ZjEUObvxNbWcGM0TjvLb -f+3MnEQ+b5DF2I1KX1GIYJ3r2iKfHG6n20gxMCfI0Xl2XWqKpDdYKoDtiY4JpMqm -KC6wYJSZuGO3pIHcaLufToJednTJsT710pK4n/Poq4X4T216nSQHEjuHSgG7qcTn -gT/uUq+6IaWdAc/Tr34j7cw6HOaQfPvwaqpdE4DPqd3DTjIydivoL1NNeTAMSJqm -tolMrmtYOET+mh40dyaRubQmIntAk0IyufJWE+9/n9llaHL62ZnnASS77b+uRU3O -8y1+2Z1AiyV+t4TlY+yb8lEWIBQpIPkVDnbS5oqx1aNx/HUm31nvn0qyj387uu7g -CwYoF1D7+ZYS7ajzMwjuaSA3xzEJ2IBGTCUQDKi6DcqCPuxp0etz8qRs0wVUkXwf -iOSgzHMP6sfWnVwQvl1FXEwqLW+7lcw6FUEygVuAESalt9oHt88= -=AS63 +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcBAAKCRCQsrS9eu0j +X7OMAP93EfVCJ0wLvjDnfEEJrj6nbAtdMZCkREOdC0/QiuQnOwEAtrX3OLaoj+Xk +6lATvcjYENbp0W8NI4scFRRXV3K1DwY= +=E/If -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml index 5496a604de9..f398ff3421a 100644 --- a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.1' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 9f02613b3e1a1f78f34bd87da604363cb3ec5e13bd300bbd5e9570ba28fba441 - size: 656125952 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1_to_5.16.1.iuk + - sha256: 8e3d57505f8ac3902524a31469d02615f7e1dd35f6b174aaeb442dffa7bafcab + size: 661102592 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp index ea5df3f5180..54214a172b4 100644 --- a/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYuEACgkQe/vSuQLu -E9Dz3Q//e/ICxA2zewUYrOjaFobzH0ZQElwBwCm+jwcRpGfb3Azk3rp9X7qkfHRa -UdNTi0hJVi96NFjMC5MsrUL6e0lumCQKbeVuI3D99nhvTau9MYznlEAkMwJxmI3A -Yqws3oJilakGDAYZ9IUOGY8zAiyAxx1YXn8eyjLvLkU6PYrpjXiSomg0ZMDES9B9 -OqU8aQnw4xw6W5nF+e41FIDOTyW0JLVF4ZAWbZRAfdxOPRafDMkpNddWStj5z6g4 -wrgZD8tZQhFBVjXJ3IPu06h0dpG7YIksOyngLvw+8/RWPEA8Iz49xPaow7ajbIbv -fAH2MqiR0ZFmDd1Q8iwGO9LNPLbqt4USYL4nE+7MaUPBvHbY+OXAy/AiLXbOpzMz -FFnpdk///pAw/NOPgiIO7GXYn1EH9qDa/SyWl8+94esbLxSe96HPi7mfwtzAgu2y -uusbAOQ/Hprmw0sR+dpZveADgwnCyP98EqjkTVjdq/M97MQ5wFU4OD+X1QrnWhEc -PJFt2zq9QKTUi/7O3OCcuZ9P0fE9bBT/veWlYT/Ke4OHff2W1pgBshTrdkW/f8Ia -E9W42aH9YRDxwu4saHfqFkOXyny90pKDDdVtuueOPFYNDc2BuspL7BY2LNv9J3SP -eVX3Mfns1xrCWo3BVzU24akV/R9v4WRCEv+Jqe8UwLPvHygOCrg= -=CYnc +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcDAAKCRCQsrS9eu0j +X5fFAQC7zObV7jNWk4FN6JM7MbuO1BSVfvAKIP+IQ2OxXi94qQD+LD7seEDsI9QI +RS//qEohbjjRCaIfzUvzSPx6SeCJtw4= +=qbEO -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml index 10e311d1789..7568e48d03a 100644 --- a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.10' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: e1ae81d555a6fe344e165fa21c7adaca6b718334a11dd942508f1d5c19b71e41 - size: 557522944 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.10_to_5.16.1.iuk + - sha256: f350ccc6c4fa7fc2b381e21ca4cc9587cf979b9c3ca7e93c3ab7bcfcc62bbaf4 + size: 562487296 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.10_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp index f5f94c2d9e9..0fcd546c508 100644 --- a/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.10/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYuwACgkQe/vSuQLu -E9DurxAAmQ52Nqs2ASjlO5l26sm5+cwggOZ6cfzuOpA+a+1BVISVt4sJ91RyBYXm -Rlp2eifrp8kjjvbsDM3/RyIB4kk34jpjhVAFzXBGx5KJTLhqqkWUEzsDj2FMg3Tq -xxvpPEtXMioRFRAsYWnSzwsY4Koa0xjFrLD01v1dRps3YEPH2ImApjGwZcVw6buw -3Vt5NXMz5fDzRDFfoyT6dGEQ1sPRSOgToZYaz2HUWmpyUXC6q+lTCI4b0k6QMnIU -MM0doCfWhvTKm7xTMnSTa4R6KZcMkymCsEWGpbMnNlKsmv5Kf0x5axlzIevdp+V6 -PtLvVA1G22p2m5qnZDJcI/0WXGByRKWtIY03MzWi7VL5d8qoVBoOYTdb7a2UFxiW -2SuDge86pl65EGkkUxOmDKjZ7KzZ0zsiYPU8jTx7uwEntin/7/IwT1P0Nf23Mnse -NRHc2dw6DosZiyqaT37053fQihfmFfbmyt1oQ7LhcQyaqWI5ZGger6dNj/4keqkH -nO1iOhTiGLpsoS3qKLg4RvqQRBj+WGMslyllhLVJZ/Jrz+vhH6y+Ldhtt8rKv4Xk -nB0N0yetHbsZuBhWzB+tN/DiiLSIS/i4Mo/FFpw4zFj40orw1qU3gtUwnhDziRav -uwRkFO+H3SrUdmipdD4ILkfhZA5LC+yzKaHyMUhBwvGGU5kJH/Y= -=3hdL +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcAQAKCRCQsrS9eu0j +XwXpAQCLz4sAIAQNWX1Zw5nKwdTBXeLkeo6Q7Msj90Oqp0VsmgD+Mmqd6Ok35EuZ +YxmDAfyYQjqWw7kuJmP6tb08N79WRw4= +=Nipx -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml index afcfb01679a..c5514ac421a 100644 --- a/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.11' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 868602cfbf9dc369724b4ddcb48252cb780390b83beefff1269cda174847f859 - size: 545611776 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.11_to_5.16.1.iuk + - sha256: 5d1d46466d60a36cae715dbf0b6be3fa37b8ec5b825e873aa13a2d121d316cee + size: 550584320 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.11_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml.pgp index 6d1df9ceddf..a08aba82584 100644 --- a/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.11/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYvMACgkQe/vSuQLu -E9ADAA/9FWGRZIPVFq8BCeENk5DL/Xse2iANolIrRIb6u0SZfnXU7zsGAs1oM/m5 -JLaGcVLqQKx0wgU0lhGVIiAxlQn0jkvThtVYgbpQoDPNPM6F9KTWg9Nqc2529CXs -7YK+xHwNonJ+p83Qjk2VZIIiUKOmb7eETSSGwTG2KwSR/UZeFPg8gqaLpAHQlOh0 -RIVglDghdT4lsHob0hDo0XZRKIDMivgLa/Mn6+OF9mI8xEo7XEYjqoE2DhXiowEB -WfAxaxqF9Estr4wCGUlptagtOC88wkd8XhS19I7ExVeZRcsWBD/hiu2vdGrvcuMm -Ea+LvYQYMQMpmq0O1b8xLDxhSNgWUAijnD8a7bhGmwWGr/IhsmuZf2J7FSRM13Aw -brKJ6S0b1KkLpq8QORgscirlMiroBn0tP92SyKq0MGXC6nktCGZrdhvXNHyQes9c -S7UiLEUcPPiNJE2OZzPHnOm6AGysB9KpvzvjXJvQL+JmWa/Nb2OnmQFwKkhCmOan -fq2cFpmSSXTdfVwCNFFcFUjOwSNbGeVXjWb8sIjR39GRvWcVXa2Q/kglFge/txiU -klLHauG75UURa6L5CkSD6QNB5QCb/ZOlpfG6owvulZmzmEZhU6bYKx0aJVvQaYLK -P/IW+5BmHUAjlWk82B31QGoLoyyA79+Fxg7BgtS+wwx8doQdDbs= -=9b1k +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcDQAKCRCQsrS9eu0j +Xz7KAP4njhNCD9rd+1V6GchPdPygMzPMq/mgBeBEFUzyNO55RwEAnrD350JaDk35 +VGBTDEpEIJSzOWLAY6bSElPePvMGCAY= +=wh1E -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml index 99ee310b1ad..5d86b86c1c9 100644 --- a/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.12' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 4304bd40436086d114766359978df34ddd026ed41b7e9091a708b16e97fe8eba - size: 543907840 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.12_to_5.16.1.iuk + - sha256: c0d7d2836fd8b68fc897714d9f9e4ddfba30d0e8ec767b4b720690caa6b773b9 + size: 548851712 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.12_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml.pgp index 56335710e04..532d58f4c50 100644 --- a/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.12/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYr0ACgkQe/vSuQLu -E9BJyhAAvUnQP1kNb+QyDAzcQeF+iZEEvETNZ3OMIyKFRObu5Hif1/GBn6jNzeAH -AFZwNnfO59PAfqeSXNPOS0k399dp1s8qJxvVJnI2+4AB2+pIEtwo5tJIDUcl+dgi -JArnCG6lSfS28q2jhhWd2exgIRyFa/QsUOc6kOhUs6kXuKnB6esYWCsXbx1tmOVd -4zSKGkiEUWSHzCKIp752Dxuv4FSjkDmzcn+mzLMDTF03FqSiHMlOTq9OXjWVjgJY -+K4xAjjRAOx4bgJWAzZsmnlnkaP+mUv09vwbuwJz5SeBX8Ok/iZlLCCfcsSeR7gX -Dz8C+qRLUPUKRyS+GC2/28Tg4I5l1KNnUIhrXhRyVqD4tQIbalsKG5xuaQqK4WpH -9Fmj2F86uyNwqM1C1+a2xc90bPOyAFTpVl/48CiXM5RInFLPMeiCFA0a6lfNj1OV -hN5SrrYB0qcyWRa76Ss9/uSezSCNt7YUDA/bz1aXVPVD1fhPLeCi0OA/VM7TaXSf -dqmLN3ojx5flPGsQXTzZhw+KbDv+SQhHCIM/o8100B5JyEAOeWH85pupoE3AuWT6 -krfJvnvd05yleYNQ6OexTAkRu6XpNqm0o60UeAlc5xsTJuQ2oXmnHUDZpK/b2K9s -rvSRoIiKn4CcT84O+o7qs+5GSIT5FPXzbj79YemjQjJrcDVWrfs= -=Rwer +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcAAAKCRCQsrS9eu0j +XxeQAP9MLziIFtSHniWchsqqIwv4dd4g5TC8s750VD/ZhwvKYgD/SN07wBNrnSZb +vRBuOZ9RB8BSFbHHQoisewsJ774w+Qw= +=ZCnV -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml index 83f20a36a25..806c64b18ea 100644 --- a/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.13' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: e2e95606d641c7a055827c21306fc60e87965f699729ca7d27910bfcccf78f80 - size: 533954560 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.13_to_5.16.1.iuk + - sha256: 1aa161113fc06208a2b4e3032b7f95c8e1bce4f384287fff741ac82ff6af923a + size: 538947584 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.13_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml.pgp index e80120bcd1d..82597195b82 100644 --- a/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.13/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYscACgkQe/vSuQLu -E9AzrRAAx0hac2WEyYkK5+TZjfxYqsojjRtZRahtUe6zHkWfJtj4ddRgduL4As2j -PKBJeWUn74TFB7B4DGvmiNsy39S268bg+HVKZag6ls6CxCDo0ji30wXXQxv194I2 -cTT28OCe5WkOV0yU+ixEmqCq1lUlrmuHA7SPc1UAPlXcKkfJGo72br7GtQ1hnlUc -FQ3tZ3G6HIlRq13AuSEPNsXyOKJiawSqQ4kuhsAf3MrnMXk3Gt7pWHqasjT9inGO -kcdXS0Z5h1bsB0MLtQo9y5pkxqpjQbgEAFPegLoZCMqRWQjVfJcpvC9WKEpjBfEL -nEpqWQ07ouS22dVP/Tt+vvcvq6ws/p/H+yPWNy2KL6loBnTSAax0WxqxZuUnSFAb -hPdIlV8ROuR9IcBomxLrv9mV3oMdx9f+WetDsFUmTktfyu8uYnXwwV1I7c2Rm1ky -RGZIulc7dA9SxGOv1IX5aAVgl3Qt6G10y6wlMoWMGbjPOdXo0uGgVOA/Vmndviri -QomyynH0ZzCbrEKKhw1ggvo2MMp7jnsVBb5am7HjJh4hrpF9Li7gvPrSEfK3t74A -rv33EIWnL8tMPrgo540mnG9RuwTzXIDB311aDfBJdcMkTISi96JWud3AOMhuptKP -aw2Eg40PTv7RDZDwGkCR/wbJEgMYp0W8Q4f7bOgVWBfXUyx5M0g= -=aehC +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb/AAKCRCQsrS9eu0j +XxC5AQDEWbmB5JKcXKI1NdnZWXf2xRsBMGYMjO/1iKI/Qxat3AD+MfZ1w5rSRXhg +oCIOgEFSWbe1xirzvWKRZrGb2ylTbgI= +=PsWi -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml index dd6aadee89f..ea924d59a44 100644 --- a/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.14' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: b885fe88b1b135ecef5334436004c6e856ee0c19e543371d3ee91ecc6159941a - size: 434757632 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.14_to_5.16.1.iuk + - sha256: af9abd5c3a3f3e5f63c3d607bfbe09f5dc9e586521e2928d94406ffb869a549a + size: 439595008 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.14_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml.pgp index 9e8c51b7f67..7928e51ac93 100644 --- a/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.14/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYukACgkQe/vSuQLu -E9CuvA//evXgTIb0J50QMs4BvE/I7o5Af/nxAiBoaUhMFE6Q/y0AcZ4YVoY8IOnJ -+Bn/QdfuiaIGXZLJCIkSENyXDoZvx9Vr+/hnR3N4F4SGJxSs9E9lbERum6JzrxCS -ciV9rPBbyXu/KJV40LZjoqKcD3RbenIlr/cea5txsri07+4bEby5RCdOR7L5Uqux -0TnIfWMraVQrHT08fdfateXej4yz5tM1+pBpBwuj4RnL5lJ5AtcyEC3EGAn/YiPn -lD0s9WwpmLXdmN4qd00CLLMzwTDlyzjKLaFlnlvCKrDZ9MiX/yjTgn4GoBER9xjc -sUBhQ9T0e/+27NBwTgbICOVJmRRVg/C8AlKhMpZiW5yVirkl+M/47+8vCYSCw7ip -VIqTlOqHGb/GzWWTSCO2H2ULPFS33PcA4LYil2/K9cuMJy0vtgWFbLiQr/MM5SOG -8uCvFbMhw/0NJNtUmfEpQgWJRcA1fe7rJ7h7RWMFwEuCS9/QgKWMZGI4RmfdyAIU -S04oEmTz9fUdiLVYZkEXtzTDOXr3fmT4cIJkD3GZYc8UsIQtzKXj3d+9zWVQCxJE -2352IGVsoFLgFTkpXTUHo0UVn7tBT76W37BUyIUjAfX3fos5C1lBof6a0kjhXr3+ -QU55Ov6O+sTcl8n4Vdw+vocuOZ8+NKZSaMWqI1Z9wC+gM0/uMTM= -=xUo7 +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb8wAKCRCQsrS9eu0j +XyeDAP0WnMxU3p3DhYvZOXiYSrFVqCSAdukx/9K70hYsdCOuPwD+J4Ql+wEWwy7h +Ugu4aXzcf5x/mmYN0Z6cRiwZbJ0LDQo= +=vdek -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml index 4a996e791b6..05ef6de04c9 100644 --- a/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 5.15.1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 1c520c84552277829a3085f0f600bd0c6cb518fde38c4fecbb11c28906a3df01 - size: 313024512 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.15.1_to_5.16.1.iuk + - sha256: af9962eab287351772244d2a5114639087e92a5c038194016098cebf7b539f2d + size: 319094784 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.15.1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml.pgp index 6ef1c2d0140..e75336d38a4 100644 --- a/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.15.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYv0ACgkQe/vSuQLu -E9Ba3w/+Nx8olLp768+Ogsp7Okag6zmTl7Baz9ymp7dkh2iiKc6fUIgG0rRk9tmW -G2q8yJlCNy3+8buuMhteBGqEfNcyZ7SBGqClVgR8Ljpgm7PykHgMR+aL5dsKTBHP -F7QxoYWXOj0wAsaT3xSQHP+9znmQXgG8VhWE1rq2akWLWsP1nfwJ+jZnPb3sSIc6 -1rGKFmbBqtqdVdKLwoiszO1lzd0wyxxmLeruIwgvIcEgDji4UtuHQceg+SURSOQz -8wZG5FAgVGzGdhvFhtrM8b+VvIqIXwc+rBGhZqSL9aC5G37ymoZnDBfKY7BMwF8p -aC5vIol8jwMkLt/a5B5anXJ2HMC6gKBNmGaCRll7zZ/dMYVfBrbOXrkOquAySaY6 -aOjXUxc6jR1Evd28WubWkAigdUVuWZ9hJfV9jsQuri5sdrfwf2mVWjJzUrOJmKGz -VJyYC2HY48KVsu96spxMsyNP9yjiUNIMm71iFy046ENy9Yq8eCDd1GmxbZ5WoqcE -uSqxW6P8Dz93imbVhAYrT18I8gA/ur8t2x6Vzeo7cUB9pVxedp2R/zxAHfEiHmoV -uywfEDy/eaI9g+35l4DL4s87uUvYNxtXbF1lGhuYAqnojqWJuTUJoWPqhhyaA9MR -NvomF7SVNoPom3UJc+xksZI2GEVtLhvV+B2rESO7+PoeeC9q6i8= -=CfMo +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcCwAKCRCQsrS9eu0j +X6sWAP9L7XkwKjLbGBHLXxlQW4qkAUku3c9n9rcHnxvpQvLwdAEAxWh/AXOtT3Ap +nm49jvE6fYacyE6h1UqHcW8mgjGJHws= +=pqH/ -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml index a86461f25e9..f4767660e46 100644 --- a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml @@ -3,3 +3,18 @@ build-target: amd64 channel: stable initial-install-version: 5.16.1 product-name: Tails +upgrades: +- details-url: https://tails.net/news/version_5.17/ + type: major + upgrade-paths: + - target-files: + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 + size: 1316044800 + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso + type: full + - target-files: + - sha256: 60759183271e96d498cd2e092f17ac50d4bef4c0e99172f4a2886d09cc032597 + size: 211873792 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.16.1_to_5.17.iuk + type: incremental + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml.pgp index b287ad2912a..db5a7318b61 100644 --- a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/stable/upgrades.yml.pgp @@ -1,7 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZM/DLgAKCRCQsrS9eu0j -Xx3AAP9pLq6mYQDsb81cTh4zl+VLd2YeVXKri+UWTcf+FpgkCwEAinGqQnHpsZqp -U/3KABeSN1O5RTS4ewRp0taXKp/b1Qs= -=+xAl +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb6wAKCRCQsrS9eu0j +X+BJAQDgLbq7clRPvLQhumNvOMY7EFysQzhEb08D3SfNw+5MUAEA4Y/PnNiGo66X +JUTdj0G7criVipwAELowv/1rfQjE9g8= +=uCnc -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml index e5a1e50c195..2ec2d7955f5 100644 --- a/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.16' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 265542a5dec56af0cb64b9c5697db06d8850f8d1ef21edaf61f7a369d72243d3 - size: 199606272 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.16_to_5.16.1.iuk + - sha256: d0104c459ed4632052e96c571d09c710739b02622bda4e60c4eb61dd48a543f9 + size: 292319232 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.16_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml.pgp index b2851ce6554..451af477089 100644 --- a/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.16/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYsoACgkQe/vSuQLu -E9DMQg/8DfWPMi9KfGxsfryLtB56ttuy9H1OGbxQYAWNP1JhnAKWb3oqFcjfERaA -0YhPgg9QkVcBu9Vw9tINU03zt2Ku23ITSQ5EY/9NmpY1Q9QdhEvzCn9URCjG9HdC -XWvNn0zBwr0bxXaePAeatgxkL6ti6DIhlitLhQP8QnGuUHipmRXJXTqcDfIP9Ovx -xQjW7cY52LYtg4v+MAowLKRG09yWvp/m+649LxjUdMByNpjZw/Q8Y36g36NQL2os -LA04pBRVh6yfyHnZXC/MhsXIoreMyp+1YmE8TLNCn0wvo+7/XpDTj4axbluD165N -Z3nO0Szy34HFc3R4pMXi1OkC55Z0fnsLJmf7Z9GbyvD7Wa79nuAqC6KxaTCft8LH -rK3AFP0rBs9syavPR5eLGWxEotEw/+pJu7eAw1AlOLMVQq9/NzB15HMBbqOsfLnN -ivGDpFV1HNwsvufl0XFYhIQgioZBbyGAXhvjy/+NQQcawEYK21+rPZh9Hll8R9CF -nGMTQgi21u+Rx/QXuLmrEaYOFqhY0I5JhpUGneSDVslZ+AQOOQ/xwzEl+DWIALQL -0oc7oHPHRhUnWGC2Cm9hw8jth4TosYFzBTjAmvCcpy8xfLftuGjFtfIdepRX0HOe -wcjo+tIeFl+JSjmRbaOtaxzZxOHymfX/JW9Y/CgJy/dDKV1YhHw= -=3KhQ +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcBwAKCRCQsrS9eu0j +Xw/SAPwPqcg3GWtFa/53BFO+yahlcoM9WW+JpcFMdb6xrIOWwAEA0eleIkCqPX1L +WX1rbegFkbzAodagHAQjyARz33YF4g8= +=x3k3 -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml new file mode 100644 index 00000000000..ce6c7494b28 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: 5.17.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 00000000000..36961273a88 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcBgAKCRCQsrS9eu0j +XyiKAP9gP8LIM7vbGliCgjsRCeacayjw2brOOCmZwOOkIMq99AEA5tHvCbWzHZLA +KJiTD8DyRtWC3VPKpkHUjMRlhzo/hws= +=wKO1 +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml new file mode 100644 index 00000000000..bc4c21cc126 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: 5.17.1 +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml.pgp new file mode 100644 index 00000000000..dae867e4a5e --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.17.1/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcBQAKCRCQsrS9eu0j +XwoUAP9lgV5RTdKcsTIoZY+yPDT1T1o7+Sai/bOuoeH6F2y3nAEA/Yo74pWJOL/2 +3fyotGmrhgca2TUWAa7fyc8R6UpvhwY= +=7htU +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml new file mode 100644 index 00000000000..fe139ceff18 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: alpha +initial-install-version: '5.18' +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml.pgp new file mode 100644 index 00000000000..7c1e21ce40f --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.18/amd64/alpha/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb8gAKCRCQsrS9eu0j +X/yrAP0XwhqpKDki2ZjitHF3S+idS7vAvUoJLf8jDi68EVi0kQEAzIH+y1zFW9yQ +rBPBgrmV02TejO97cHC/YXoNQSko6ws= +=FzQa +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml new file mode 100644 index 00000000000..c2dab4def22 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml @@ -0,0 +1,5 @@ +--- +build-target: amd64 +channel: stable +initial-install-version: '5.18' +product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml.pgp new file mode 100644 index 00000000000..48c71ae4ce7 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.18/amd64/stable/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb8QAKCRCQsrS9eu0j +X4fAAP9DSWjkJwe+LbzcJWWybuqpSqFLE9Bnw4GleNRdF2f77AEAhkIvQOgaCeGq +yWBfdSp/RQcAWHyS8hv0hCN/SysoyAQ= +=3uM9 +-----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml index 03fe38e2ec8..7e6ba244590 100644 --- a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.2' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 45fdae34fc3913c17813e60714e386dd0ee5d52be99feb8838332c86386ec47c - size: 623861760 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.2_to_5.16.1.iuk + - sha256: 51c16676e3b3e166940c5c4bc75d36875cd301dad90524401dac565c8a01c8d9 + size: 628858880 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.2_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp index 48d64c0b68d..5dd35dc5606 100644 --- a/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.2/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYrkACgkQe/vSuQLu -E9ByyQ/+MHowJHgSlYWePeLpWBJ774i3cbhbfjRvw/bRhT7hVPun+ZNrlXgWZA+E -T6xJdaSninggPz0gpmpoZTt/sZ+Fm14rQd9c3TbKfwGiH7ESlzygdDh5EUVGLqbj -yLiPSLfDCHDEWt6tff1QgiUHwV1OxQQP9fT5HTbEvXDqbZ/8b+tMTT6KnOzHci/L -JyqgcCsaXQs4Syv+YuswNyZ04i8EUHGRZf8gD4FTPPIr+lVgCAzi2wPwnahkpqBy -DeERWm6zhOfkvJ5Z3iW509cSWx4V1V45etfYvch2Uvldjw/iTZmt8LPenvvjFF5a -tawnUd8cGvxcUfwlf4aUdhvCoa43TOg/vXoyJADxMgVXxkTnR0P8HzW6NanKyrwj -iZVS1SzLBlb4UrhV0354Fvk8Bx4toBc61iJ/81m3jEX2xbuahQmm73gQza8sRJD/ -1XLD6/njAbV69OeGSm1kD/tKgFLW1Y2M3sqk9cwtDS1zj2eSdIlzn3Kt748Il3li -whLBO9h4A1GHHHfAHY92TXm1TCaX8fN5Kgud+OlOW93EOk2lzubF14kw7eeRyD8k -JkNATzzbWoh0DyVXy6e5PmT6Sl+tR606RnAIvpuJF/YjHSatQeMPAKTofufF9VWU -NC984j/UBN8f2k/eq3h43P9IzGMwFAoVKCnW4fq6H89RcwQjZNk= -=PMRO +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb9gAKCRCQsrS9eu0j +X/0hAQC3f5ZrY3gsTLKso/Drlz/D92dLBXF8OGfOxS+BTzfiAgD9EO7EpMr3Q5xY +mygTB9fMkOOmF4hinpwstauiK5eUWgg= +=eSH2 -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml index e54e5a56838..4b3b8d04667 100644 --- a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: 5.3.1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: daf9851b874eaf7307d78445b2c566e6e20c9ad779af25963e7d8471addd8f01 - size: 614219776 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3.1_to_5.16.1.iuk + - sha256: 5184a5d9e445b5cd9fb03c5b25491d839c0bf35625f4af286a16259127c74346 + size: 619167744 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3.1_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp index 0d9e7f8512e..1a0355c4cca 100644 --- a/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.3.1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYtEACgkQe/vSuQLu -E9BTJw//fYaT9AmdfrJzbjOSANnB79SnIbo/Fkm6xYqsryYiUaVxREl/xWwBtIuF -eZIjOrm+lyZ9f6c6pchByE8XJtDXkrahK5wJz5FKUyfxfO7ByNV//W9+jQ2K8bD2 -GtqJbdA3DrQZt55oXdyp7dPrERKunO2Me3g8l4ds85Zosa8+ecoxRCgD1TZizsX4 -PiWpod91C0FeD54OCRSqF8H9auftwZK7oBZeRKRHEz9YNWBm34fi2XtTxaQPhfX3 -gWU5hc0s2qfb0UF4HqlaVL9uH7mO9JXu591sVBu4TunSrlah9vzjYsEhYf1xObF+ -afqDcdBblpw+TXUYhD6KkYfi+6L2u0CEnBskafXvjqTfZamHmdoQmuEqcnZUS8QR -Knl1dHDbj6oQq2QDHWZH39dBB32iH9Gmvy9YnJvU1lR9HvCqKJOSKQDfQ966skVc -V2qdLUPBQz+hGkfDz4rPOhaN2CBXUcu8+4+8LeC63t1lT0HoOWlV6TeUy8diJyxg -9wNBjk4VrSu2iJMvw7bKdJoCtZqX21SEhoqmUgYS7SdG55nEHDkJIfhj80xwPuGW -ICpjidhuSBXoJevVjLDOYUs72Dm575n53hSDkT1HsZ2B2OrQk6Ipyvjhs4z47p02 -PylgsjsTLwVTlDQbpc6J3PT47QSekpNZsiIBgG7aNZ8+3OrBuTo= -=nY9I +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb+gAKCRCQsrS9eu0j +XzU0AP9KHLRl8QleRk2pHsoRqF8Ot2Ly6jfgfyF1dTGMatT0tQD9GL9lq2KAfHOh +6uN0YvM/XTiIWMIjCWh/3NBwrJSNLA4= +=2CPT -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml index c364adb9554..f3a3d3f715f 100644 --- a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.3' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 01ac0a09e491ff61358186aa3a4af565269c9f4e8462cb4dee1ad8fd6a31d69b - size: 614219776 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3_to_5.16.1.iuk + - sha256: c49e9593c353b0f75d8da87e0dc5f368f737d641aa5653abe4761a0f35e83836 + size: 619171840 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.3_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp index d91ff08cf7a..9b91182a5dc 100644 --- a/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.3/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYwAACgkQe/vSuQLu -E9B7/g//V6fWN7KOjjnG3VBxDrmPTAjJkYUY2Z9mclcN3qE0zmyiBMj+LU45796R -RovSIxkRx3lZIE5xhs5QB4NXEbPxDd0aydRjpxDVLKWcsuZWl+TVHp08KeiqyAAm -MpFWrCUsNSlilGwM2foA8AmO4JhU+On82N5ncZ7xUsnXNawvUCXUI0sT3M8c/XsH -fng+cozOXWvwxN8O629DZja1vqbDKxl/x+egyFjbOTKAmhXRg1kktqXPzKr1etPL -IceYcQJZoP8pJ4ieerVkCmq23XZ2RRc6A5uxgykmzElSYKHjJPbqBOE9H/ENzd96 -Srb72FpXcHMiKpeKGTj3s6sdkvbK30ZDAziTHEGntmaQU6f9WUb+2zPbBhgDC91a -//7aOKW8KNHzZ3tqdzRhwW6dqhaW61uKhFYUWizzs+7gZA/Ri9t/zpcqYyWlPmM8 -CoSelxejRuW0KTY0ajmELR8jnYknVjMnkyjtggCKkZOdL/g1qdjVuL0ViPvmuFgY -q3M7SV52uTTNwdXCoaFrxGcvlo+rvJXlJc3oh29obm7U6Ej7QDXqbVz2isOsirAm -v5ruVkJfX9/onLsGeWlR+ANdYLIKnlCkRHgA+0jz702V7DTmuc55qi42u5/K+Zff -l0Fz8MfXo0CHwxnMBaM8rUTAp3lN+RxTrs5A3i+sdjVa9WIAi4Q= -=h9Ot +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb9AAKCRCQsrS9eu0j +X3HwAP95w5RzQwL5jvRYcDKm55bYdtgYWUIt6S+0Wjj/bxUeygD/YV58Eopf0/s7 +SHB+GLZtwiiHLBBl3P1V1aikbUDvPQo= +=H7e+ -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml index 11e234b9daf..9e086a09845 100644 --- a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.4' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: f9fafe63a72f4a1663c72cf7ef520ed2bbde56f3ff263003021ebd145132d738 - size: 606982144 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.4_to_5.16.1.iuk + - sha256: e8531c20f09288cddfb3de94782d393e182b0d4d7fdb10371d23643fb088a9f1 + size: 611905536 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.4_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp index 4f337854dc0..24bdd5a6be6 100644 --- a/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.4/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYtQACgkQe/vSuQLu -E9CXTRAAryCKbO6HBqDx5ov18vA3VKLGy0TCOF36kqEFTnEq+FxjZiB5TFwuqgkn -xPkcPOOZXS3uEqLxQ4uvsZN7Cb44kLEVo2QBBwrXJLqBRc6n+j4NCEuyD2j9IN+z -xAOqbyktkmpd3gkAyBCk6Sm9QQbhcA0OkqfByfF1zbGcLXjAfDu/OK4M4uc/bsL5 -C9gxv1WpSm5Dq7ahVv2tDaVCUlo0Uvhh9/VgKOx93/mfeXZqKy7WVzGMJirZHlGp -PL8IKhVsRX6foLtsVPYjKET3vfP+QGuDEIeDp7/bzBzaI+vEPehKyTEvcfxoRrAD -Nt1WnmySbmrwHpkcZnUgyTE+CFLFjZu9jcI986+Wq479pkSKizVjXhPgMV+jvyta -y3UXwXO0Xm9sepoXxx8X37981qhOojDR73ZIya04Z+rU/ZIZbcJuE5cDI+6yBPVy -R1ym56Tb+vI/CVGVBpSPr4GlyXLYo4/vHmOGJuHdebsxIp9Hw8Bm0mCqAKhHn1A0 -0gtDIS4ByyumZjxxj9PoMzbpr4YGLZP9gFxKJusuSjtweL/hT98EWid9l5/eYXnC -PVV9ubObDH1O0veNODl+0CGssi1ej8J+N0CNI/QlDDVdojpDxhleCifz7g8UdBxA -8aB9xqFSepuMWBNu5ij8iYu3P1+0ZGsZSYK5T4RgeUMnLk+t57E= -=xkPF +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcCAAKCRCQsrS9eu0j +X8TYAP9JjVlddN2/4nYOYsVO778beYb9H0gbxEFQfI81f/jcPAD/WtwXTI9dMB/q +0/G5b9gyr5sWGWQb4utk4vqxCo//1gQ= +=piNc -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml index 2ccb3df412f..3040debc7e7 100644 --- a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.5' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 43dbe5a31a18bb07916139e4c8c9705ac88d4957f9907a2e51d612792e6e0adb - size: 601681920 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.5_to_5.16.1.iuk + - sha256: 53b5e135fde8b5074f79f6f081703385627723fa46acf93d28778588d48a0ab8 + size: 606580736 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.5_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp index 0db5bb02b1d..6a37ee86eca 100644 --- a/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.5/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYuUACgkQe/vSuQLu -E9AHXQ/+O3mGM1IFTOvkEZO8aOdG/cWZxYgKj5I/MmLmtj33uU/VXYOQrgjWm0Nq -BiHr2cov+WrR8Cr7T6edGuLtULgZ9SPx7gjL84CbjYHWe7fUA70gtQxLVLtLOZY/ -PhYRz5H+Wy7TnVXzOwkYpxIrpiacVgVqrbk+X3STwKStTr5caPDC0e5ca2x/sYkN -UpOAWAdW9o1wvWTE1yJ5Ymw8/vT8tahjJQ7TuO4kINHxa0YyMGRAB3aE1i3dGtOs -a7odNr/dR917AG46P7UTNydZyeGpnEg83xuZoXIQ6VQt884IXHrEibbTFrQctMhY -64Hix/CKYB01aRrcIvNHVpwZHxpkU0I8JWhaeFvXSCrEl+y6L8O4XzSWz/8JrTIm -zCZjfQcnqDFdFXeF0artYokZhCo2IYIju1XKf6S3SUbPLT4IDvRfg2R4DxlR7jGc -/kPIsc+1ZuuSteGbnpKhb5Q1TqcqiESAbiFhiXKJ2JsFMdSWL6CvLuicXJUfF1AJ -U0taO1zMARGiz3mPfvyibGESI8GAiASUyxGp+bZusLCgETossc1k19rlZAu5Fa2L -s6TxPA52xrayC5kKUSo9sS7yyFm3RR7fEM4QFQeT+d6fe5uMk0JdDAnhO2PmJrt1 -ndzdlSDjbhKurEXGh9ozJMJg9F7loMict0XlNEND8i3ok8dtgZI= -=SguA +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb/gAKCRCQsrS9eu0j +X2AZAPwPeZt1TunjZPY9frzvVC6kqiYMqIP/POeXE9AYMYfJIwD9EmYvD7Nny4D2 +n0pLoEpQuOK1wN6gq32pkR2CUF1o/gE= +=l16T -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml index 9aa1fa15311..3d22d78f49a 100644 --- a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.6' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: d17c8d281214dac26548b732d211eee54e968d682920e7c535c9431f62070e57 - size: 601522176 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.6_to_5.16.1.iuk + - sha256: e660bcd7e560b08fb53c338552200be9238939097321a1dba48e16e683bb635c + size: 606408704 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.6_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp index 711be3f66ae..4eea48a9f39 100644 --- a/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.6/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYxAACgkQe/vSuQLu -E9ABdQ//RZZp5cWxgW7o5kl+B8sbyQMQhoS+eQJrltTzdDRfC/sepx6pkz7HIdF8 -+RzOBvP70Hs2cTb9/7KX7J87fC4PhjrFLCIL+ISDdgAhkBw8BoZDsh4ejFCRi37C -psavoX5Wi15Y8nUo+WYRSqw4o+oXhNsXDCDY1xRI3ucf9+HPH9lMudzNAxKL0P8z -+4BtK2RfLESh2KpaUlyKLV/Vj8GzLUEFbVgFaSm7b6+tUJvkslb0772/57KxTlEx -sFJ1AxBnm2fytG2T5HjoaEJbRz74ZIgF5FpI7pfndUmPZKdrTtotzBNC6rZXw3DF -yHejI4vUAoNHFReSbfCes+agmj8Ay65x0LCBYaVBLy8i2Px6bJyeyGAbCySaExQR -/Vj/Hkq00HP+qMRua3lYmOHdqsD4nEiORe/5AGTiS79XkhREb9PcoBWnjSmoG4b6 -ZWF/VhN97Unp3h8oQ8NBdBiJNpGjcCVJfdd1o7WTHr8ZxbzbwwQv/QdRHauBAMM8 -A9atTYh1THHqKf8vHatHLJ0AUymtN+mYKWd/4f8b7/D7L6T/M+yDQpfS/WvYWLbx -lhweqG3nPsa4Q+tZCWbhJyBFEe9o+f5IKk3bu9fXvpVw3DeqM2/GRr1EXGvsb46i -NzFgnJCTpFjk6b4BqVxsSoVjUhRHnRprSqET0UQT7zSu+lbV/Dk= -=CEwW +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb9QAKCRCQsrS9eu0j +X1ojAP9/ufGyExPjtEbgG0BP2aB0wFNxrn27nNTNFZDtB2n/EQD6AqvGgeTQ1UIu +jCaRoWiYnLTjdQHF0X46d4gaP3Sf4gA= +=NQ5u -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml index 54079ff546e..c99ddf9d8f5 100644 --- a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.7' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: eed1449935e1744b8c5d20ff8e892d2c7ceded3a868d697a7712c2ffbc5d7f3f - size: 598130688 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.7_to_5.16.1.iuk + - sha256: 97411c08b97bb5ecb55a22488b6f4914c05b950298250b296be5e7f81898bcb8 + size: 603021312 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.7_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp index 1f0cfe0c587..ab511d47154 100644 --- a/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.7/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYt4ACgkQe/vSuQLu -E9DsMw/8Cxoe7RXSayExFlG1Sjs/qn5XlY4PXaqk2k2tGsBulVyPehUr6XsaOysT -ZsGsH23ryqObpZUUXvcdolVGwQD4ySfo73nd41qkn5U0ukoMC+dvVIlmHYhuYfXr -sjvsBdJ9CJptOuAmx+erxSnmX1SSYShCpDu/SM4BKO4SPyxUHeblsu6UBJ8rDwo/ -47YYhfwm7iU22+QmJZFe+afWgvvdnI1JIrpWm3r/goSilsoBFg6ZrzHOoNrBpcmi -lyNGbwyWepqmBNTuvX4kmPriuADWb6/Cgn5rgHvLtKNHNU8s+EyEKSJZnPT1V2/q -fA6PKi+EHdRPqU/MB17alnox5q1YukeuuFABIU1k/1qdTpEsXUwzxXfdpo0LJ5BK -5nRjQZHX/fZztsTi4ODcBnENPR+0nQivCeX9jWvQELciAUwKZ8h5CMt022XO7NSB -IFdylzEByZpNiQFfw4WFHsg6OxL6H9XVus3TQdPdmGGNz0Tv0GsGETFtubHlcblu -WfsUIUgJqoooZQ2EZq3y+hTIJnRZUuEKonIy6W4t2du5G6JnLV3o16Iz5MbAdVRv -62fUjBQCsal0DQKyiWxppa3FukBeQt8FWbbxTHMuJANO2vkjm0WXikNx9D4xCHwT -eQ76xpwMMtVk1iPdKRHCmA+ORkXGBKPhBuAgWhje6GsZtTRxSjI= -=ttiv +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb9wAKCRCQsrS9eu0j +XzTUAP4+8OyWbxKKpDTJnO2ebSFK5bMWskAoIWSCHtGTW2PaRwEA5mPbQQNE+XFV ++xs8BhwMIrdILFbT0dMdU9d25MDS7gM= +=pdQo -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml index ff19807ebb9..01046b0de21 100644 --- a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.8' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 12fff6ef7c9185750276834b1e6035a709e111a128eff3de14ea5c061edd5eaa - size: 565575680 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.8_to_5.16.1.iuk + - sha256: f487db6f2274d288fb25bb50514ae8a41f5d4acc25f1393b67b330189686aa51 + size: 570486784 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.8_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp index 06a03b453dc..074caecec85 100644 --- a/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.8/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYs4ACgkQe/vSuQLu -E9D+6A/6A6Udok97M1zfQC5+4IU3H23MagEdfwgnjhB7MmgPJ5NqczaU1QZh6i11 -iAMoVs23q6BODuxDF4cGkwZ0VTQDVO1KJqqfo8fh77o+dofrZsBb6t/7MhnSIw7l -fpYlO7fhxIhJ1bj/sWIIe9xRYjliWjKExgcwIHLgg+kOWFsG3ku+OGLy0JW9D/dz -FpSIMHpcjJlMl34EL/l9Sn1k6Tq7hzEILXH+E2zYYTyWPft6+G0mqGzDAi+Lr7CE -g1zCPuWKHIoNhs1vvQGJLYUMUa23uF5NqK4QxHT85bWsURJkB/ff0kNkrXUXbiKj -kV+uuIQZxeavaF2023bAmdelmpCqG5VfZpWICAjlIs1NhC4NdLIDtG0dUZ9drQst -qJ0A8RrmpREmjd54E2X4lJbe03K/jArYz83xuXC/GJ+bGXsPtrXv+cq0AlwjvhJu -iuQoMdqYimT6yaO5C/A1BIcgKBUBi+YYO2h1Mq8znSPBsnoEPVEOZ2p7KeFsEhZx -XfzlxahOfoUPCeWhSK9SNAObC1d9ojRLXi1DMDuWADw/k/Vyj02hj1IRSMaoZOWt -udLntu5vNbSp4O1gRw3WZ9E47XmlJuqXi0sHFp5TBa8MovWDoAe+bzcQYaS1cRmy -FDR2vNfR5aoLD3K8GTlHuWr4Ct05SVDiOQ/N5S8njOFLZzoJPIw= -=0piC +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb/wAKCRCQsrS9eu0j +X2HQAQDn5S3z0E9uhQlAIVkMAs2jr4QFOZl7JaEQbmMt0wl4ugD/RBmKVN3wLFb6 +JGwEcVFj2nyCNqhMT+QASFnyBmQKMQM= +=dOew -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml index a9f14adb636..e9144ab9b19 100644 --- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml @@ -4,12 +4,12 @@ channel: alpha initial-install-version: 5.8~beta1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp index f89542f84e6..c73ac0f62ad 100644 --- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/alpha/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYsMACgkQe/vSuQLu -E9B9wBAAnzrwQzJMIsxQ30pCxte/nXvF03CNRUvGl4wiSIfYuqqIhPEwEUM8WWAn -kbkWbO5+5SZY0I4G3GbS0mtkfsebsx7xHmCxPf7xSWrgeD0IukSg6VfCuLUMBTqi -N2I5LGHtResYkS3WrdLhIinAB8vZDBj5l4WZFztE4dphlrQm9uEF9Di4FHdCanQ0 -NUZpt8uFsZiz94G0G1ZpqgTKauOrTyz6oKAZCJ69oHs5B79YWY01RGq4xvluPisC -GotYe7ItzpjGbL8dN4H8yg8xNqo28YY2tu+l63FXLDElBinc56s7X9jK6ASiXy6T -3+e9Y/q1kwxBa3XCGwPH4pP2KVZgRpK+w2QOGZSgCN+owWO1yUshOzCKV+jqSVR8 -CX6aobpVjZgZhy2/coDTPE6bpP/Qz1Ch0wazVW7NEDGDY6wvUCyXsFitn67GTYCA -ky+JmRnb5pQR966LmihqqJuhKAstd6AULGgMdqznHoOcn1MDXd1u08EIkgCg+n8/ -gu49Ndcsgy+czbKD9NWXSQ2egy0S3ceEo7mr3icIWkenY/WIWLVoX3jPXXmeUtg/ -jLi469g1lzei2xFN8uH+dMl++VyAU39c1gRZ8wq+IVCeRPDpw0jzpRPn2xNfbcAX -pyLaFp036XbOffDYhZxKm6dhq4+g+1d3Fd6QiiGxZ2csgJku11A= -=HrF0 +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb+QAKCRCQsrS9eu0j +X+lcAP93e4sBbl84xVERzy72wm+GjDWp4vJo1/bPKhzOS4hSMQD/X3HeAh5Loa/F +IbwA6vy98eULaztG13PXuV7HiSI5dw0= +=BhQf -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml index a343a01bddf..4d36191d594 100644 --- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml @@ -4,12 +4,12 @@ channel: stable initial-install-version: 5.8~beta1 product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp index 9aaa0423b80..e9b8ae0fd25 100644 --- a/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.8~beta1/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYsAACgkQe/vSuQLu -E9CoFBAAtdgKKMYlg2Zx8JCrh9+D+caoxKGcE8nU6SgBX35YHUJawusckHVsEN1V -PWfWdvSXMoWWIM8eqfXJgElwUqPWXxCMKKvccXIciTSjTkiB+YtE+Y/V5/fDmz98 -wmF3d/Kf5TjoNb/CgoDYhuKGoOTggmk8FXOcg9FUpSDUWUjvEp7eqG/y3TopQwfO -rqirfYhTVMuFm6X9AXxeQmaWixSKjDTnkXRpV4qZmFKn9UaK7P17W4GYvSGHCCV2 -SwALhGKW7k6sfjNi17CbNLQo6Yp8njd94EL6rEYXksvQWHoGBqYC72ahJSt6XvG/ -oGXb+/KSgkvreRw353P4ysTqRhfcWSGLpvwwmXw/UV5h1FrUyLIBI/NqM95SAFY+ -q277FM9emXe3fvlw7nrQoCZH9WuMGhp9gU0THaKCS/znPqTu7+wc5OIZj3vIfiGe -6ZAGh6yIKO4tTuTt0ictpRunjupbEV0ewNHXiuVad2aw3K48VFhhiISh4eKFLPRG -7OoCIxM6BJHgOEqNGrX1sjgjY+/UPl65A8hXQuqvbun2HXtSF8BreZ1uLKcexxDE -yvoDxSZND4zntiOkplf0dy0ZFwGiBq0o5hL+HNwp+6nTcbYZJemeHSAh2m75trF0 -xNL4+q6xcyvbW/W5u0cXe+tjI7NEDVAAFSAXzKWn4STHcHQDO2Q= -=WWwD +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXb+AAKCRCQsrS9eu0j +X30jAQCoKS1jeg0R3DL4rw3c2KTlg5mFmhhb7H5nv0ogA4K7mwEA+nBJZvUSCOHO +4Cf6VKALaqmTRoWKthI6TraVOv2BYQc= +=exyg -----END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml index 39fbdf44072..bca389ee729 100644 --- a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml +++ b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml @@ -4,17 +4,17 @@ channel: stable initial-install-version: '5.9' product-name: Tails upgrades: -- details-url: https://tails.net/news/version_5.16.1/ +- details-url: https://tails.net/news/version_5.17/ type: major upgrade-paths: - target-files: - - sha256: 9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 size: 1316044800 - url: https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso type: full - target-files: - - sha256: 3a695b5435b97ff3758ecef16ed9cf445b075b369751463facb4b99b69862078 - size: 560689152 - url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.9_to_5.16.1.iuk + - sha256: b868ebdd58aa71b8bcb7b9126200c54bc349cddcfa5989be2a23cb6e1c66f72c + size: 565567488 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.9_to_5.17.iuk type: incremental - version: 5.16.1 + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp index 432d3e04da1..c024ed7543e 100644 --- a/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp +++ b/wiki/src/upgrade/v2/Tails/5.9/amd64/stable/upgrades.yml.pgp @@ -1,16 +1,7 @@ -----BEGIN PGP SIGNATURE----- -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYu8ACgkQe/vSuQLu -E9Bk5xAAizhfhi8E+vB2aBWY7i2owcSiFJG2OCwgx+wZvKIO5Z3FJ5h8mQdIGhfG -CajT5aBJu1VKustkP79DAiEj1aSKVFe+tDUUWueFYEA7Pm02QylORJsPwjEK3xQ9 -84t8UnYfsgH17YYGSRVZ1q9H6swiG3Rj527aWnr4YazAPQ4ZpSqUqAwxXeBmMpVb -tc8XwctBjRbBtZO7bi4ZcRjfW2PeGBPO/ojWJ2QTgOI5aFnlIcgVhy/1GMKqPHvd -QefFbYuR6cT7aoJpdqjYimgMcmzQpthl+cTcyyFoMWNz+aWdjtdCXy06f48WWSMJ -hsX4DYqGkbP1Nd2nBA39zy7iPJ35RB909x7yGhpaqUCgFadfyP+vNy3xe0g99YGQ -ZPs+HRJR27IrzOMbLfNMUJAJOQWEA4WZvf6uOLPjNszD0VLJy+jIe4a/Y90XNPRz -8QxiXJljZ9P09/oGDGcSh0zVPEwVdSTnyQWVy6xGKzitsHQse6cBpvjmphbYZ1SV -hBCVUznprF9ooMa7jxtjDFGbkPLqHUsMVw4UwPgy2zgxTkTfJI5DPfEmy6XMKo7R -pmoXFjyMhjY42j9X8oBGhHe2iQFHBQhBZR5v3J6AQPRID+VRRCZ6EAKIw4urgIcY -5Sm+Qlh01YboXXSZ2mSFmdpoztDwiiPIwe2ZMOBcpJV5gH3UT+A= -=5Ijb +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXcCQAKCRCQsrS9eu0j +XycrAQD1NjutjilgvqeCOHEvGY2lhB/BjacOoMiA1T6/aQ8d3AEAqjqsn1QomnLN +9mpD1sNGFDtlFsy0zdccQFB/VMJwBw0= +=HTG/ -----END PGP SIGNATURE----- -- GitLab From 75b9a16a211e0a679f2476494d03be4bde508556 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 13:34:58 +0000 Subject: [PATCH 109/119] Add incremental upgrades on the test channel for Tails 5.17 --- .../v2/Tails/5.16.1/amd64/test/upgrades.yml | 20 +++++++++++++++++++ .../Tails/5.16.1/amd64/test/upgrades.yml.pgp | 7 +++++++ 2 files changed, 27 insertions(+) create mode 100644 wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml create mode 100644 wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml.pgp diff --git a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml new file mode 100644 index 00000000000..f47059b11e8 --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml @@ -0,0 +1,20 @@ +--- +build-target: amd64 +channel: test +initial-install-version: 5.16.1 +product-name: Tails +upgrades: +- details-url: https://tails.net/news/version_5.17/ + type: major + upgrade-paths: + - target-files: + - sha256: ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4 + size: 1316044800 + url: https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso + type: full + - target-files: + - sha256: 60759183271e96d498cd2e092f17ac50d4bef4c0e99172f4a2886d09cc032597 + size: 211873792 + url: https://download.tails.net/tails/stable/iuk/v2/Tails_amd64_5.16.1_to_5.17.iuk + type: incremental + version: '5.17' diff --git a/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml.pgp new file mode 100644 index 00000000000..28fc4a7034b --- /dev/null +++ b/wiki/src/upgrade/v2/Tails/5.16.1/amd64/test/upgrades.yml.pgp @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPXdAQAKCRCQsrS9eu0j +X37nAP9HK7oyh/Bcd++tNRhxg2LmV8lTSvXgKyMQiEvGrEbNhgEAgz95SXZdCZpV +AaBpN2hRRHp0aQslSN4yxnbH5Kl+Jg8= +=nLQg +-----END PGP SIGNATURE----- -- GitLab From 559d97910c1c71302565faffc86021c3d572e36d Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 13:35:35 +0000 Subject: [PATCH 110/119] Update IDF for download verification --- wiki/src/install/v2/Tails/amd64/stable/latest.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wiki/src/install/v2/Tails/amd64/stable/latest.json b/wiki/src/install/v2/Tails/amd64/stable/latest.json index 9382ca4d329..3b11c7ab8b6 100644 --- a/wiki/src/install/v2/Tails/amd64/stable/latest.json +++ b/wiki/src/install/v2/Tails/amd64/stable/latest.json @@ -7,9 +7,9 @@ { "target-files": [ { - "sha256": "1f0f5f26eb2fd038ff1e25cbf2f96706ff87ba6fe3b9c4660ff3e48b32668cf3", + "sha256": "5b9c8f3b6ef8d39cee3a357d3f0dba0da2495eaa534b70d3b4ddee4fb9c46da0", "size": 1326448640, - "url": "https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.img" + "url": "https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.img" } ], "type": "img" @@ -17,15 +17,15 @@ { "target-files": [ { - "sha256": "9f43f8dd68481d8b407606b75199e43c03388fa7577efcd7f07f562f361e54df", + "sha256": "ffd90d74aedaba1d68dbc07359253a57769b8049b25ce982fdd090fa0491e4d4", "size": 1316044800, - "url": "https://download.tails.net/tails/stable/tails-amd64-5.16.1/tails-amd64-5.16.1.iso" + "url": "https://download.tails.net/tails/stable/tails-amd64-5.17/tails-amd64-5.17.iso" } ], "type": "iso" } ], - "version": "5.16.1" + "version": "5.17" } ], "product-name": "Tails" -- GitLab From e42b9dcd0abef04dd8b4e88838ac32ba56e20711 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 13:44:45 +0000 Subject: [PATCH 111/119] Updating trace file after uploading the ISO and USB images for 5.17. --- wiki/src/inc/trace | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/inc/trace b/wiki/src/inc/trace index e754b3de12f..febbc1c4cb8 100644 --- a/wiki/src/inc/trace +++ b/wiki/src/inc/trace @@ -1 +1 @@ -1692034292 +1693835080 -- GitLab From 7259445801154bd2909f425f625ad0f3b41575ce Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 13:45:03 +0000 Subject: [PATCH 112/119] Updating trace file after uploading the IUKs for 5.17. --- wiki/src/inc/trace | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/inc/trace b/wiki/src/inc/trace index febbc1c4cb8..4219f93858b 100644 --- a/wiki/src/inc/trace +++ b/wiki/src/inc/trace @@ -1 +1 @@ -1693835080 +1693835098 -- GitLab From 9831ca96f465ac880e350f0beb010dcd45c83a90 Mon Sep 17 00:00:00 2001 From: sajolida <sajolida@pimienta.org> Date: Mon, 4 Sep 2023 11:27:32 -0600 Subject: [PATCH 113/119] Write release notes for 5.17 Closes #19931 --- wiki/src/news/version_5.17.mdwn | 69 +++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 wiki/src/news/version_5.17.mdwn diff --git a/wiki/src/news/version_5.17.mdwn b/wiki/src/news/version_5.17.mdwn new file mode 100644 index 00000000000..a256d7bdd2e --- /dev/null +++ b/wiki/src/news/version_5.17.mdwn @@ -0,0 +1,69 @@ +[[!meta title="Tails 5.17"]] +[[!meta date="Tue, 04 Sep 2023 12:34:56 +0000"]] +[[!pagetemplate template="news.tmpl"]] +[[!tag announce]] + +<h1 id="changes">Changes and updates</h1> + +- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]]) + +- Install more printer drivers and enable all printers automatically. + ([[!tails_ticket 18254]]) + +- Update *Tor Browser* to + [12.5.3](https://blog.torproject.org/new-release-tor-browser-1253). + +- Update *Thunderbird* to + [102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/). + +<h1 id="fixes">Fixed problems</h1> + +- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket 19728]]) + + Sometimes, *upgrading* the cryptographic parameters of the Persistent Storage + was taking too long and made *unlocking* the Persistent Storage fail. We + allowed the *upgrade* to take more time before reporting a failure. + + Please keep reporting errors using + [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems + unlocking your Persistent Storage. + +For more details, read our [[!tails_gitweb debian/changelog desc="changelog"]]. + +<h1 id="issues">Known issues</h1> + +None specific to this release. + +See the list of [[long-standing issues|support/known_issues]]. + +<h1 id="get">Get Tails 5.17</h1> + +## To upgrade your Tails USB stick and keep your persistent storage + +- Automatic upgrades are available from Tails 5.0 or later to 5.17. + + You can [[reduce the size of the download|doc/upgrade#reduce]] of future + automatic upgrades by doing a manual upgrade to the latest version. + +- If you cannot do an automatic upgrade or if Tails fails to start after an + automatic upgrade, please try to do a [[manual upgrade|doc/upgrade/#manual]]. + +## To install Tails on a new USB stick + +Follow our installation instructions: + + - [[Install from Windows|install/windows]] + - [[Install from macOS|install/mac]] + - [[Install from Linux|install/linux]] + - [[Install from Debian or Ubuntu using the command line and GnuPG|install/expert]] + +<div class="caution"><p>The Persistent Storage on the USB stick will be lost if +you install instead of upgrading.</p></div> + +## To download only + +If you don't need installation or upgrade instructions, you can download +Tails 5.17 directly: + + - [[For USB sticks (USB image)|install/download]] + - [[For DVDs and virtual machines (ISO image)|install/download-iso]] -- GitLab From fe409c3e64cede85cfd6a7bbbd797af2486d1f0b Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Mon, 4 Sep 2023 15:34:14 +0000 Subject: [PATCH 114/119] Update various website source files for 5.17 --- ...stable_amd64_img_gpg_signature_output.html | 4 +- .../torrents/files/tails-amd64-5.16.1.img.sig | 16 --- .../files/tails-amd64-5.16.1.img.torrent | Bin 101611 -> 0 bytes .../torrents/files/tails-amd64-5.16.1.iso.sig | 16 --- .../files/tails-amd64-5.16.1.iso.torrent | Bin 100811 -> 0 bytes ...nifest => tails-amd64-5.17.build-manifest} | 100 +++++++++++++++--- .../torrents/files/tails-amd64-5.17.img.sig | 7 ++ .../files/tails-amd64-5.17.img.torrent | Bin 0 -> 101605 bytes .../torrents/files/tails-amd64-5.17.iso.sig | 7 ++ .../files/tails-amd64-5.17.iso.torrent | Bin 0 -> 100805 bytes ...6.1.packages => tails-amd64-5.17.packages} | 54 +++++++--- 11 files changed, 136 insertions(+), 68 deletions(-) delete mode 100644 wiki/src/torrents/files/tails-amd64-5.16.1.img.sig delete mode 100644 wiki/src/torrents/files/tails-amd64-5.16.1.img.torrent delete mode 100644 wiki/src/torrents/files/tails-amd64-5.16.1.iso.sig delete mode 100644 wiki/src/torrents/files/tails-amd64-5.16.1.iso.torrent rename wiki/src/torrents/files/{tails-amd64-5.16.1.build-manifest => tails-amd64-5.17.build-manifest} (98%) create mode 100644 wiki/src/torrents/files/tails-amd64-5.17.img.sig create mode 100644 wiki/src/torrents/files/tails-amd64-5.17.img.torrent create mode 100644 wiki/src/torrents/files/tails-amd64-5.17.iso.sig create mode 100644 wiki/src/torrents/files/tails-amd64-5.17.iso.torrent rename wiki/src/torrents/files/{tails-amd64-5.16.1.packages => tails-amd64-5.17.packages} (97%) diff --git a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html index 8447c259418..ddaad03ac4c 100644 --- a/wiki/src/inc/stable_amd64_img_gpg_signature_output.html +++ b/wiki/src/inc/stable_amd64_img_gpg_signature_output.html @@ -1,4 +1,4 @@ -gpg: Signature made lun 14 ago 2023, 14:23:50 UTC<br/> -gpg: using RSA key 753F901377A309F2731FA33F7BFBD2B902EE13D0<br/> +gpg: Signature made Mon 04 Sep 2023 10:07:58 AM UTC<br/> +gpg: using EDDSA key CD4D4351AFA6933F574A9AFB90B2B4BD7AED235F<br/> gpg: Good signature from "Tails developers <tails@boum.org>" [full]<br/> gpg: aka "Tails developers (offline long-term identity key) <tails@boum.org>" [full]<br/> diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.img.sig b/wiki/src/torrents/files/tails-amd64-5.16.1.img.sig deleted file mode 100644 index 23d51d81aa0..00000000000 --- a/wiki/src/torrents/files/tails-amd64-5.16.1.img.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaOPYACgkQe/vSuQLu -E9A40Q/+N+ePuCgR9YNhlrK+eIPBBmWN8FcW1JhtLWmZUmZjr+V8KW8r4UZZoLLF -eUdUh26KNEXgKjDBdluc8TIZp05iGoHHqi+Ewoab1NHaW0s6xqDNaWCE8xZyIvTB -yp5MHfMggCqFZSSOcSqp6pBnYBX8tBxiXHYiKZUMz70Gb5tN/duhKG1obSulUIuG -6k4xHsgbIs24YXKdGYzTq9mdpf0h0yzDrDXuyQvzTQOrVFNjG8LVvH0nnrCXaFid -FOiWxjqFtVcGVLQMPjxPk+O/SFy5bWvneARExUziGag1vgCbJdYnMi79I1VgElsc -PPx7BWRgOlu+AHY5nhjxrtbyzIdn5aqEASv8yS6ps7gsjC4Nz8+RHOis7kjCYpi5 -i2y/0Uc7G45o74qp3vroJ7P18MhqucyGQwT8s550dkQ+Q3PH4JZZoaqRXPBVjBIQ -E4LPGXDyHootZNfLkxNUomghutE3Np6mUghbiG9pdU8BhejvZDRT0Cs/ecNMQ1Yt -xgmoSxeSIPTI1+48sSPMryi2bDJpD/RY5fAqXLWtnPBpI4zA90Eneghe7L7HzwKV -ZT7vlvVJdIvcr+OEFAycau9379q4jjmxk47zXCQLC0Fh+yIg3yU+w8EFFQrf7I/2 -JakKNsdxbLSWLXigeP03+xuZFvnLtlC83wcYH8KOOBa+c4Z/yZE= -=gAEf ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.img.torrent b/wiki/src/torrents/files/tails-amd64-5.16.1.img.torrent deleted file mode 100644 index 64661f872c987b620f38aa1681228361ea70dba7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 101611 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 diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.iso.sig b/wiki/src/torrents/files/tails-amd64-5.16.1.iso.sig deleted file mode 100644 index 0fc1cf59f92..00000000000 --- a/wiki/src/torrents/files/tails-amd64-5.16.1.iso.sig +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaOOwACgkQe/vSuQLu -E9Bk1xAA0XX7V7hTdah0NRCcTYPJi49omzcMeJAD7662QficvATO6dl6tKGpaY6f -mAoqQ9IhF1XOsMbJQEYqwfQ91gd1thPS039elVw0NZtpj4/KtkljguL0M5sH6ovT -jyGDB6MqgiS+pSs2fl1bMx62kktNTfV65fXW730YbTjBk5ZptMBCUNrCGnwYThCG -NOb2BmLBjjApNf+inMYomHijRXdhMM1XRwkjZOtv2bHNK49qpb6Ru6kgGWyH4ozr -t5H4x4Svoi/wik+jHQ3jyC75/jyIEblKX6j3L1Yx5W4hT+g7/qn7ZjdIJb3iFypD -/B6tGCQV6DrQbkq/+F7YR948m37grPFoTZkudnFXz9T4abVCEeHQjBNGDWpYlqsM -Tobj6eeFdxceNqDg2JVbXLrwCl9bXlt9wg1Gq8ZZy8kmieiiu27M27nk94bWoKfX -7IdvJuIiT0LJ/njg6ksCsYpTRRZaH1GZcWM14vtw6KWLbOK+sqtWLm6a6vM2MtNL -O7zRmT76Zp08FGfvs+I1aXoasVoMrJmAVBdQoVyX4xBNL7y3vYC9UtpLeqGO44MU -wyYFJ1lft4J5dWo6my3IKMISV+kvvWC4cf+TmP3SQaeqZHA8q7YC02uOtU+01o9q -c6sG8p3jsPxNvZV2hfWhZi2Lg3PA8WsjjW9JuDnklb2ht+RvH2U= -=40Ti ------END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.iso.torrent b/wiki/src/torrents/files/tails-amd64-5.16.1.iso.torrent deleted file mode 100644 index d21af63d3748d82c118429e99bcbf1162b9d7d2b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 100811 zcma&MQ;;r9(5>0FZQHhO+qV6-ZQHhO+uCj0+O6I0`TjX4W+EnLA||4)vYuQkFS9Ds zjEl$E!NJkp!PK0Ug~#2@iHDKV&BfT%*4%}`&C$ih+`)~(+?~PE#gd1Ootc^S|Dx&b ztX<vg?EZfwncK0l{XdjV9i5!aU0mH=EdIyFmWP9zgWKGknTf~L#oXA<+>FQs@Sl~v z?f<TTh?(JktpCqTYexqnv;P=tW)5x^CKlHJjyW5TwS$GD89R@KwVk=Eof!v@ow<Xh zo0T;)D>DZZ8ygoB(|?SUv74103k#2%v9+Bmy|KL+2OB**12YE$GlR9Oqq+J2oyNub zKbrrG=lK8N8C<O`&CUPA9E|PF|6f(<|5IgV;c>DyH#H~v-vzO7urRZ+nREQFs4FuQ z6B`Q?&)tiwn4dN9r$8drX8%kHnWc(VPhHrb_ZqV+!h8Hls7-Q#m1#FO9CUNFUP(v^ zhW7k*30s^!00Q*H`+4aeqWC<Z<u+nQ(vxDUsDuTFxAqfM%}e})u2gpsfSFd6=HVjq zK9R-ko^9}V2!V=S$-Qg4z{0KE@FP~dU&@mu*CAN~)3E}0D&R?6`)1H5bv_@SbHyb( z@ldFGVrBpX#P?lZPS0JO_q9w_F2SJ%C!0Gfh*kW7K%RQa7LxMC4&-b_s*fW*=4-&U zX>-{NLDTr-{0-@+>5fZW5;)yz_;NcI&~e%@;}$wfqi<i`p_x=9G&HnL=MYO=S`lR# zD$>y_VaSc>0yg0p(8p6L9{rc7#35xaB;+5F6jj=xrW_~JlZKkW+rM8Aj9si%Fxcuv z2a}MnXyG<sSpE^xE>AKQIxmWJyc2`$yzK4fVs$cypo(1sfWhz3IF+Y$P*1f7F~6*G z^mZxEOW3TPInm=xPn*M5eV+&7>DTcPtW+k>1_>VLzSsr{);Tretx9L#gh}p(lf{_< zp_tq%w@w9#wAcG2lA(&)-fRe=`OMIxeV6A$`89<7k|rgyiYHoPT+!6qa~udB+Vduh zOl3SPMPubDSwCdbm@@|cB<FxC$e=EGA+Mxtc8C?en5{V+HA85Tg(Tw+e+$#A*SGlB zRjIzB=4T~8T>PtC-|)zaYS6hleayrCYHgszI+%~Z8w(0LPI6S7|9k#mYVM!=Ax0OE z2s70FvS9W&dr=5NKDfqcnT?53BHfxMdp8=yD`fjTf%v4VXLj){#>EE4zp{J&aR@)J zx_pLV<qem2edf{k+8EgmjSot3k24L|MwDbmuMf7e%D5nPNplj5pLkZiuM&@<&<LHT z!2T%bLA_CVW<U$rl1@YMF~-yobX05r!g7VsJA||~NbpqKU~lV|-POn)SuVi%m0wTj z><xBN(|I~s0*$W|g-H3?68a9}*41A5*;6(KthtsQLkgk|M!k>lcD@JHZpSgPp0YT6 z1DoAjhB1LZI2gY5$(<>Ac|IbTQX3wCts(-3!J}E8r09Uqz3k>m6Q7dnkCX)L11;=_ zg1hmOQ|Qk8fS{77_=D4-Z-jlO)8_SL8Khg^@R=ohj2%necAXFNqt6RD_7z$WK+j0v zk`0N%V8I=Q;%Uh;Kd$t%WVB&@d9vsqfW8w=QqL%VM5E0G!FU@ygo!axNWBOE*}FD5 zNM>{OjTTU_6yShwI;t1J<6uhL!_9d{L}*sN5RKSsuy(>u0l-v6;EJo;0&TZ_j>(j9 z$xgwy0;$tMBEwL8F<=_DaBuX6f+p6XyTVmvJjTnS(NfO3^yvmx%;(nAga-F`xkMP! zgLHdf&h!u{U>dZ@sv@RduE$y=RN1%KH#)GIHHWfRWx?(|-Eb40Aa|&m6`*0uO+F%- zf=K<d?|#}y00rI+5&hf_6>3(>3nn*%7b!N?PPR}BtW|c=8>CSDx4P6ztQn;^5o9#- zbwDP0EmGMMHN5(CeF#DUcfsjhp=YUYiwe>EAOy5H=FiIJ8Y#y>1MQT5aoso8w)$6a zgfV3@q;mAq%3e_{Y=(~a%*;ADLf%nWF+Q``VB#&_vsfOKL%B4yaho|Mb2RaE9to(4 z%-d^uExpc#o!(0dj08^LtAaI*#W~qWLLuGV0w%N<AZa}-(Ni{aSpZL^GfR!**VZqP zYBV+n!pH3>Ofse>8LIp-sH7u(A<xg(oCoq$Z{1(_as?P6Cz_$f`4jfIq6QN1&Gid3 ziEse)ba_pIJOoLcyi&SHc;Iy0x!CzOh<N!>H|P#FV|Zvl0+3Y;yv(B5WmEqGYZYR( zQ9ev$Cu1yrMG)sFlB3l>JJ+P%yUKOnP_hKcm#-jqJzNQ~qcFLMIKX7HmEVc>n4NVB zBp@VbSD=9`{`#kg_WWu*o2<w)E-H)x)m1E8NQNbklby4>u<<}clI^N{SxN?~MUP(4 z2_~1_Dw@LLI<7;G?A{f^6s;UJ$`ed_C98%~5*K9irFMl{vvHoNE_(!=mbg~HlK?== zejCgm+weccVI(3iCip7d+7)_VhKys7jgOhN1U9eR`+!+6Gt?Iu(86<TtTPS|@HE{S z3{Yv_bTJQn5SWdI!BfR(Etc?@kNQ}D%3BX34~!H)A=Cc`4I>N#pVdY^Ow1bEmuFcu zr|F2?|C-gu3z8ZGZgqvgcb^Ggi>v&O54LGW|2psKPcbbNP$8%)bo1#2*tic=qn>^B zh<TBt^2({BO=N~%q5o0cxd`!Ku<acC<PcLF#%^Ma0iBVb)CU>AUZif{$P{Byy;7jZ zjDpA!%Cibyg*HXx=8Zv`R16hkzAmOs`3Ljn5bSq$B`yKwjVBMZz5gV_5T6pA$VK+U zA!mca2;W7^51A}^(<BPz<hCGdXt-hfG}!zhE$A{k`}NPo&%xt>GS52zAzc6b+O>Y? zI5h(R(I>!$h0(rHtWGF|$GfIu!;BnwrMAaI@-Jh`Xefn)NIN%I*oU=k<1Mav)<kH^ zG<==z<E2TO{&%U89Ayo|m4_O9;YLN3v*cr33a>-uN>FJY=-iK@+gQc_b`7){)I|~0 zBJ_1}wa}BIkM3cYU^uF`sEMhDg|&|UA$W+BJd8t3sh<8qxXff%Mqs$J=3(Va83rZO z4c9b2S~Zgz&ld>*g?%0T6Qd&Tzg4i)#|+NyMgD#%DRY*K#Gy(uv)Fph*M(b~u02ob zBQ|ph#>rP0Hib&s#c4qtIfw)mgo=++sbaBO8gmGOd!BP6l_*Uv$=(gB>WC?qYLCTO zo?F5ZI}Eit$DWHHC!d2jfjS)1H>-+ipFwngb{P%Jz=>U)e;jEW8mYy6I{J7hPlR$0 zCv?t973GyMuxnz!4oFH=J6|<4{vbduC`A~IojI4(=z2um!Ct#C?@))nhJ$?&!ow`F z*Q!^M8By{JEfm^Tpm~@_K9HISGM`5zCuIk7z2A-MJ-hN~TF|!a50LUZV7I{!+#hHq z0R$7$j$ixWYXzjh!@`F_V@_|QNmr*ineD!_^>MBE6dc_8PdDQEY8C+4QkNS1KBu8- z6f*e#F|q#fZ2Dq?LDV5h@u19PazwDIuE&I#ca4{$AU3<jcn|5$<u*LMe<V$rqX&`~ zC~;Bs>Eqeh+!E^*KA91YUSI*KQz7@yY>W*Fi5XJ03S4+%gkzU$OlSsMYMJpJ$SDLd z8N?^!yV!JGD!<&lI<7C$RsUt6XeDW98x;9S;3IR@CY$U9e^QdUacy(SBP4O=)K)rT zXff8kr~0D%ylSUMxuKT={cHdm!)C7Jonh6u4lIa&-nTm2hO<G+q5X(#;Os;*X<4m> zK1n6UKe{AbY82Det;r>Wv?rROS&Y-b3y)lpe2)asb_mHx%{$vrwX)?nB-!mPb=Kcu zW=Zz}bM0>3XlEh>zwRT5|8kE`v{7FpS;YRmv!8tCtr<*FSdYy+4WIKKR%PrFGQV5J z{3yGp=wRYSI?RV)6ME?hY`mn$cs?3``*+D5OE4xKRTHxp)i0eN7Sy!=gX2i*>f0Zj zwtvI1G2_p0sI!N!<ayti>>rIlW}p|)RXJiatqC1<3tlKPjqm9i4I00!C9Pq+kXkV% z!T|cuKo2p^>atUaRNHne)J+gjk&Aq@jq}%nqNecH6P;nW*ofPSP%&nF`?bq!P&<L4 z&di`#UOje03`CgrlgCVG^CU6<4>Yv`%2<9zwPsx$r`#HM2QgR>>MKVgtL;?9sKErM z7C?=C+1Fd&+loz)9`!*^ZvkbPE|=Xj5>&%L%FiZ9!oJY2s0A4t;4kox9aIWvol!qk zTS}Ggd|_UOlR|fyUX4>zAQkhKc5s2ln2<Eto8pFfpg)*DCaYc<xSffm2`2%JuB=Z- zXoDLmahCrB{W_!~U;4d`)eU}v^`A0(n(rgQF0Sv#%V{5{{;WhxK_2{9-&*(O>*}e_ zM0`!Z`mherrW2DKUX7QKNDl=4q9Tq<L;I2TU53Pn4MdAhXgta?$dYl@L%-h~s-bKM z`9H$?I1npLAtI>YLZ76(<}=L&G-&?xU$e_UZKx@_*<2d160;hMeOtAv=wTjU5mM9F zQ^k`jDk}aWyiHP2TgUO`?naKQWqjEXt|10ii^tRKJE0MeOgm#48MIGOj9wufqezsR zBdr-m@!&m$($-Vbd$<dkdp^b+-S=jGy-N#{Ko02?An4o0cnLl^`QNfrm_p6-x|#YV z`14rm_f4K4kY8JCC;pEOH52vw*oH?#@oR_2?Wug(RnZ0_0ynP9<LEF*VG=OPHisYu zK*2s_f~zjr3TAYI#rJ2u$_=w{>K8f@B~lhW{JyrgYO{2)i%-Q2V*;)3ET!F@>h>H{ zprJis52BB?1lw#uy>Rd>y}Gt`ib}UJFz3`Q)vE1*I38RQ>*f=#I==0H(C_}H%2&N0 z0hLoKbB1Gakw6jfwtK7&=LlH04AMbE`Fxd55zybY)IpRGN&|E!GyHK^Zn-;<(`5PH zKyZsz5vI9K_peRXT$j2#0l7w2jOBG5s)T~_@*0QA@U<r{i-E7EMve$Km+C%Q8>EwR zOV=$UU>uZ8R^t_7i}jDzj}P70ocd0$s$$?c7XnVu$zf}Qk)BKGn)r^<A3|kuh6;n2 zFW);<D3zJp{a78#_t7Q$Gqw-M^bqqEKQ9dJwi*>F&k{Ww$}S!{+rK35y*F^OWa=0# zO&fH7VV{Du54U+na%-7dYoe)N25g^mvB`<N_8`e263qS(nV5RdAiUaagiBK0<-IDG z;#3QdE040LuWh{*lBr*O^w$4UO_F@PsUMx5`7RFWckV4g58q@z4k4b~&fSA#im|<S z45sIA;flXVH`$5WgXC8dn9DZ7lZqbpM4F6XhQ5Xololni(YunGqhE$k;)z}*`E2F2 zQ2f#_32jcygD)j?5U;}OsjsarlVXV!sV84Rz_Cvi$oKf=i9mySX{c1uXsBJ2=}^$! zZwYG+alj~EG&iX-26LjMm>=qRP@w4B+jJQNCzrHQ?k~_8TX3^|aG!21zzW_MiSo4) zqb*wX6eO=OLeHTD0zhK%120Oeum}!`9(Oxv+QeZ6@`s0wbi1EE&4FfDZ-8Ki#m*6f zHBU2~u+4y3*EAfv3s8VCkD|-5r9|&sG}rjsfkDakk{+mVbYTtT5y!y8Q@Edqj%}C7 z8sMbHl%#`SL(`Aolst<mGI;SC?jdwgvV2<Ho%9bb`R+ZFkd9cV@sJTZhK7S%dNF~d zn+x<CxXLxnG(ZDU!&!FnW_7)g9l!Eh-8}e7Z;7|h_XswvtwPWhD3NjrTN?h#CqMp; zgMPs?6)XbNVRg}t5|1*um_m>j@r#Y;49ro`rN+NDHX4z&doumEmx4qdXy=xwx!2ue z+;H^WeqFPGxp;YOrX_|EE9&jmw1&OG8#bZuU@eX<rSkq243TpJ)d~#*YyOHuLNneR ze*L_-DW95~0#WI8Fn*w+8Vdwd**U4#C!uhcdRAOaqs8DQ;o)ieLf0U8WOk}GF5aCN z=wsK)tE@R}Q~C>0-K+lK3=PdeY%qP1cp+#*un0TQ7j8z%0wEXT@ZN7=XN<q8FE?q% zf($mU{~Ub7yz|*U=1)rsyge`cSrkrRorQLW>++jTa{A1p{^$mq?I=9iYE^d{=<mn< z<YI9v$~x_jd}7^uMr1BzT8B+Wf|cTlc;T441HCT!bi-|xf_|?H?}(^!i%gWDVB{U* zLxOc82)Q;8h0ayVPGEyWytYvj&9^T};LC^1@nVirFy>z#d{Gu^=a~`54<(d0rAjw( zKfZP_R<P*6ic;aoQ2S&tn2j`ih^004ulvvT?}Xe-5FFvdrP#~Jo%pa**@`F~TiwNo ze16+2YyvmBg#f$`Zh6<?w>Gk5N4cw8&?!e;Xr90^T8rf~P$}yn{~1GcDf1BkWOdH> zS**Y1VT(k056BwFm#M!vWJ-H%(nGF>pmxG+s-nU#O|b>19Ag7&l$GA!)Q6P_tud!D z5ht;~&o^@?4NroQ!bX<;d+UgJAN#^l<KTvnQD{`sd2;R$I8U4$;P}d!0E6Z22Ol9o zvLxaFTbe0l$ouL%))bk+MN7YO!LB&UhmsxY6*FX17zVQnI)%qDxP_JWW0`~U96=m} z9J0(XCN?uxjVY51q6&-ip!EJ5`6w_A5zAcNoKJIQ;2jicq2peB4T6fOHIzv<b^;v; zqRnTZ9#)L)jQ4J)+Vzi2RdlbhXNiLwIBY(d%BS$fb84}nG23826vR=>N%j~Fh+wuB zDWq-0T@0oeNb?^l39O0kHdp$_m}UXvy6DQN;m?(r@*jb~S!OPW1L`Y<mesk;8(g%A zF^voznt3iUU1rKvJ(5;{R2@@Mo6J(`GQm8hV2D2n!O<|avq@@7k%M&L!&lDZ=<Ben zKxU_J2M@r(O*m``nxn^&dyo&t029b%eDKke-et^xs|wB}+>e%my^g^JC_=~{j;Qmr z#Hjr`LN@WFP!k{Jy-9?7i`c1o>1KW)%1bV=X{PJ+R2^}5HG&9*fp651^{ynZ7)#hL z?Twg&{lQ6Ex6wnP_qc*td0MSnW(z;~MWl?d5>*Bw#|Z&&A{^AyIdJ4x;EUR_{e093 zLHIt~dW(>D5+vew^2ip*9q&EeQb=7D3E7R2jK7L&;xe;Q$R{<O9sd{QnhQ@@5YJKq z!YefT$jbSJI5@Qm%fgp5mzd(M0FBA9wKmu~_*vAwC@}&-B2U?bd|YD@a<0sU+ZXm+ z5&P4j8SI)Z7C!<^+h)qpFre4H;9&#zthtZ#eSt%i<di|O1E0wxZ<tzlngt?al#egX zYd8|xP-BCulu*PlZhV#rjFP+BhF0^aMAqY?v@S4~?6Po<70Q~R#nWFH5;`VaVyYWM zrh$<nJ?3f0y=C}OIgMSM6IMuTAXxxUNwerNH*Pe10z&OPCG$)3Jx%|t)urqL!=}I` zX8<QM;Rw$eTo&qMs?Y@H{MDj8TV0sF)jUAsdJjKDE;*4Mea(&4uoUOJpM`lbw(ke0 zs?n`C$5-iR@4m<Ib&S(cX=-pbV!}n@a&66+#pZij=trny3YaUbYq>z=JHkD}vgMgY zY^IL+LAs(9cN;3V2Bo<<^(@M7&z*s{u7Csad7~*#LFhvdu?5k>_0mwRN1^D+Blw5} zj%Y>DT0!k!VPHEO*qqj6A|yYu#^izQC#js^&XQ7589ej);5KmX#-43&Cl=70Kzm$_ zo7i(N&~AQ4ZKKr(`M!DmIYmT^|6<W;raN)n>8E|@*tOle+HQ+|XUMJcLa3!v1H3El z<s0OdNK|WDFpwN|;LTpvp`w3r8mzgP;RnhEu=<8fhLZZR0p9&PJm!zy?}Ylu=!T%Q z7Ch8$buuY)a$b>tB_xaJMITYojs+#`?igrKnVEN9soLGC%lo}6CISNd_7_<K98M}! z2s6F=>}sUIPb#~OXKpRR_JQ~!EuO!Fhtul-JVv^5u^qE{d&SC$E~RQN4G~g=83wuh zcm9M6??7_i%yk}>zI$`JjnSoR5_T&4i_wANd4Of0;RxHMk?V!qglIt$-l~}POb-)F zb>VG0j^Rh4%#bY6*~zw2z=o!Z8Hii_sA*zfiY-sKy10^Lc^A~#aJ3~hNjY%x3Vl|a z2HMf7e#dU=)Z&>94x{J|;QXqgiMdfEv0MQv-pp=ny`G$#AM*R9tLmGAjcxm@5)!?5 zS9(S4hn@psX;C2Eof1a;G0IeA<mT(_iRR<X!+!U4$=YANTC!I4zWTsvW9V4%EqfV0 zj_X=!Rl5(ZRZl#=?Cq;g<Pt)dp#D<_1KnA$$2uK+P7XB;R}8e5F_z(2U}P%?k&Y@Y zAAV;=6A@^W^krX~`;Zs+d2$8|V5vFkt}b<N8q#K~Iw+7zY+BX7FTR!f_i^DC@6V>; z#>bKKrHLz5+<cQxL$G;fz`uPR;VYZvP8?k069(HI#&kal`c$jl?}nkk^HbbBVi{ZF za+F$_^~W{>-wOyDN}~nz?BV96FHwhT`73dLXW&I>>TC(fpq-B6UID!0dGHqx3Jgst zy^x8%7=^C4wag{{klCOWVvCM`fo!(LH7F-kb?sDO-Qjt&vL$ZYkIpzKtciCCOA4C% z#qT$UV?XYY$`jk9N%UJbON$|I<SS)#J2QU)KIel(V29I;W-S8mu$Tki)zE#2Wzu!2 zpbh$K0e7u%AX{xzi5#>kcu!+SGt)KxV47vIIqMRnfSJ6_$V97H@hF8ZR%X}1UH*`O zTZoFjRje=Fi-0w}5v8*ygnw^zZw@ls!OKm4Q8;aOVA|~08Bok<UwUZZ-Tg&bR5##a z4G&XQG(*!hFKrb;;rq(t*Ei~t+`ly_5?wKTSu=crK?2?hrHF>mxO(D_D@XgIAltt% zl(=e_$W1{OLiFmxo++nrtP94xvVGu%S-B#jVgzok)GE;;X612Pg@XZJQJL=vC$lNJ z9NWf7z#rLq{OAmE>+f@k|L(>nF@K-OenzQYx~V%pY`vL6t*OMr-Uz@@erk@4$VO-$ zE{#ygF?^eTKcT1`lAxue!v&>7@#t-|20FZ3%GS^g^{^90`4f)=I#Y&v$5nKO=eth6 zs0}ST-P`Id9LW(}raxc0ile%qQXby%Ngq&6HrWN@vYFE7cG(crU(R;5D^=DnUmDVQ z`B8UrW)Bi;vnt*asa+zV%awwLnxiVWS|9N_bzjvcKs)1%B3Z?mWV;2sV~&8E6{+)> zI&p~zTGLZ}3`)>r_!fU>WO~FkV1Quc#&D1;J{%*F0i73M!`{-W$JB@kNmF0RCT?ki zufXu~yve&dZh;9ksoN<pLsDajbbGw?b9<4RafKO3MP*I{+|g6Zj-2EjujZe`$<ZsM zLhUtoE@TRdc8(P_e`o%nd;=r#%604$Z=P|b()e>hfZRi*?NGs2F~^^PmXyrwz}3+7 zmkr}nl6V6c_9^SkJ<AQ|0t%`re4<dkYkn>JiQH$vUs?_|brTzG#K<kQBIXFM+V?*7 zu$AZm7k76W*~xdzOV_G|^V`dyj}SjN_1;wjbAU*46Jrq6nP9{W19o*5pQ3D&0^Ra# zi`C#a{;Z?|Yb@~A$AQ7{OLA)QWg~V%qS!|shs|5BD-4P&q~Z4pDCla5IqP^{FTC-L zjotRybEA!SSed%JlW;nELj%`oT5DSt*gXWSEU~z^9vm9GqbVBZOZt+UQuJn?H|QdR zvBtlrW2hF2xtI3E9tdAno@oAQq(V9&XI`chB<s#qDoG2;W9O1}JjF2a7v~%zd7my_ zk$=O2K*o8qe0vTGSJcYG7M)wna-P9L)*J+KA-2JTpoz2J*J@JtbzGfbA2lDuKIPpT zK<7{mVoYm$j7D}MaawK52fhO8QipX~;rV!+mC7viDE*mbU5eaC2*^KS5cHf!>!~6h z;b&=38Ct-y<3jkoUpcG%gsDVQAZ$V|Nd{@&qR?|%o5ENn61d$82-=KHDGR-hx|_ez zGN_ozo83QzMELVPwr-Spp|YHbs-DnDtO-62=i%l7o$;*E{dHrse9x8Wfa>PAg0K`n zhXvUo3Q69RhZ$kTUk#qF8;q8xn+h1By$wqH4Pp-gL>96S5*8p4O`in5`bs^ZqG;q; zKBJX`?)Osz*}2}D-mhP4Je8*t@rQpBd?5LQ>P*{*LI!M85B#AGDIlJ$F^1j-Z|l>y zC+)E&7V#d(*4s*LrGt~<xC$GAAF?0Co;m>XKvC=_in<pa7o6R*{S&qsncpVN!FMo| zE>0JUXa7>^bF9I}Yc_!c{}oDz{j7Z20jx0%yOu`|VOtkaNFCXc;D3RAwEp;a<1a%N zpV%x3wa3_hY!pOt6Z78(4mI_e8=`fm>+BLk%~vGFXw&M%MM1XR8ZN5Fv!`L_C9=L6 zkF}>X3;l`9u+AJl&aet9WD)UEvNb&!$)Y`t7QlUP>G814tog-9d6#)Q$sGZoFJ9=Y z+p={2ypRQ~X97HJlxKLfw*3v0bQfpioEs3U?~ox$U?|T5O4{v1N~l_k{|b~-(lkR{ z1qdsIE}6REQt#pfU){tF^Uu%~lyo~eiTH=x1%{sF&wP{&<N4?1izZ^W&&sICIDqV{ zKjMG#X5AecB~q}{+Iq#Q>Lw8ez5D2VWd}+rjm>|&#i59PTgPBxt5?UA+=dkdZ9vWh z-v{I-sF`iR<Y-u?30?mC+j3moA}aT;tw?H8@D3c`PN8g}p5?00Yq~`Sf@49LqV(7U zuCi`Xua&@5KKB{x@pgOVSsxU|-kH^ehnjf9s)^#e9mgsmF<sau6vUi<dm%t)+niW_ z%Da2~yDwDiV9V$0B1#$YHvk0fA!X9n*`}=rIomcSQB~KuiVqV%e>7EedjB5vj&RMo zA%CQ1a1~^P6`KM7IUaLb)eM90L8!H;u_^e(y9V8?$3G9w8)jaQ-gSV>mTB-7eA}9o z_9bJ@wv5l}NKA5S;(F_p&jYtd$3DG^nXMsxidJf`Hg@(@geerVsa|4VhgUp919)P6 znRe_4<6<xV&I#rUCWMtU<w#H&l8pL?AxS@7+*@wdk5@j;4%z2@c<{vpTxtLA&d3x` z06Df1ATV+}JyundgCiw2II{ByV=wG?kCSW3Ne<uVtg|WMB7??y0rhB9R*uH4_6)MO za>(f=4i3#yAcO75``J$w;*nmq4nvT|c_87ze!SyF`J=k*51WZ<B`Kx*FW+|Ro&)Kb zVhCsUvF@trpB^(k$bgdq>(Fy)+cd5%<7x?FTs&7pz)J}qXplWj+a^*iG2{{uRd9UF z{C?N@KBlRCAuG9nT4hPJn`mmE{2Dv<fn^7*N3N*WkZ=T)2Z!6qEetmsDyaJ*6vOmo zHl$vM6=(@MLsc?X5dv<0eXbs9)u}J$3MM<sx$HOey{4jm67Qg83IYF_I|QgoAqyO6 zf@6(wFt>B*kZ#WvfP3Rd?az~YsWXU~iEq2(5wg1?T@*i%Ym##k2sg(9*7_h_q)yf6 zC$L>PUU9{fi`od=p~)i8{T?Z&IQs8)2-f`jw};aG1_qW}Qi-+=64RwD-c{cH`})~i zEhe?@L}k{;yF&s|b4<2^cZ^!yQvDgh>;RSqM(Dq`S!t5};uq;S-M?ki7(A8w!6?Se za|B-VwHAns7^-a|UEMb~kn{|BM4(?^R-eW;SFx!{{_IoYketip5<n~nSseCjT8;BJ z>Pa*bCqi$g?IAVIrk0@_c!I@<$Xt25;*)DZJj^Zk!=n-#&xY&&`Z{Zuf)o^{0W6j| zYFqb+iV2k_B9zes)N&T!QV+|2wE!(a6x4bUr9kH(8ac*;vTdcWv}s-CTpH=F^%3xw zei&f-AzP<MY2aqQu=ZIr4A8O5V%x&}M3GyVX3h1EO6YvYNDPH6@{K@NETlz>z+Vag zG1aGG79i<_V=VVm)q}w=Sfa={3pz0F=b)*H8zxIqW6l0XLXD{ANmRZA0jlmnQ`w$^ zT7$S^!zIo+>Bbj0?j;5!4{o|K`mVM!DN)`uS^>%24MyLVy6aHOeJSF1gYM5`?CTXc zO!hY)P@v1jxccO;<|y{WBGi;?=4H^dO?^x9GA>jCgX1V*EMG0JKm8NHoptIp83YC9 zP!U+hO#qJ)N8hFVf_K7voVF%2yifKwUqhzTtA+`Z>fi{x($2Y?THZjEZ(pfl^EHr7 zfpS$PD(m`T0an5_Oy&;ot9#>u%KU1diY_Km^fxg+2%dsF98f+-iVqjMAJnw$5zV*X zk?+9p){T?4)6Om!Aa>|g0T>k&y#u6#`(~{gcbW8Zbz?YK9bzqjB~pd-+|<8WmP<lm z=}eFFu-Q!-THR1K3}W`OUFXlU<B?-YlxzjAo>P^SL%xBk^P>>f?+^>4k_X8<EIO+N zwh4cnnjCys+CjaW7mlX=?YbdYxP3gfNxBH9PQapqAGiS|HVb-maf_djX!E(Z<#e!% zvu{9eEQ|dhb9@E*C<lV<zqQdH7UGYk2hYEq5a^r;W!g38^wyj&!)%DTKq`+9+>F7s zohrZyK&Mdda$_?Kcj@hdI>a~+HlTgXx1lE`v>7aDaJa<CnkOk$k$HL~tQSjre?CNO z)<YF7{*|+YQ}t3d!QH5Di@e=NQq84|H_4otd*&)z#3KN@VUXmuxmE9_dk8uta$#bv z?j^j-)KSB4SnOXbiEVNHGtj<Lk@^;bS4Xcbl|^U0*sbT|;<Z@k9NqNwhQrRvF_41~ znn!zL|7#{UU82p>R24+nlfp(`9||H50B#w~-wzS0A%EosoYKLy;no%UFmou-H&3)m z9Y_x0H_#h5^<EQkl*Ag|4-gFK)vT_Y`Ni!br(SBtRoSkxOJ0e%gwmZ_Kj;qAPpvg# zhyF-^Q$utEUojg+jfx+nKb(T*^XzzRNvAjd&hrn4-;7&S7jlCOe_ml2IpIJ(`>V}M z=@!g8ZcmuWDbl)i+@Ul5{84hFh9;e804jH(4@*hS$>J-QR=)5TbK62TW$g%lRW3K^ z@-pnNH9Km(M`{R8RxyhIiF?ATlUm}7Mmy5a`iTu%C@nRsGok<++PDWPV!=ESUb!xn zauY{d4j&sDg>@zpx*Dy`SYYbfyLfZF|92=$lnrm`vQ02|-QBABNB2`5550T@k>kI; zH_FmM@JSO-y-Hr~0w^C%NEY?OuwPRgL*$~}@oI&nW(76NS;N=zpW3K4$VOq<`*m|D z-nFV4-;r!CCesfXn-LXlc3a@E5+6ydlPS1H-brKrk3m>TC^hMGQqm#;)<DJKC+VVw z^z!_+bTCNR>LR~TGGjNF58tz3b6_on;6vlTJtd>?G7vtN_hSjZN{)S<e`$bECi2Jr z8tjZ-#;@U}Ie#~ZHtAw{8#nrxk^f*Y{epeY4a$U?Iy;n3TzT{EqT5+q)C|!)ye8A_ zke3`Qpu17yXW{w7n3=LPmSYalui}Q}*|c$ni+mg*U8x;(k<fYMX@2rTNj4136jMgb z&EwzI>1o?7g_-1f|GC{oF0lL^np0rn$MjN}vZkp#T+mP6_Z$+M|FZ@afHX|4`Fn!M zPHod#NO2k88Ob^L=Z<T4HP{t|ec~zC5N+OV<l=JtZ@Dy2(tJZ4m3)#Q&=T++*unLk zWv8K*Vio>JUpwzCrSO)cc=4w~QS8aU^B9p-?atZr>rQTNpvK<U)Ed(0aF=!GPr)$* zy8n*~{x1#DDBD<MbE}%;#d;5MhYblkRcN^md~9Y~NcHgwElN1){vkyTZ0&E<oXqS& zCc$bp%cIv^R}mL)_|x(N_tXPe<w8C6Z-;#rNPToac|akExxP2YIAm-vZ74q*HE*Ya zy>15|`&%#*A2BJ<zd$ZM`KG!!^umT~cfrJ`0XO%TF9Ko5ny8~;WrigD0uni&;8Wlb zH~+EqJCkk!`4WTFZrlP=0(+bauUK_hv0zKT>Yge0EfTahPq<UDv}3SBvC=y)soa48 zutm&^A+|36SXE~CeKgGRp5d}Yyq$!`3kj~8gjlQN3wo$4laQcydpdh%bCSakGxCRW zb)QwuvGJE`dejx&EG_Kw**gTmrQ^G>grt5mV}Z>|Vh$Um#-;f1_a<1IVwzImI`&A{ z&*D0o0zS;g;dDx)TBElFq7B|6@?#bvvOP{PpPD^BgdPRul?YB@v~BGRL-1)2R_hNl zCW6D}1)DAiUp-O$Bb4aDL-f}|c3R2ye6Ym7`Xk`?I2Y~eXa+G;C=b&%6D-_j+JnaU zfGwN_bHV`AvGVCaYx`8Y^MmqQy)l>I?zTLUQJ}&Fj+B!MUDZd#6mF@BlFzeuytKU; zaR4S`kSRIqX%i_aBL1CcP-%)1s<4@pifQ;>LMj81;Z7AHwi@n{1BJAb!^bw?0Kb1M zooI{C=V4JdJmmNRx-Tjoq3<eS`jg}<gT@4%B*#WG?aut+W0-~3x>2fUxu}W-r+n7y zC5Q-XK6EmWKrMwefS2B@+pSq=xQ!nD-&@w}%}UkMv9iul-g0$|`x~1q0m`+)BDXvg zLAJzHIL6FqE<-Gmi^?Cv$xh^MfF=Y|3-noW8PXCxa4zJv^P=6mh5@(&RmVVCSf}N2 z_mpS^I+w7tjs=I`*fecAyDKMjiYMAh%uo{e_~FM?X<E&I&|rp1H$#)#sdWI_wj@&d zuu3<r)(=5>-J!5NPDn7v_Soud2>idS_-;Gr<ZS6sE%%s=51rP(8o{D?KBENIV3!#L zXqlPZlx6kOo$2m-j*L}Sk-9244HrZ0k(^!zlte?{bjGv#Y>dM;gL}zWW@DElWkjaU z(EX9^ZFK^gFlz5IS_2l+;Djm>1FtYLZ`Jw?;D!}oKon@55u!Ou;Qbxa0faim@Ct<_ z0p1lBqsHHjG*Z;SU5t>gd|w8k6$U2ai{~OV7?9c!I!PS1Q`rKBI}(S{QZV>Mibr_k zO(CSjCpCZ|We_lmS(HI8m^3^ny7CI8=K<^Xln#cYqNjRZC-#@odOZ7I+jyxovgP14 zCR*juTQWlzgQ*DJ7ZMqMwMagL2jyj@qZ)5(Btx#dMuq9=w}BnGzVm&4VW+x{1Svm6 z&omi{_?reeER*KXqNYr~LR%K|Y<}uK2OL6fXvkODWG<$Gthcif>KX5q-}|v4Evh3D zI*8{&T4AcvFVgwV$A1QYa_<wFzpsOi>i(E4%s$d4++Ql;Gu@FVby@>lsPY?EgQzS; zd|mT!@W6>uXz#4PuwkX`9~_u8DI7}5+|t7xi`iPSuLE%#Iwzar<txlmFM8yk73`JP z;@OoqZ`iwEs$!${&o}{B4AFTAI1Dpm7z?z2F?+9c0PTtQ@dClCKl-h7HK65PbWM|u z9_1N~)xDRA)n}yR!h7hwJ#dU!^;o$s*~`4tT1KLM3Ox}Fyw)K%#OmK^j|z@W6YUE$ z%@fF%4SPD=wNN_&#AQ!_*^vB_#D7{ULhz&qtH2EGND&Z?q4#pQeN$Y~Qxn`g?;@t? z^K|6@jp<%`^+B15t*PjH8VQDNv*)mcYf>yiz}E|;H?ILlUfaVu58?-%)CsOTN6%h^ zo%U%@GIY*|?Cm?%OLO<qPG49Op>SHkv3YclM!8<r9gFqENl)R7N(k{&slruwzErp= z0;sCuQjq*=NuIte?IJ%|V|F`wD{vCcg~Y7c1RujETgo30o@E(zC!crP5zzHvzXfNj z9bi}yjC9U$X`M@}%6D;uOzE^UKF)j-sYRlsD_b`kGI$kz>TT~}LS#d@;AhC2de@+0 z&aC-dy|ym(9e{YjI#dVqGS34NWs`Hp0HaIeIjurvJydI;hY+#-40?vgnc9`LvtrVC zNEzm;8ylEKB~R4OYDUvQf^`&CRs3uZ1s{O>^;yKeoEt;uSUsO@__VEbDF&_eP_-F~ zoMg(=TBz`lXp_CARc4Wwayi=5LYq2^^zS&)Ur}R#!Gr@piH$4Q**v+!Q}sr54p=@r zA5+3!Eb$?oYE2&=3XE92aqpQJc<xb?gX6wWGWk;$p~VF?UTIHX$MJ)DZgcV?{ca7z zVP5(d@n0`@#^Z7g=gpm6u1BH4kgw=ENBex;h7-yu8yOOF=UWU1&}Ab;qoKqhDqn4i zlE2_$GjQk}+`C!sZC-wRAIw~u)ykjGy809$9_tTJMW&HzeTRV|uM~7K&Yf>FzQkXO zp>ZWj=~QIjQBb+DltE`B&v*k2#mu%U_dca`#+YhnQMs1iP0i<Xv)Mk*W@VCMTF*Vh zRnn}M-K10HoC8?Y@e4yj>jsH_n1=a7&hO_FeiY78kdC-G&~j^Yv%LMnOtjP#&BoY~ zJOMr5&D9yb2TS4JrO`(id4!mNrG9<<1|@*SjQ?wl?+@e>szw|~@zq_QUx4w?zhtHD z;*MMDA}f#ts<b9B&pgJ@t&tJWr_jK^bD8ZlG<a#tsSN~s52O32O|M{1it~GURKVO} zS-47z=Cqk$6IZlQm<i}I)S?O8XVkM489Tv%v-U<2u;adPa2=bsABcHPT+~ATJe8Nu zfhHMRoq3{DkR@tDPFJ~cGA~8?vIM95G<&k1jPbl>QW;Ye*uSKR4FO%%?qaoxBqzIx z+1a1j@cWFjQnRgSfjAgQT)3(^7ER~DGk~!{`d~*emHE6{IR=gmg<TEqrg44<RL`F; zVT_X<#LFe1rwObvM!m{-BJ)(qWVAx@m-jBf7qp^Waj>@uQ2*G6_S8+x3tva4&1#F3 z^C}fq)u;1BHxdz-9LpkkA}bj1Q5Djp{VxuyM-$l?O@FHG!!~7;Fx9efHx-NnlfZIz zbk0;a(6Bs1ZmxPednbhBD^OS)e1-jmcLBSL)n!ENzx<pj+S>}CB;5X%?;flfh+BsC zC4^THML0vC-8G8|GLom4ZZgvAzBlk!W40+s+`VklyG64_10@>?;-9!~3zkKO5!Gp0 z(XHsjfFz1pysZIaJF6`UIQ_Btn@X2VD8O8ky78pNkLWjiR)-k{9Us1<96H0FM(LQs zb@HWhQm8B$9@0ZI;<<jekD@@wZkFJD?TU5D&(TEF!3|8}kU%6Cs@^{akfO$+%&CEO zG%SLe#1W;ZIiqAyNRAGrCSUX5weahtOK|OpWe!VU<z)nsZLWCHvZ}IzlYW9*$G7k3 zgYRcd>~&crcDhGZJ;{$|W*$|8E#!YV-s2|y35rmd9k0(=qR7-jvxF)%CS}gtf#hb> z{1TtD1B|F-XO|Ieh?rtR)S758S?#yqtwBc0ar{XsbX${aW8(Td?-qZXw`R07$?OJ# z?#Doa<6-$WrobJz4Bf2oR~|pMC5c|=h=sMravkhF%DXvyw537|bVNS%*lF9}bW;9; zEc3n@vb24U$MKCUh{&b6csUB2HqcQk{K;i^c7)L7g5$#sB6sj}bOEdYq&okQbetKy zi`AJ)D0%DL+*WrORrVLi|D6rFTaf2y#?xTMMaS#V9ovwOAD#TQ0|IXt&+jII(E1vR zC4?Whc*1h25kUHQy!bFG-5rhss^Qfbtr$}tHcc&Qa(ykXG?~ko4dCeUKHLpj8JDK@ z{N}wsfSC@(<`_rhC+w;rgoq%KvYazDtg*MI96)X9eYDN%Mw1b$sX1in=Q(lu8=m<m zwbj+UyNVsuIcCOi<}>~HKm&fMyx<Q@!Yt&*E@MZE8t0R5g6B_8EXK=YQ_533L)8Hy z-b_ooDooerFf~ETkjuY<VAbvEqOS}b@lmES{{`*SWU<*J5%izDWRUda3Nm6X?G+1h z*#{U*#cWcS_J!^)c@{wy*kmo>sA|XC&BwVm!%8=h!pV+A1U0**ssbyo_=qzrU|`Om z>jGUH$J7m-ajgf>x%8Z_rrS2xmBpX^sgylW84HY@?(TTfvS&QQie9ri9MxMY5cQhU zouK>?T>rwZw^DKeitDsb{V=y@zDbl#JrOgKU6rAEfv6x|^*AMr&(@Rk;S~PwQY1pW zKj8kCLOz3WT4VEfM19;lOovQjWi`b+09O;Jd8QU#C{44JVvu7kz&jR_meopwz<fLU zgrR^J24{IiQad6W(<=PAuTYNUV7YYXs3IHt-aE~;tI}HulhD`aTQcqe50ik?Y1?<e z0Vedk5xLLIeyvgS-#D6tU(Zw^Mt%n@Q^wcnGriWVN4`AHn;aX@1BMld8AO*-ze^^a zul35Gt_}hb`&Naioqm5mB%t-x9>MBv1rUGbT|LwXX1n>V4jgsY#~DiMv}gzLc^4SS z1ZX^W1Qa^`4sdOCGrgt<!y%;Qu|8J_qwa=FqKyec22-B~gX!-w$2t+-x<?i4ZZt)d z++;UZ#kFOLfd^=)?{2FAIW}iMoiD=|ZcZP1jGcCrGpyAX`hOrZ5XoYtGJ0lqDE*#j z90Zs1Xy4E|E?fY(=QOk06xnuVl|LW#xE8K-(M=cmahIU5g92fI7uqjzB!JN6X#v7_ zMJ73O?LH<D52GwyRap0GfD3)DYbg?7GK8}Otl$KPrX~&rKw<nywk1&HyK8wpqXU;l zd1gMwFW>E)h@SvXolTkE<ZQfxX*1-W6Q|UCYdfhlrt#LN!E1kXY#5$n^`Ht{cZ1ra zSzF{Cpz7`h0iRB@aUCkK_aI4VOgj>?$-XbXqRJ8^lEBb&!oVM$KXnOy%N;K76k&6T z4PDF5#%e0US6}B?2|B!|0#Yw(^_EkKu?VGEJck{+=4q?AYU^#ncsDuDF_R!RbXh9x zj@)Tr)2DKAurwE8CwLTTnvgP;a@l?6=%RdrfVQRjnzGVm>q2L@k?fjhx+}@0@g&9J zCE!!eY3wmqv^n35fNezWR<SFTQy<hF(f^X~nlZ{7^ct+PKYP!98Ckxd`a4&6NY}j* zHl>|1BacUnuGYhtf|FYkxjT0SMP*V_FUO*@Eqdjh$vR<z?QpNhsCfc3QW2Eh9d*nC zE37`rCB@-l-F5q#99QZPaGXz_TSJP+v^chw01PuksUO(669^t&&%*u-lT*dsoPFeq zHzCeBDAvzY>Dkcp$OJC&>87H5&BD8AxCWsH&!NW!tY9r+Wegk+F|sB*DbaBR9o$8+ zGoU2)Co(GfxbF^LCA6jmgI!6dW{%sa9el~H*RnJ7AbFay3eu)c8~fE~Aj|?l>-X;F zal4HM<itSX1cI2$zvl8X^~$^fv{@r#L8wAKv32m$JiiHcWH79f*60^YsF1azxkft7 zbun7!o#0Zf9hs5nLF4E@SYGteblF&-Vm9e7e>?ageYqB6A;()qlg~^ghnuZ+19I+p zib4wiZ_=TqmJf07k~)p5mNK1&a5j2|_bpIp5I6(OQaNtMabUQ8_1Y+6@As*$z5A(! zm>YJ}bXEm@j94x`fC!CE2iLW+-Vwq60rHMg=y!2Y{mE8Ak!lLJpv9Ksw&IL&HB7-T zalDy2xjGXCk3hb3YKbuX>8kKNo_DF1RdxL3O0u>y55rJ8C0kA}k=*xDm^uDKL5K{< z8nOasaBdCUx(JLI$;Cp~mfqu4tb^bv-ZXjm*v_nQ&;IYYMI5~+o}@z!kf)GJ3!8kI zi5|vZG)XLiwchVXERCh%9=T-KJ@Z<a!BRZTr}{fh@_nHQFMa8)Q+UI^SUu{PG6{4q zwun1VH@}hG_~R<E8Kn2Z?9J4HKVyK{-h|$Vc*`moa-;Nu-LplC77<OI9T!<f5pGC> zDMTvr-F0jgRo?&_V8l3|cMMGWPOR_;6Kl&KdBM9*5_|}A>tqhNzx)l)qq~}IqA@6h z0&I?qJh51B>KsZJ9$Itw3-!zlWrCVCX@6!PoaTLbxziX^D$GUz4FVz#H+F~JQy+<J zd6Xg!>>V#gr8|IECeryLwvjVb7)EN|l?*O^<Wv3Ohw<&aDUY?<^5a!mD44nq74T!E zrcYA$TnjB`VNTPM(ldFna^U_MkK4r(c^7|i6>s;xaq+T{?Kf54L`~H~4bGH-SD}<j zYfbvo!>|()*TcW^RQxFhpb(ei>-s+R(-Md|VdiK|y9~g>u0#@DD_ZKf=AVQc1;wv6 z#a;8-aFEM%f+)sM3C4Yeg3Vryt+aG0_+>%>M`S$pHq(7=UC%JR`dgUsEe-sk$EteD zbEwcuwez=!U!$ajEg`-*X3Y6Wz2?s=Ob<^0cf{p1zB<C=Q*LGDR}J}YHtKT?({|Bi z;7=p*65Y0&KJ7=`jy~!}=9xBFj?{TqpK83d1~?NAE7=2}c77tDql+u?JajKH^Y**; z%|bK>6|Z7Y0mrW{jR?!Q!PECT42QtbXL~$$&@uxWJ-z{Mfj?qo4rmgR8-#>=_0xhD zt8N+eK>!zc!#$A90T?&4C~ESgctIcLB=P=kzKE!m%*2vc0JX@jFR5?qdhl_D{E-iu z4^e_W5+zL^m!O49jp0>iA`eyxtme6h`$2<|Xv|s1kNI!30J&)h(3*$$N})~ql`PE) zzjof-ZKm!IqdnP(vP@C!mxO>2q;jN0G@b`)3=o_x5O&rVSDNE8pTC}K>aVFUS9!_K zPX~9VGY8Qpz9;Sy>!c2(jJue>Ax*%4ui{`rKgHbn!e>GXM+AffjH4(M(WH?cF)mKQ zquJ6iU-UF`aTr)Hgu|bSLhv|JzN;kvFu`37N-UL7tn{(iywLDTZu^7)cyh$0heHO5 zF(lA2Wz?fpLA`{5#IpC$bLkfgpmmXf)R|YszH}+_0WJxhQgD{U*jDm%NoQF>?P(&m zrLd}829*7kWdd$2Y+@Og6>`CzH^&ixs>G!(b~Fi&A&N|@+w^(2@92>@hRSeS2g9Zy zk@HpG;5kOEjE`p%TIi#k^&Q%k8hxmoY>&9juFn1(MN&fT94|LUiud!-#|rWS$6zUz z_?0e>Mv*k2Tq2vWQk7^Bn?Bw7(fG*1$};i7;xKwRvd881F&4erUP^o(XnB1BA5lkX zZ|XgHI7<1yIcp;m;d<8m?qj2)csS_e0gg@LVwBOdm-7!)3BvK49iKLM4;Ixh>Lv26 z{FeDbqpSzsLz~q6Fk#=&mlpV=lz)Eui7-9wdE}5uU==2zMtzuAi9vMvADr{Xlg@mw zNxH|J@O}=W3@C&}_6pULvzX?<^h-1cMyIDGed?3IZU|OVsZO*-lpqe<^WQPsSqY># zhyE4vHc(%mby3iEpy+_r9RKqhgGW5r?_=i*@`~mzRI_=GuLs;svB)L{yy!kVxMivG zCvGoX4>iXY!FJJ)5b1@JdEYM99BZ4M%6V&E<iA-1p8J|+94Zp>J-DvbXbAOBlS(B| z!C0ZqE)hHw(@1&!ZJA+awy&HKOv1lseEh+%j|Ri_?SQL>oW7V+LEPSeMj+Kb9N_d_ zDtw1-a%_K3ifYr#Sq<FMxuNfbVDwKtyenl}c=`l>M$H@B&5zLUGZQC|#khbWm{t_5 z_6PAXA*C~=Zh>2`1?h@7I4byn={eJQVH2_|baNcWN1z$?B<FnX#HFjM0sd9}vn;Z~ z$pMdE<zIRgWmMjo8E?J_FOxz^_bh0>`++r<+5=LU56%FvG%4P+R`NJ1VlrGEHvfOZ zk_cqKk+W%!aiGw*sU6nusb(X8=;y|CRn!3-8$T4l2&)1I8@h0CN6`yrlS|YS)A<=6 z!w6vSg4>{n15z=Ilb$hQp*_wmY23IOG=gW;<iRHqdQCUQSPI-rXN`V!(5A9uW~!T4 z$NUwy7#x<=ZYu1wXU|Bd$zg=9@{;}9<Pp~#52#f3YcR>llVudqX({=aX_f-!BbSJr z`V1CKDeA0RHp0|jr`SqiqHFEbchsi@Zd?foMoq{W!efx6^HK;sI^iP)|6EqsHx~X6 z05w3$za`7!MzH9YXcGiv0$H25AL0qIejL5g!9IWW=ysJ0)w+=)3mH1Uru~GC=e3UD zP4W8hljQEnfy?wHb9u0pnRphg64kPpzmOV_y-Yq1tF@&N@sWDc7fRr;5G6DrCj+Xw zCS3{(Dxz`#AX9t<S_I(vH=h!>U$kF4QWc1)9-LJr6H!Y)6az=5TB!vJ$jz2rKh>Kh ztPjc7JR9ysr3px*bK(k?e|d^Hs@dz`T@7{zJf&oezLoFOrRFRq)1#=;)Cm90onODC z^RCd%>gR`e9sZ0+@vuJP8cH`4tC*G~CHqGcDDLK^g@iC;?vfGngnamDY9<und1}#W z@)}DzIncbpG<dI=F5qp<U2BXR{@lz}*ycTcAJW>m4=wlx1#PNRWM43n)$~{l4p9ia z%koy(%Zc7itNTH_)IRTXl%pU4@1zQ6WI@cxa!OMlfLeouds4^}sfZAhZAG;ZH^d?C z*-v7INy{5sHCI0@@(}zzOXj~b8;f))^roxeY~2LbZ&bX2%jc%{{Y-noZH?O(Wi9uX zpfdD1tD^Lg>_NA9O*+36DLKQ)<CK_4vB|k*6#L1Vyn(MLQLPFl^3Hb>;K9b8-B0}W zugeYeQo&%=j~q_OasNd?Kf^V7Hl%3wEcG5(;aS;6z!ojOa{~`yoK>c*xOTDB^W3hd z+1?hY=m{N&g9bK^Au)RD`fGo=3hoP}%=sC-e!PfowWL`DCq709K<8R`-0ZoxsXlBU z%{fvJIy4-Hg?51dn@K(J&v8_1TJsDZwXxCItaNn>JQcehy$aWtPwOT;88I?HkM4aT z=F1@Abn<C+Qz-Dx@2Q+6)B(}F9LB0#TiV=}n9~sN)i4k|E|4~wthd$OFhsX`IlZjB zdB|+dJ0UZrMj`GABe}#w?qrIYy6Hz#p0UKf6&E(Uigz5p(9R4RTLt%O0RGz-nVk%9 z4O8GzVuEdqTXUd2GAIT{;uQ_F#-MfM?BJ%AUfD2&(jD>+1R#l<^r)Wf;x}rNQ^i~F zQAs|gBY83m`}Xm~2!i6xPs_7*NXU@mcR~{F37TEgrnnCVojHcLQ%!VrHS0`|#8ygI z;_U>t^?KvY>!-G@Irr?RIE5cqqgm}RgGd38siXO^P!c2u+T;-_A5NRtmhfTe!H|z4 z5;|LrW*?khY{#3l!6HQWDcIZ5TMA5wIIvkez%+I}tU^4ExgC0%X)?fCW|d0y5X{9{ zNC#d@0ZO?K%I^~q9jTIkVi=*a;qK*))oz1k3kcUdUXcaF)STk#-M(Z!+^42gt0|;2 z1WwDarNRaeG;T&mP6UY<+vX7(orC#xDy>Z~f2Ju*R~J_wA2{}?QtN5Su}>9=L-V*A z<A~l@atImk;J_(ga2~KG81Ktj$Hka4?(U(a#!aCW@tOtmF*~6yJ|87aQ&_t)gP9y> ze}`ys4N$OdGe|K?tl*7b<%Muh>#_dIh8)%v9DxT>@{U8*WbxR5FQ@z<8`0~z%Pn^3 zGL*&6gD=9(6YHJTw@;tyq@B1UxQ_3%YFs-a4**Q-pZ{<OhUb({lmLR6qIsnU{oFqx ztG5i=RD_wy&%0WscC}+`243HA!eBz;TxAVqq{>vrBDBbjWxBTN)%_zNE`kLj1F&G| ze?@oFbT<I$p`)$-B>GXXw89pSGRgYL7R{ywjI{Iq1!#Prj|`!zvK=chS^!DuBe>_Q z{@UBvf8t}6JB8OZ@)~A&a0d^Y9W8MpRTo)6`Ffx%f?3I{uuQ&(h}!o|BCBORUQ5K) zzDsx{=MxV;M(ewYqAqx9|H`@1y=Lx~|EGkiXWI0TVs2j-&B4$9EHDN1{J8JvULFV< zrgrvPc@;efzLb~kHI-p$PLA4{hLTE{+Yvi1&tQujQF4EO8B|ulBE5Y?YL+$Q!RX$u zS-C-=uzzE;;CS2!uj?=fb4>mzC??UhJ)g3zEAj5Xt?#{N<G2J&TzY;RoI?MnHGMRT z30$aEqpn{O6zk$=GoH;%16pXK6#N9y6A7cow+PqAf<<Q5DY!#)W#e^!Ka|OeQsT`6 zg4m+7JS(5U?&*Pve#29EoII9EYIpvG;WBN4e)KE(mvP>Df14fR-t`knOWw<e|BR5z zW(WljjpXRxZdL2&mNJaiP<nm1!bZ}Yz4A(&k|5;?Yp|%kB4qht_qk3d+?Q8H2tX{M zUkFMSvbT;TiOYNYJYD}ho)}{O<2ud;!>K-O4s^{R$N7*9Rg;CJF#!-jPuZKPjx4SG za!Aiu<!hEVw~4TXCW?e!+(vK%KWs#|IeycvpBhP}wvez+av{q6H?LYrY>pc?C5xYn z=R=WO$_}T;U6;Wjt=d4JU3_DX@qJl|cSnH!Y4-*@!U`gS^i`i^JRmkJGtcNjlSJJb zrlLV~2HhWMvcAz7F|CntQ*ns8_Rwy^fN(QZFV^_k;0l}vZrZqMt`Jz%;y9uj%>&cn z3GC7R0`tr)0uvqsDq-%Q;bpPSPZUpndRP{TG5mNQf;}9L<iNz8jPtLBX6-Z+a?4j5 zC<<J9rPrCVp%|MUE{P?-dv$OJffz)Sx}!>idL)!IY6&UiQpZh)sCKjS5_&y#B(Lb1 z9+FsKx)wc!+g@a>x~QQhEpk6|#;}|hFkxsOLnn<)Ol}dIyF}<GQ|)yaX~m5Nt^7F( zuLniy8>inU+M%Kv@3V9eiZoZZoqK8bWnf2IGwy!Dn?`AD<f-VmkdyLiFo41G3PJ@8 zXKV;d<s)CHsVQ*wp}KaC2)wUmjnPy;s$h$+)$6{fSUfIiI8^r)X^8DZ0ru+b-ggG8 z5(L<#kHUsa-q^^hf>EX-bT7lgo%Mgm>8yvnFV0=~qrW=%i#reH@$Y^+H`cPUpqB*H zFmiUyT@nvWbm<qmulEq=2+Etw!-Qx*{B&)(GU7!N$As?v7j%kMoOf9CUK=YBLBpA# zHr@qg`1mUpdVoa8LeAW|9&}EllyCDaDmNL7*t^cG3Fzy>B#kyW+QEQxzKy|SJu*Ue zongw}_hCqdFD3bKk^p@X9kwnd$DQ0c_L4sk3-6w{*hUk4faB>!<;xKX*U(b_y@vSb zkM6E=RChp5AxHr~A{h>;f2hmnmB$003f|a?Kw<$Vw5p?|PiP|UoPrpe{+$ptf|(*a zB)vUp9sgc%;icO1C%Z=Mpi2cKD-aCuQ4N@_G;l0jQ=KrszJRZZ`EVPc)kKHo3hh6V zNvwg?{2phOo4I)^xe<e^tGkR&!WT?9aIZ}vrToux3kBE>%XB&zq?|%mqxC1Fv?$PE zUVaz&?s@(PT=1yWW_$Ojt#6+a8QB2M2Yld^o=l~Qa}#7qCIyGS=I+ar_l_%AhP@;> zMfvnvxQT=57hK5CE4JUBqa@_qd}UlRK=YmituAP}N29Q`XEJ<bch99c8W2}cT6x^q z8a&(6L>QSFQpJ?1qk-n%VEBJWv!FR)p$bZZ;64haHeqo^36pMdlx;m@B@a7H6Zs;O z5+T-9-&!up5nekgOy&-ajx`kw4eo^A=0Zq>HdfZbA*xY5#)+m`6FGAoHUVwTeWCT( zh!(n{<n>7|I6}lZI_K8{23S6U9ByfvT@=1os84{rDzO<9$hOi<{59Zl<$Pkzs@bP} zh7Ko^Ge~8rG`x_GEJJ;@e?1p6*MsPxE5WU`q<{@o5nZF5PN5RRUA;ijVYy}6<G@~0 zcBeC(&82ixYPt=KlQKT_!n8Ea!p_*PU3X4s0I!dum)LAPkTh##_&g3;czjzATc=+% zA1pOK3?vp3ib`jcGRl7-_42ShIwQIGX!2-acDV$fLnk3s-hh6p_d2~h7`A5x&^VuL zTrdo!Yh8}1#vqAZ1X8En9?!VC1$7BJB`^~;vFN21e5J`0R61)N^wjU4#Z#KRj2(40 zQ+2~*GtJ8-;l<Xey++9!yCh<{8Ywbk&opmIrPjNR9HT)yUD37Ytyxkmoj-C<p_Tny z^7=V?jU;7-99n&umI+DIN7aTS##;J{JyhCS0F$23h6&&sHMy|Bb-mBz6vB(isCg`q z!7r~>sVtwkuHZ}IBGMdxbAkP$YOG<o^d%St-b8QBL77WgECnP$&_?FJVT$OoWNgsG z(J;XEzXK<GV~SjRT1X&%aD9gkR=|>d-vQm1mMc8dnIGuBL9oV8oSWV%m=!7F5jAPw zR+$AHwE3XpArK?uOGnsHTy`+tJ5J>K1we^%ly|<rEv%$&Z}dUFU=&;S5x7~&i&-(p z^M<i5&(*WW@5?lwBDegD%*|f5=H`u#8F|m@*W%|&uh1W1A;zR!k_bWJe-EL+aD|7% z1w7@BL8hH15gG>-mlz;ZJO>)T(@q`=npP5*UQ#6$)=A1mZ{^4xd0m#-7ebISkRO9z zDRWTXHXg~VerPdb=XvRB=9&%b<`v9ej$Z53lH3a=nh}X`G>f*GF3*Uib)%;JTmUhU z%)dssQ<5v;*YAx*o{JA*j-SuSrikYz8=MDCNHP(3)+iswDFGA$wAY1C>HlZ5bpR0e zcWJKv3546QihdC?y5{ClQQ3qjW!mZD%|Hs%RL-R@IKsA%&$F~O8=TU;=P(^1gmAf< zyqI!(C3!m7v2WFB@CFR@^RH?^g1mQl6gn6X)PH)kV<6x=S-)bdXRRj>z>;;UY;ZNQ zeDsS(Ck8F6(cTl%-aPo&>*0FO{>})1fBe@bDxpp$y_?|D=+;X@4=~{Fvtc`Y|Mk{( z_k*Lf1&aqC)y;DCLIz<XY1Jo*dAX1U3KU7)Shevtw`)D|$zISFr}UP6?8WKC0pC^$ zA>4(9Kj~1u%kogvx9PwB`;};p&6g?@MYp_H)5|mpf+bjdS1-bi{8+(6rN(sXmF_9B z$2J{Je%*qmIVYPKR2wX!bE9sZQ>1c)6S9GeLHFK9k`47h&a^<gdgLwC0}-a5d4$!_ z!MGKj+DAAI$|hUiz!@PB#Va};g7D|sqlo)SmQHtva3sr_+{I6~KXqw=b2*hjA$ z2%*`4+z|X{vGBCeMgxhtDvkjn%rV#PgRRl`beOXBd{m_~QFimWlBw6xe}i+s>v;x& zPI?Gz9TavD#m4fj(X9*jw>kmI{>Fe)N{_5~=2SAzGUN5Mr$~w1v7uZ|fLBKK%+^=b zvN3lHKS%0gZdzBm(GtRcY8CB^9>4><^N|}}rQk<BHkdh{FUZifuFaE41tPGl4(Tsg zt%5mebQ4)E^ph1Z;cv_3G~WYZ=}7Ac@^)xsiYsoKCZ@{e-psYCEICbYctnLTTtE{1 zfAG4+bdn=zXl!Aojd{<dXKOBqDXAVcxoQyQQ`KZsh}vnRfs>bb9ChP@{C75c^6uY# zFu0vi?ycyArKOP!{R;tfiNA1%#599*3e0-NrKKLmOpqUMilMTDyewg0@#;!^XU?qb zLy?i}-XSLX2F~z?vSIz;dZfOL{yslnSU76Ag+*@AI=L_N-CABTg%U|I9`}mjPF(0) zNefPvNhR{rmtsM%YUE=jLsO-@9U&*~7zzEd6_UkpG=t<hT0B@6R^6U_W5=s66Rf%+ z1{p}UNvVF!MFlR~m-;Ln9$$O$XUMcWUjPZhic)V5Y;qsBcw<$FL5$8l@b<k<ky;7E zbl*cRG5WISpTYZ>k6E9;ArQbR{zUhC%LlLUAsY`|BC90fs)7dFx%p_CbK^A;Tv-5_ zha#JKZD^65A3az0v4w^NtxK_rQBWq+*B6dLGIKGQpxE(!tL;d2u568H?XHjsO?sDy zJe3@}jpj}TFSa`IvT7!^gfuQEf5!%VkkK=qoe%H&350m^o&0Nqq{6v7tz%9H$A1el zyxwEpYy~@n-rC)mYpsC4bxZKX5<3DYfoD^|r+xfI#h$}8=U^|D#aj3a#N!6FaGi3J zLSf2qHBz;%lVV6X&Fpq@VWh0Dl5}I)vb@K|YR)D<agZU?{J$|F?oi*jtVJM_D&c1J zK99b|JDBNcd!KEVF&^}oItqGws*RM17ab24TJp<|WJ@60CZR-MhhWuDu^eH1D~`>@ zS;Ob;d5TYD(Z0Mxe?A@>^|kufMPerz_%nJba1Mu2uHKLQ41@`I(cspg1NL3Nl?6zq z!qK%E0fHr~jGcJ#J<6}V8SBTRg*@CKean1&V7x=%$SVYFjj8n$#hL?#5UA$D`I(V} zcyv^Z487`u1dx9qIeqMob>3QcsQ%axlco0W_kSuXgAFq@ExR|sFH}?D>RmJ*o+thm z4+qV*VW(hK{m;NjTPi{itMajq4<=8dnoHteh=TxiW-Kl+p`Xk$d8U|I;kkX)B~0oh z(T4W6!ylI>cM;SVzWzvP)3a$kt-p_0NlT)cqUFT<m+|^(?>LSFk^Z)#$kYJ=ivEA@ zus>4A*H0XLRv^BUUv|{Rtd;sk5`Zs#ZMV_nkT>oktNQ9U)R_M!T4nS6YNAoO0h9ce zYQyNs5W9zfBstEV8Vy=Mr+M0|hK=Y3hM}|#_aUhu!`>o#YMYs3EG9_jvTQYzX8qFs z82w)Qg!28j8{9JAzCHIsI{3n@vJOt&G6_D9Nfxd(7>X?^8#AwqgVY-e72hw6hZyrP zB%z7}t&sK{%*n!z6f}*n2Z<e$iI07uYtFlpmcO@xsHQttT)L%fa;e$4%QG<j!t%Q= zW9I##C2`m1kNWTZ=5{YEpAL%TPK?4W+<ABwA!Kgd=fGiSbHcTw#Y`b}TP38f6d}0w z@qN~734DHK+8WDSr#t#CrnMzL!A_-$8l<l7#`@3HPXxUMLp&Fz%}4uzjSGln#RS9v zEP5P7Xh&2$tCjT#QIOhufp>wmLNeY^SAm6fFcqtkWNT&GGY6>4O%GzI2|V7W+f0!N zZo*~n^y7U;;?Y_Gf%UFj=LaAp1d)va(`tyN5VN`V2Xh(9j!w8)!eA~K-N_h5L&A&k zJq7l6e|{UP$s&W9%It_(dtP*9t)GC?O|uQHaQE9#quc~aaMJq{2jV1~S1*mZTpe}! zgTu9Tj9Dj)c9HwedFh6!VWV=P`Yf)yu+ZYZQU}}#ltWRsgBkYOyG1z%91Q7TRzia1 zBB6CzV!&>hX8O&JSK-qy{MhjQc4o(PW76vVj@+cyzxVd~0Ch|>n6?r544O+6%4+Oh z?jj`?q%QXo`aVvL)9s_W>%XvMDD&bKB^VeUzk)?ySdUxoO=dR1qnAANQLfGbE5-C} z>$#H5)ihmV<~Y!zp)w(&T`2w+k`1oHu?-%^v+VaJEcy0M1b}`;wL@z9)h$VK419cw zdLYr*;?%c%Exs|a<rmU?GmpPLQeZbkfn5Kt7$h7W&Mt&>Q8foz8T!Ip9bv&ukLa$Y z4*PPJbC2$ZpUHnLcqGNqjLdQ5jz5x5`hM_ajswhQHM8Nhck7@cq-SwP$s(S>N9V2~ zq~cNrv}n8#7%y9#Evv=IN0@5-a+!h2tCMc5-?@^j?Qm_zRFI<=^&w)Y2pen<|9RU~ z;+GqaC#Bk$AkQLq+GjJ`GEn!bNPlEg8~eo#PAkI<cz8}F!h4sn#Om+Z3iZPGP~6xY znYT68-T`2B$FC~6bbwTO%ESKWR5v4=y}1ljh5grZB%8a90!P6)7C%Ve{E6R8A&(l2 z09sv-3Xz5Qb?k`6INvLv!~VgPGvYQpMzT$W0#jN2@GkGNYbvdrD%yRhZavXbMm@5d zI_%)TmeWd_Xq{)Cc^Nb5duJrKsqo)@#nx3yGd9FCd7RTsiz8CJfG8n}Fc(A#QAZ?* zo(YJGQ<ku972Rz(7}Eb<O)_Y9Yj?0Rj65PJZH1;NyvQ40W6jVv<JSQ+?L^66v*MRU zjk&b9WDC*+={L!x4N^zf@jYjH8Lj}eiX8pxKxv^I_l6E?s!y;Mi_<<31CCA=TuuCU z>~BE&ICLu8VBo)>D;`c%KBy#sd9ToUfhZ9^K8AGAS4moW=q_USj75X})gsz64)(uI zRlwx!JkjX{XN9y+vyPNu&-rB0;3Q{;W2z}D_fDnjrgObjNN5?G9}jGYqT3n4_clAJ z$EGMATuHQO|D(CHoQTzsH3{`$RES8Iu+2bN6?Hnx5CWJeX$|%&U?e`=+aRUd;O2ue zGBs>2)m(zWkCf?}srr{t<kq<0dWGO?brvqQ*li0{Po(~>8I5X74Q6Agf@2c<9H|$t zXN?pcDZ0Z*#CumV>1?n<5yu}KA;}vK_%Vp}26sy|ReLn^aS;>(J%E(vC2KZ>F>XEl zKE6^bDi*~%yV6eVjk7H~n-=AiHpk1pyBWW#8kmv$OA$CWjS5vzC)DN1fAk8{<zW31 z%z@bXFeX}IWGtK(TWc}@Vr7`+Z_4R5q3LEDa|K>YPtE^zAqTa(6SL<dhH&>hEAM)g z%sYo!)U)K}5uCL`)lrC7a(i8w-3ndpPn>C%Ql4!?V-wXKy!^;W|J^`EYaso3EnRl& z`Nyp(#mo3+0gRM`qKI8c&OJam>c#sU8ELVEU~w9&N|%@a1XsSn%bVzwXI~RuhPZ9( zpJ%Jmq-F#sHF1aE$tzozga)NQepg=oMIi8nFLp@}l8&JC@ED2DMe;s*D_FQWo=^{X z!$$8FaICtzKLZtkos}E8zr9kl9Z>7FHj;R7V@V(Sn=;l|NxMobUw#**^>y~a$X`md zU<*L@zxhZxV+cUcSC?z0$vuBhC>NYgG+jD;(<dZv$lmXqB*vM0O>9&g6ysdqE(Z)& z-qvG{b`DWBu#O2F43Gr!!6B-rXN6OtNm+ZDHyHRjeWl;}-zXVW1w(ldH_wI^{Yh`A zOu49tT`O6@LF1Hky2@47qgfrNE%!0w@`}V_FZ%RN<C-xiAs^=D!q$>719b(Iw)Hha zJc&SU%1%Im@MI!g4Bfhkxxoi1ts)Hx)oJz+>fsXj6bak5uPKQ}O@o+PsUWcV%mQ04 z!T-@)`C>QiSaXjT4E7C<WeJ8>oZ(n=A%(QYf}%1i=)Nt!$28qwp~PA2B1UT6d++8e z;S;U-nQCzh?zx(AR^4lgV;qgfdLSGz3(PPckRe4LAc{<`sH?L_^hd^FFn3@grQi}k z<zMk1^0r9-CT^V9j#JE!xiW2(2cFpP$)+78OSZ_|z?CaV7MW2Y3eHI$kD~v<9|6gS z3P?kr(fYV^)^);BTNy*U@VXvDPb4XqjrtE94Z_1=jURmF#*XH05My;;XDs@mqa-eR z#ELRf?7k<@C<GgzKbCcrctYov8_>&5EJM2l*C8O~UUEOC#W|7pGe3w*H>SjJRn%YH zA-9fq)SIuwgf-CzTBFxXj=4Mdp!YXb4wtMpnP2-(v6SI=`7PI>mT%L!cr>U~pG}$B zL<F&hslBm{9!O<k^L{KtU!WOz2_<_X1i)-#khrBtRM*44Yonu)UJ-a|xSX0)0h>?{ z8OOU|+39uQKjzHwPf(&J(Nl6s0G9v5svOGeeT<-T2O?Kr3;z5n6f#B^mPF6^^5~Fp z{?Zk~e5I;c!6H@~^ri!L>P-59<PV`t(Yz}{&XG7TWp#K72Ajfusw0bfde=zs@0bMc z>95!#(^2FT9B2i{@b^l!!ulD5N6F7uap7=gJjIzWpEm$>qnQPvX0!PCw{N6rPPPLR z10E2Ui32R+eF-M!wvV7%%$?A5nH}(}NJ2j5qZl%LOL+7vqsFe|`U=E%rwB@KX8Qlb zP&C188js-ZCh;cn1zx$y699b<QN__SLR8DM+4(+hod5byw{cwcSf~J*5VRz(XBv;0 zGex)K!?A2dW|m%ajK<+}tC?EGYkz&+2vaH~j+ZOO^8;FRQ^76A$!JTeruxu`aG<_) z$a4TN>-C}pc&d5BW0tcONW}?%-D?fNx7((+@$vhYR%svrkgUw#H&%yS$Xu!7e&9k^ zu^FO#W^!SPNtTz&Yq(e#H0%LebZ6=?b6`-~W8>02nIY_PJC#$o{jz+*tLJO#VX~0D z1^=7C%LT1wnwrl2pn5{7JKKQbQRu91u$iN!h*&8w*&ZarMs=j;6r<;yx`fk&5s~Xs zb+unUyjaDp1PM?Se6-$265K_zu{tiO+@&ru0CFCdqV)=*#=ZMaqgDmw0Vrr`OMGJs zekngK(E<2nGvRos1L+#TYZ8q+Je(Z|D^dNtK#xT83CLjgk)wce0C*vviw~#A6r=Yc zsL5EExzKIGvEdW5zW|vLAUZLMrh}s~zTKj=8N9;Mc2e!2W#PJ}(tK+&rGJz~OmNm_ zFLN^i2{M`>xHXynYMe%PqV_5h7vl96Z)|>jr`L0nt$;qS3pe^xW_6+`U?D>-)+J*J z9MA_x*a8cQHGk08l-D*dO|x@3s30^GC<;Q6%Jn{&_f6#I^>Dj?Y(``tAkJUHhfWGl zJP1@*oCDy2I(9|~;L0O@6skLYYv*za?NzqdZg46mRItZ34(IG8JzO`R2e`W<0ftpR zL)QBwaXXFe_DfFUjl!O35drELs_iGo6P;RsBqOT@<-mgQu|n`rodd>&6)*=u5YFdv zvrn(!FBvpLe8sS)Y}tY%3$)RcgNWc;CxG7Mcw%WA@xD&Z6pLIxrX5BZ2JJK{dDYbR z%eq^y0R9KH{h1FlDPYk!h`>$4LF9;`k@Ng^%?!!^NHp77T+b5fkit&ZL=v@7Bp`j9 z+=%+RoFL?A<wnwZ7oE%~W4;v0;n1*Gd?n>#`!K)(_L9c%grJg7J@vmV_6VTU<B%!< z+q)Qy)Y|481`uw)^NRpps~v;02N;$S0qNam_zmB3sw89bE}V0g9%}Z{cz$yIoDGqe z!;2z~z4=c;4S~P6Mv&jQ_<xd;i227YRmTUDLufk)AUA?b5$G)ck3r4BYkEa)NJNd= zNbD8QH9$-!X8HXE%`R^4o`zYy8j~pV9dU*VNY9>LR8wVA79-J!f`jv|o~d;)&KTVm zHJD2k`RtaZx1ttu+KejIMVd?PP;^ZN=v{VmKefMkGL(Z_l>^}ix;E6%Eie!KvdXm0 zN^CEf#h<;^wK^X$wEMmpQ`wUPMiG)fINzmwFF}s{N^0-2+BD;dmdQ^;I5Dt;)q6J; zeSiN4XZ-k!2Np6K_TPwOG!;v-7?7_p9wWdkt`$pYVUw0;>wO4@h7V?YRh=eqq8xS* zvYI(0?3z0h4KUuHdJzmf&*H_K7rD|ZV*AJ&7TElT^-ARlRPb33-D~`gzn4JTZc!hG za?gsR5XX4G^%s}juZak>+OmwEd6H_&Ccu`E5f6VfAHdn&$okJ!Zt{_e$TdqwUX$dI z59}6g7!xS;TtVCbaa>N5iDV232rnuGOCe~uYZ9xp-f6wOGGwR7)M0*1`?UaHVq~m1 z_-8Uby~LGQryh=ei<x*~^*rNXVkR71-h=jK!}BGP)Zd9EiP)xh)K@26X9n@{hrR|g zgJ^|DPJ&TY#pUzMquD(y>0sNG#3Cu+N!RiZRW1v+!5BH|(fi%pzZHdHDKP4Y1yQ=W z`#d^Ph1F?BASF565UElmd=wgEN6+BSB}YaAlU}8hRIMzf549#enwo+Z{O<Dc(g4kk zI&u`YD2tKrefdCBdR=l`Q}j9w+F1D`$QXWbm5rI_`{&@)TtA^W|Fa57Gc^&T@+ZDn zw~OsJID(m`OGBaLuaHUt+4AiB+8!Fbob#WPd0}mFmeYGUyhLVD0Q?M<7wIhSTRG*b ze)1jWS`cgOO=FIqsoOjs73gACJ5~-?p@H!%?3ST)2d9O%n|~l5nVto<VmCPJgVQzw zHI6}*zRym9wER~675H+2rsVG7K1W0+^v>-QKVm^j^<FN*Faw32El-R-0I1-jdMXZ3 zgJVj&%dNWCmWuzQVBsttVVAG&?zX0yq1nkfY+_Mm;N`a*F6TX9m&#A2_&KrnzKCep z{bNA#2e+UseRYZ~B(Vq9ItTPv(;~iKlLyCRZ)s0sw0ZV43HnB<iTbdLg{0{mSU94w zEX5L;M}Ru6%2R}@s@>R#XSIEvwY+$5E4~&+S9L?gsT}2iiS=HDM|sN&fsA2|A(bZO z(JT8Ym61Wmf~3a0Uk((jl6qWK+iHw&ABy!pF8SWNj+@C1Fo+4<(<o+@8^%6B<f9rw zaa)<i?3oI~=gy8vG(pM{amgl=eA5@%AGU-0jp50wgs!%ou|pb_{RqD(JqTSqs{J-w zebodCZu{2_Yh^-zXbx^iH1c~X4D9M-@JYcv5l_zS=UPhbF5{(M@>P}mBI4+0k$0k% zfSsDBEE2<G)C7}Uwi-%S^OOx?<TJU!3eQ_+hDy$aqTYfQ$+T%Ni+3c#NP&B~A;Bq) zw#^>^u9&YR1q!_R3$K1UW3cq3BH@qw{9<35Ri7FyIg+ma66I+J(o06&XHKE_`&InI zL25_HvQP1b^}Z?&D#t&yA@x>-WJ1~9`~|B!W3C+O#kIFPc+7{}rj(3SlH6xWob3Tz znTaoOy^@FA21<)-T4zXOrG>E;i3?XaB<wV-XJI%O2KZL9HNVyW*La{<+#F!e7SwNB z3#~B%VAma8Td9P*MBgaNYh)w;VpLjZYgJ|h)&{`n@^L#g(}2#Wb5KT?Li=6SaPL4| z;WcWs!=h0nmk&U9T;#L6Y_-(0>oO?}p2wWzKeG6M8H~oLQK$}ms+ESCZw42!S)rN+ zX}8cgt%i;x{pwn)MmeYqAa~;-$pm4%Vl%HFjTVC~PxuFtJ?hUC8Tx4GjuJ{)ADeGm z<55<loS7X7h7htV#nRKDTR6eU3q*sKC-~CL8fk`)UK{*2{Z@7ShX`bNAZa%2goHKN zkc~2Nx{CO_(YqCSJf0YFA6c0e^<E5bgAs;&YdKMKpxyg*Y*HG~pQV`fH}rI$=x`K% z_}L{2+(M9XEAUFK=zwEGyr)4x>p$b6#@5`SDpsC^!E8TvC0*v?G&iWBO$DFV_ORa_ z?R`!FgrIgan+&1o5QFPS*{$bo@TOK-Sz~-VTQQgM-i@(>t3l6Uq=UaTV>w2*7J*Md zU_Yd+Vd71Tm`blc@R_9?lFg>)z$nMWb{L#w&|TE5RM#}Lo7|KJM(bLl>zgi@vbNlp znIm+o0MhY!j(;BCUXRv%Ln4@-mw!@tR}vj6qm%+w0;il*SOFMaUgwWF*TwG)<A!)p z3k;vEI^mvIC}byu^9@0lMpoC}B&+h-k8UlkyiSB{VMYTr(PQzHYajkEZU5foK1jrb zNlB9}tM@a+>O*Ud)`}L(0pZ&s8}%jKk5dP7E@fn#&XfNZ_{OS7V!y`t*#W^)6yP^` z;sVmu%v#Wp1dc!-ZP{GAPTOQK+F}(urz!^z3uo#~JmN!>fi{l&`4_O#u{Bm4V$Cw} z>tKcIT#X~sl*EC%ou`oH(i)INxzCZ&L*IO2MNO#aA3v1GQ#020)UKZcOkBWFyQq@p zZqJ<DEPWayb4tff-HD=#oqLBl+-{imZbjEBBR5(1W$Y-JDod9opCPo!#zPCUDi&VU zHujL2Y^W<_axA|dtv<Sn9=ye)X}u+?bcDsvuTXHxlIi?hngJyV@chuVth<sh^%7KY zHl-{5v64UnW@Sz-7nX#C4_gf|OxDnB+G6%?5NF%lcs}N!STrN;qCyKl7qJbo$==Lq zc1X@0_eSEGT8&qe5x@2wdhFHxLuMJXwQ%5$PA)cPM(+Fi@+SvJ(46?N;$kAe7?LjQ zki)3Ir40-*?}u6lXK449z%ty(5adTQx6<Vq`~bp7RgtMTm{3zuoa2Ve=4BalD801n z5M<-r%?jGb2PAi#=_!S+@}t58ZeE5Ngl_?_IaXM-#$5m9L7zBn+L^o$Ai}M@%@LC3 z8{%Q+tmH2w^ccQ6Fez$bWfK-`t<n7JL|Pu!x|`vIGsRk0W&f@CSGkfFqp?gYiDUuu zz1_yj-;&d+S5!Idd431#>=<EZJOUnu`=&hr|3w!aCBw2>)q(z!ju@ribo#&8(ZVPg zk~eZd0Uw$*83=FQYu{p9|LB2epppd*1Snd;OlIoq+_2XYN!gTEtjOI}pR<ZZiP@Rb zUBi_|t*n3hn!aPd-PR-9nmaCHDE6>`qqHBGoLH4nbt(2D;P~zuqeR||#DaTlox8p7 z6Mk;H->hc&-3B3aj?onEdf=LAh1IbRp^w*$-mKNyB_#`k+BDcFgNRzyEdt*mjasI` zJ_77Kj;2{N;!~8P<iFe+y9;ekC(}-tI|xMX>4Y01<Ff~zfeeAw&#B5nSxEUnb3Zro z{>D7U&<TNz?ZS))9MeD#;)}3Rx#qdK8=OxTW)WA4)#Ja1uO!m}^jpSRW<9?!Ad`&Q zMrJY}d<EYXsVj&~1=NwIf>RZ7FlCq<v(2?Bqi8BR2NVBdvnNL^fL38Li;d&9;?51u zS_!ES6mC}7v{Gzobg)7sC7C*qbG-(3krX$03IImzWu&oE=C{R;F3yr~)T0Jx&N{n` z(!h1MU}E=eL<$?+%Hs3H@+YMVD8}W>kLv92!{b)2d63eW=Is)4-&JTO4{ZhSw}eWf zYR!!)T+DE21c_+=n6Q!`dD9Ut!iox<BWuyYn}B&F<3GT+fBu}6RS5OKSZQ?W_OgK> z+>M^83>@%Vba`gnR=lz%tlXX=oA_(!ZKRa2oV;h@SDfGc*Nn;qO^4dOAyF@<lI*uu zRP5<{tm7$}qxZv6Z*i$R%e}lUu{fonW(Ma<NRQoF+@>SDsvh>PKetyIi_sLm@fyH& z=6x~?9VI@^(_dfb4ujNX$QC@-DW367{&tt_6KWfNsWnIah3zzf*zw9-JzPde-~k3D z^NN*@r4Ud0ra?X!;r^eN>9IOZohK6@@>NfC<5`**Ezd3>DOITGEvKd<|HbV-q6%C4 z(c#AG2Lc+jK7vFz6bA;E{-9a4z+SH8=h_dai~U}n<T2r>o0)=2hieW!g`(~D0X-?W z&sBeznm>Xj_TAjP1Z9Qoj?*~mIfRlKGt+B-L|4t@myZ4uT8UA=O4dFp-(y`FhY~60 z%vJpnWqrS8mW{(o7~1n6n4BZWV{u&;poD&pi1o$7_yn-DEP+Ab1anU520zCRD}jME zF&i%vVqQkazHaYTI_m@uX6R7avF@RIDYr_cBeh*zlu)oz5%g&aDnkd4fp$S#HqAEd zdlH+4EhTeS|M|B#Qz=EcbY+TreNfIDh=kKY{+niX4-^PCs3{zL20;~3V$W0&BHx8T z%L@DXSSg_B7kNdw`%5lEbY&ziJ+*!a(%s%QjK*IgzDNK`3Li`n=?YF7EaX5UZZ5H6 z{Gfe#I9`Ug0*CY$Fi{s$(rH%J1Um0%ze!4qSLfU0Vx0v$*Wz6a{7j!1&KWlh+tGC+ zz@4QP{&F43<&ix}itRy<d32~>U%_mH$<T2_E_(qwJ<Nm*M8T1$UvcwN_fM^}N|EnG zVSOT@Ui-ezEZKY_|Do;c3<H;C`ufwr^89h2rm?4PAoK^W`fIti_np<9b#EtveQDMZ ze3r8`9H3?6Be46|j7P8{QbEq;Z?gApm?$V_g~V<jKn<T<-z@szApq^rPpuUiRJlqS zQ|~!~lORHuJYK255JXQu+^<CTU{Xp2#Q%5c3r>d!<Gqj1O~^h-=^Pgf`V!)L=DH`k zp9zpQxOoDq4842tTTf+pM)E4XuX>vyC_n`16_!aLkwh5Sx{Ebly4(A+V(sdbSgK31 zZ;*4g&r^^56gN4|_Q83BzkXE7=Nzk^eb?p>oXn74jAbVXQUgEDKJI!Dct4{4MqeLk zf;9e}={@kOptcZHy+(E%m#bUWN=v7#wnwx4d0AfayM<SmOUiP`%6YGrfgn~<XIPWb zfFk`xllRu{phIR%!I$^^(kt`Y?ZJoGqo5(QMBo$dxbby}^Q6*hTRQ2TsTt6^Lr^8% zHTObg+&-*1<5|aZ%lB(nnY9^^3IOkHe5V{MWv7Yo+7k&K&|`S;pLg)8iOOpxmE<II zFFFodmo@@02t@#85@SA!@v99*vL%RtBZ3eB8rKzW+-7AF!kk=@t2Qi9=pDWyE0e+2 z?R?4}D#+yKsrkfCXq+2ZK1JMhTzu?YZ&1vaX%k00)iVwGtGz%4O5p@7zmD&nC$itY zY6tfD0W;)g>cZ(=OdKEukZ3GfU2a?Lc4f_{ldIrH9`|`6#$Rn+T?aI04|8^7$-D@A zaU})@+Yr2Nmq3W6MbpV=N5;gR+AB`ltK#ViKHik({T==hxklBND*l{WOH=6KYd^Ja ze%xLPZx3C@z?+*)IMk9<G2nl2j?-(LOsh2pqrVE!ma&`3W-~0#xLkRbagCzr68j4# z)gCNA5{;vKSeIVddu?zjo!X^%$7Nr8%8(!rJ%2@hXjqn!C(_@>Yk&XZ^&~|>hOb7P zF$n`qV0Ye0Z~M^N%w0h$C8)93%b~$pSNkIJd+-{965{oJ*(YIMFmd^j>g(~B*+QcW zhWYaXU5tuLw5^5!8;=nzOLIccgPOOTPcbIUOmKR3UoOO7KUQUG`=#(a{tS<&%B#@A zYpve{hS9j&Ps)W}Q!x*{Dg!wpFxzAX57*B}mJDglfhz-?h<w%3<8JWIV3mINCE=Bu za@sNa8XuZ+Ucvn0k?Zj`c=w6iZC)uiAk#?C{iEdfFwv}IJOaRx3jz*D{`?Vto=Q>K zX%@B)Y;tAiS0u9X%cRASy*qfs5mxhblm0r2UG<qXg9y&AK4g>mZ81|d8S#$rA6@dj zg#l{uXQ=+1y>F)C5l!U6!q0LW{%NDdC`c+fUPoOaNCDpb$$X;l0XqK|6ImjWzcyy; z{bu<0sFe^4;@GaBw;Q8lr2{FR6rQ-@Ixhq$a={-rC%SIUKs8txQbTK&_AVwg6IbN) zzPv-0e3_8gR&>A7UH~Bq-8ed>(>%KraNwk~O^A@P8?oLt3xvE~AHof#EoXLC5_Mk( z16;zegBgTI2wRKOtLl0h{7~44l32bux$36gV4K=5_uE%cEFDjO%X<+$o>V8TAzD1E zzH#*^nE=0w>{c!~Py2@(MJ2XNH*H$+GSG9qNxXpJRt%(oCNh^^^#m>|-gFsuFO@c7 z|0eJ!C!e*wOB4r=MEuc<FCGp((I5)<>%Sr=q<L!c#hUW>VgSt--`^yNtq4=1@^@y= zzDMpCSCy}g9Qz)<nAQZj>8GzRnBx98Vn{Dut&doGV2pnDit6(p$xsh<VAeLQQ65pX z#i*j?+GHu2a?rkGmWfIC849%Lg}Hso8FgIA*gvt1z!a9xAyZi8gB&Cj&LP$14UUz4 zFovWuaV<qx@?t;&xn1lJbK%Cd@%J+Tooj>o5}I!AD;cUdGMmeSZ_tdrv+TuL)naet zNG7IGvH-$zPl+e8JCiZ6Lk#R-e{l51nHaCTjTWOUOE9yYPF}R)VST)jY<a`f(%M+Y z=?G_h?()zpMvW*MLt6^mtP7~ZmJiLLY9G<lh6W12B6>0l%fPe{Pt_)jGdZPI!{S{U zNMF6pojD@6vc=zoMtsI;(uz~spq%W_J~~+}yxnHmLLj1i_Fx||9aU)*@5j$sj+MS} zClJn|W;<+MJ`!l~|LI%fv_A!98v3<J6<R9U$0fZcm`Heo=w_1t{o^@#?JNQtHVOjW z@D>e#@G=3l#F4Nv?{}S~x>QOJeWY)%aZ_c+qWp;nr0(SUMZ|oFH&<S!1<gXbq0iIK z#*T6xAWmRV1#7j!m-|VWaT@m?v!D^C`hHyQK)WNc+kA<Wd9DNDqJ-`ya<do>50pdw zrGU-E)56iw=NB^bmwwh@&Kl<U^)RqG-JY>k==2pV&)Y`z41%+rDK=lT>f)r7D6=It zs*E7|IK=>AY6S6tt;65DSr<2~NDh#8!l}a)WFhOXY|`V~k5DlZgUTTXYh=&`+$GgC zd^{-_cLI>rJoxJlU4fPDzIt}k*e}kCwsx6RD{{+Rmas6)%7uS}*8myrw(d@u-5Yz1 z8T17}uG9g50oL$}12%^g0eNV=_(C0AYvyMT%)-s{v}iW$ZH%A!rzvtsfv8R8x4a5K ztzpF(-fr_`r#_cQND3Cq*V}~Hh3LR5s@ke$RzG|?)u8SIGkLW++z%AI`Ps%OJp=uQ ziNiW=&NS@;DDjlKL<ecFrkFv_O#F6wAfYfsS96vM1{lGl1A&VeE#q|<w&d#_bRy7q zp$GhWu8j4NcNmQddFc^Pv7xgOMAl`gCrw0IbUxNN?pwmGfixCCw%;mzm_XL4R$#&s zzD7Ocs>e^PY%3oi1qlBFgP_5z0um*EqyxUp+wLm0m-e&YF>+%hP9T$HM@UYM-@~$7 zIp3hKSewX<e~AE<>jRw12v+e-Ns_H|W+4=#Y`0t?^cApEAvQ+=*X2({`ZF~x_HqRk z@jQ#G(TUY#LOf(5^bV`)adV0H%Ja?^k=227hqpH6(mo8r4m#Y$-kDI`<X$XcD--(e zsVp92sSo-;x7tu~0N>QrKU4Rk0V@-oXAjf6YP7CC#g&IV_2HPsKaJS@Q};TwNFlZ& zT&C{?jdhg`_rI@aw$*OJd@J@c(>m61(UE(Y(8329#fwtPW?zT$kKdxHi9oFh^{T|2 z93d<J0mxD6RO)cP)Buk<;3P*jy}(K*SgYO5a961eP=K2u$Ajs`38RsjGk$^1z1r6( zzeEXGqhe5r3O8T+QaPn9FiN#Mp}?ydUi$24nDz!@Ga=MV7;|9X_khzaqGEZ_NN`#I zK+DuByqOE0!F2Psv0XIhC~sW$e(;)3<)n$!FdaL0Z;>f<tWfEz*d&i#bWMB1$a0pu zDZ>W2m{q5?umB=y$h6^tR?Shd4qUXU3If`*lb^8(1I?gR&SPOwSloKE3jxgEUkZV^ z4Afc;0vb)+$}Gwr+Xt?7;n_gJF)c+{r+7`7Q*R^qs^Uf#C~%dcg98BkKH)2_4!cap zj>DAh#m)bQu046yI<Q3~rWnb3=q2s>3cQRWq;2&cJ;A-Mam-mI_K+H5Qud^CQoji0 zxh<H^In9KlYUsDSMEN|CK^8d;%+~Bf6bje!96g}N97WjO_!RC=&>Y_F{xm#uoT<<< z!6phnh)hp+_Xzwz@?@?R9|pK0(5ewl;Loc1rdzf0i1$m51&=`fvk`k%Ui5L6Ss7(k z7InCQv;T26JvK;SK$~P3-v3V@g9O=s3_9thwOAb3NI?lOf+fg%XeU)5g^m$=u?`iP z6iKwk53A)IBc)AGFdvZHj^BrcjSLuzZ7?g*cZ=UBX5U1&@2Arxp+EHKh%d{v4q23O zGcA(DhwZ4!bXxaevhwUFZ(CzU=EO9UFqJ*&=YZ4orFo=R3NyRHu3uh?n2(jGB;RGt zV(U#A>iwSG{zoEP4$-_zjkl%oW!{V|hYL)+$4i_BiC1aCz{oY8Tl2Y&k9fI-Wg}0$ zbAp*q5F@V?V<I%`{aR}|uH9T(+tpyBHY*ATeI|e_3(xNAZhlUR^8>Tpsuaxg;ntOa zPUVT0Q}Ym`amW{+ljrr+D=g};;S5n=0Fs(O{U|@>YGh}mAfAQ*$xav5%}Q;WwtXKL z?$0k)?kT4#O5bgmT<W1Ngr$~{N7oBfInDXyTf43Sg{Fhs3qUONTGOx$PA~1g@ezt| zQJ%KZ3N+~fG<dF~h`?#$w5wV;3VbG5NZ=cmQ&Ms|xU?fMVL~&@SXJK9Y7?jA6L2@) zP!ROyEOQhEw@=PPq45qwr<Ai~^j?Y~pbIH;Br1iLKdwCU!{E}o?bzlOv`OnswJupZ zBkt?d4C>}<DJh16j(irOzgrPaR~%}KG%0P5k+8HfX^2N*k?|m_f`hU72YdLeH4oI- zFbf|jg;6>4$czw$RoQs{CHr$I&$_Xi$wS`d&AVxA<B#2Dve4}bnis|*h<TSm&Joi> zFdvh2F@h(M5T<vDRI9IyA+jz(vtlWb&|Bd=4%?~B)0R_e=mJsGL0PJQy5z%9dH|LH z&S=`oGw5?S0uto?fypL}N#fEIA0&>4bO`SQoNuSu%eDN+=6#o-Rz`TY4w4N9w#dty z4VCW^@zp<uzuyD*R5F#cOZQH@JN{?%DTv=YSFk5xN}-_t!0fx13`b&o>pBO5;qSp> z9*KE89d$#%lURAd`@D!h2?Y=|&UQ_D90W<xVlU%h2gw9+QX#z2E+gy%{UIFoICnkg zta+5~HC$SI&Nvxm2VC;wqf1YWHw1p&PvjhiV_m1EtDl(+gz$qt!5;6b6)_gzKQVy& zn?XLN*^yQ6FI3FdL>z=fii)S!z9QsP!Jd){M@H25{6b;5)Y*0M{Y{SRKfkHLI<pWb z5Gu3%pqH5eBInDt9#ds(79Pz>9Yz(>3;e`V(3g_Y_c1i*i16;tm)JAZZsuGtI)%|! zd+l>;=h%2qrg@!%Q0GN+!L|nBel`R%3~KIhacL2x%SsZ<Ezyz6I6sdPjn;{jX4Xkk zQk`>D>J0g9nRy?6>U~uBKLHTx1>^#F9wx__kbmaTGA^vMNXh&iTvFGIG%mhD(zwSN z0$Yeq8R)*R7shVFu7(iS0Oqil0xKU;(RMZ5;XK7rtcRQWu<_xgHomg281Jzy{c?4~ z2_XX!65#*#K;0tm2*>pvL5vJQ@28f?(Hf)1lYp;9XuphD&TlrPFI_9k(B15`KG7_n zp+Egu0c>9AC8ZqMlRn^o#l13EEZ;2&d6^Mc`NhO)oP!i41rMwxk=3(kT7+gGWgQFD z9o9J;e4;$ibV1dR!#ma#Il<LRsY>eXU89k)yw(1#`LSG#%xr*{E1qwO%l1YITv#5L z#YyU1@={|=jn=kxx;Mb@$QpVk-9f;?05<eiBcznBA|MM~V@P%DXUEHD978Yh5^*7s zypOPjK#Mq{-qhN7Z_BIEM-Hi#n|qC_eAME=Dx44>pO*9*x*g=!iuEzHvXzFZf#h|+ zQ>4@HF!Z-T&oxRg4NI=n?nY*PJ<)+{B3NcA3P$>vXv8YNIOfD#7=r}0Ls*e}Iu@ID zk=y2oLrfo49DlTJdDV+vMHQzaRsKXeA+ST#b|~eCvh6cdM|dy_^f)SNq@Z_{hz=&@ zn9dne$3t>}dpS-<X?JkfFPMH<<-V9Y!!&XI;XmwG1A`J@x*S;KsofMc&5Fy(@!$W= z3dZ&S{T$z@pFxaaurPhT%L6G`Tkw=>WH3l9WxnWu+8zd>glRZIPbP9stn?k0aY0U4 z!(OMR!jQx+9>#Dwb<y!eH{0S%ih*jADVN0ddpw9}a5r2wR3PQ{U*Y#ti3XLTUYvhJ z<xgZBy)*+z6xd%f3NNTJNP`%Oe~*GC#-BaUXF_D?OkobSMYUx;hKyYTQmZDB{?kv8 z6cX-UI?@yWX}`49-G#98lw)oaul3Uc7elUFCwB;$g%UPxO!F1k5M<J?z6>aqZ*Z;{ z;f27;TZLy&^%e%^ch@_NpEXYH%#LfT+oS1$^Si0(w;Nz;K&-p`CX{A=_1#TIc$;?O z7&xNRcsA|dBtln{Bn3om?d~r{o-S9F63mB828k#d{ghCpS&cBb)UfwkcK|+<T2Hvo zi*_jW)Ei=kqS&Ak;<@Y051^;MkHj_y*vw>}cQ~Y9v2@~1d4zX5VA2dI2|wdFuG?Dc zE<J`di&&CM9zIaPRL^)$Kyk%|#NK_h;XJE$K~=Fq6J8?!Dne(6q1%s+?QKY-@{Ekm z7Ph_k%Lop9B8gV<C3mKS*Am;o%@&i*c)vsQ-8=-0A`cvEc43Zcs=L?chRb0%r@|l& zB8$6Y|1+?h*P;MDK*GNcRNxUwIfFbT6U9IFzfby^;lO&{^-xtttN~D+$Ytu|(5_W~ zjbfV{i`WsHej4gqfL{bR6FapaHgODjPwI(DzuwNs(_&@__n`|*Icp)cdePA@l=3kB zJ(B8uC%4g)AuWicp$xqED*qp4*LtZ{cpHWu)^ETwz8=Z$bxUeks&p0r{YRR@!nW3( zHInq^3@QQ%ST+a-`Ps!YdB*gl;vI?n%%Zf{B=l6#`t_-vCYV%*zDxD%K-BKcsBkQ) zBX}*ovSQ|nCuUWp2}uN@zzgcK5ZoC<q<}*ayKNHASbSt)Z*}QbRi?3KkK|kqq7`#> zRUf_#Tc)4{NbyZf$ztZ)82ub-p0k1U{tm9=i3_y2t$W>5MsM4?!hr#U7FtB|P}cDx zKl|P39q^l(29!w>2ZlDP0m@da6qlC>+tck0+HvTyJ7Epvxc}=sey~;;yD1!s>F)v< zK~VRP+`=TG^7_-o{Bs-@Yr1Q<h4P#GO><t65<w_u!5OlDR&&g-z}1EP7>8$4fO&Vq zQ9l6R7=tg#QE=c#m&}BUPA0rB(etB;6Z#<-lxV@h1(bE*R^@7N2!^d-lVV4vT&q-D zwZ~v=;2M>tyEw&FvZ*&&u+Gt#TdW$zBKgqoQ<(LI$9Sz8Q$;k(FI9}XU=<e!kTZJ; zQXdh=wX~vV)TwoslC;BPoPdsCO?>CumKN{952sq=U{@GpnWb~t1GCG`iyut0{!MRm zMmyC}4|@M@jYbVDzhbZY+sI)dKDltTj%r>CjI-)-y*H5*X3zIx`|GQcUVJpU&{ES$ zU|1n2Kuu=8@f1T+O?Zs~ODbw_I^qs_d0?!uzooO&7KeyohSED>W8FZ0nPd38&N33I zGO8|=qS@8}bFv$F!=K=GG{zhO3=N?pV2!dKuof%OJ!p=R(Y4$Os+!c~agar@tDWSU zwWkFKUk3)h8E^Bgq0`Z3@3MQ*WkE~CTVrncIQF-(EHSyl=m8*_w5qvK$V}Cst+VLz zOAkSJ47pI}qr|nBJOO|H8a;VO6MhYYaI^$Mec(kQ1b802wQ3E~DSC4&ZBvzne302u z7N}=^aRw4>ziQfL+d2Dg%{unKS5Ox}X`K^DYW{w)sNbQ=mlehLDBOE)Sa6$ZqD7=e zKY8OxNALw^OJ&dee88<xR+%7r2S%>&awy(Z$F#7?>t_`H|6%X-eIk{aiY1BLpZVI^ zYfN`g?Zub}_q8RU{w?GIp8BQ7$IX5>>|7b@gf--&=v9BU3kz^ncEg=Rquzj8)A(=^ z>-x@zP2GvHfgXPg9f~EiYEwi1o~J&EFq0Q#gT@*|<L-1P75aX4j!%yIi3Vl7^Qxh- zXgBM6P#70ZBc-^gz+s@HHYU)I{i4-!JRSZ97V#*rSd?7Er`N$7I%MJD%8)Mk_rbI9 z;Y*x5cZC&TY2@=|rd0^4u2Pxfo0YKB^CBPOWUAJ%vGADCLq3^U5Bg8GO?KFAWHyk| zKu^rdE%vycy_Gw9H0=)SGHH;Dr9zskc&Y@KuXDmLMAX+DnakZUs*YoN!=PdW4Di43 zieQAFmZwNSnG{)Za3V?Oq`pC;!ZL4=<S|rHk4}~1Aai6O*dREf7s;lxm;wa7x{ibd ztEvwd`x;`et145POpHp3LidhT)&(q_t*wXhO+56vAiz14HnBI+P8s$9zNPr*8LQL- za-(`iAly!Sg0o-_tp|y=7nU4mVsMKpt`S1RB@24giz>xLlAA)>5#U+t74)@ppf% z5*3?WKL*4x`RdH|o2>8LQw)%Sm<)H#Q@Pq@E{#q%wF`SA;McuSiHMw@6izuASx9=f zZ%z!A-z+qN>8>5@+#J@1b)Yps;OJXIJLZ7?nv=s2eqeZ_d&^|*jKINZpK|S-0>KH^ zBmM-;`_(&F#fdy?dvYR;eihAGTblY3lt}xmw^txHh>xD*aTn~|6o`-BY3=A=+aqlK zZ+$^8DU?@8tspm-HWz><@`h`;|B@b3@+_){8&Z$8;OX^reE_ARB(QPz0}XN3Znx+p zDNjlURDe(}sq!b<3do&>Wdu>x;kdd=<?{+$mu(sOmu$fjDwveyKOE@GL+HkC^QYwh zvTnDzyLp{cK@J&+`evVm8*+85)8BkEF4Z9_b7gMgb7Ifj*>8BJu8b*T6ghc|k}8~r z%E#DfR-GO*xKFaIl07(71}_|_q@P#`hBl(;zTjI`EChQr!UDHwqCYHulj#9cCb)|q z9JQ!*%m^uj3_NehQC(Aa($=Z-KMTWHR{A{gAbwE14-7!#Li>dIOBBVVty{`k*%Fk& z>jG`Uy@01}adOH%0FAk<<5`fM&pC3*@J%Mb{j{x&Z&KrDWwtBMSVIznovs3hkyy|x z?wEZga$>+BN;Xfed(NId-C#49eT)`KA)LKnosKJa@My*WBh*%wRp>_;KuiKbDzidC zVT6{edHLCDVo>N&f+^7$iMe+PbLk6Ka59jb9<vjetbFCRg8JRD+0gW5-n#wSMZdC0 zS!6}>p1!I?u%O!K&`GqC@O@fXJ=6z*#WBHlI1>9@*Dic-n=MTVbR^u%#a7H^nyiOj zoUs0D)66t7^kNw!SE1BXVw2#RcUhvseWS;N_DpvMrqvbxI$+D;{`z_^E1BWKCPMe6 zs=CWH8MttnH__mDAT6^uLZ+^HphSZ%AmmrW=H2#kZ&myHFE7tN^Ln2VF2vwx5MXkE z0kD(e9h)N4#gj-sf5YW}+u0)=q9U&gB@-B9gX>-e&;I~r^Ozl`<qQC+Q?gEnD(Us? z<&xaS8&UtUP{-DCoL07UTe#EP9ctl@>y)5{15U@mY{r*L8~eT8z`{Z&(go+;Sew%z z+W}lOh)9qI|J+<me4fl(ZbeO`kdVG0Ei%aOwM`?(sfle}ndBBWMM0X4v;j|O$$5Ch zVQsP%fczpaB=<PXx~1XbeTt<-f=&8Q{xlN*Ct6bQNe9tc>r>Z^ym-bI2woU^pfDe} z^U%=@cNxC#Az$mxw`b%z^{xlcFp8gfxL&J`OYCDl1F6$gdd3!GJm@l%0^8Yi#PcF1 zGG{WP6z|wDk*Cf}^<putm)znXve%YO1=Mi_aYFt;tT7mdzau^ifsDp6!_e}6g?Glt zhoy3e9H4MR%oqFS-0c?s8!#~fh@<lENpo$^%rHheZ}QQN&^XXP2=7B*-^C$h0UdRv zwMa$SBiL}S?p(33rV{it-AvGBMQ^X#tzjfc{|{#BF(*}aKlvnxK?(}&A=WvcXMf1I zQs><<bkvVPh1C5;f!bYA%(~9@9noG%q<Ghd=t$t*dXC5)2g8i74N{{JFz_2o$79(0 z`<r5V0_Df|c2-3x=mCc+>3AVOZG39w5eU{JQkP!Eh2x^n<<cp#b3FW-^v-wLFCbu` zDf;PXn~H5i2*+Uu>RH(9Q0mKEi?GW61(j^TueM9mrlV~>=<%Pc8<GEv^bQJDaDI4P zl+55krrVh~=w*D)@K-9sMyLPTfN(axA+-JH52$10H^q&z>(XcBqgjtNYA5bsK!*Hg zU~C_8lUXjw7nJ;m4civkbG_DrpbPyzoXw57idyX|8qB-Vltm`K7AkuM);lt_Vbp^j za_3iC-u^vS(>UGD6Kpl#2>PDRVrc8iKE4!p2K@$i%gt&Y0n#oI`)c}r`RYErutx^o zaBrumQve3Cl~pCgdSJgLb^(rTv8KMN&H-BTc|Aa>pU>6wsU^5#>9m546nScLc@TQ{ zex#A;6f3RTybAX9?k#-0VjZ`PFUVGzR2J5Trx7}RgN%%78a;gC?=nQ)(9HozEp!24 z2Iw+dfnf`1T{Tg;h3kTSjp@MySi*q2l1M~S_|~tn@%UigV<aVpqzV!01xCJ|3I&Qw z!8D^-)sHhQ2>)9lSf~$|KJ8*ErkDUEy#PKMH#ke)Fr|X1XHO#ONxV203kgxbv=Z=w zL^VD{q=Fl6oz4v0*Qp2K30-%N$<>#v=D@Gk_|%`e(g+yLruuBch3s>Jl23y!i;>Ak zhE0AV55y`ciamZ+;3`>k{%rZ{JA=pTl+&E@39;hf&>x|X^oX<;yxc_H_1FDHBG%~C zf2-0_^c*P>RWvH`QcqS9WU>?(<>+csw3RO3DNsn>P(;X>f|96Vn{cKA?XCpT<vHfQ zcur~Hn+?X2x)vA-VnfiHy9~7p>V}|p7G!I0BbYIX{)G18V3)0!;fscen|>TGpNVh` zUjjt|bR+pY=4wceic?o8RFsuI%gW%hz{%prDS^jPmUk7WN{hosgLIy2sqkql)<}hB zNY;WHn|SgI5}oNd5h<H~8EeY?*#v>s_gxtg6hlLj;rH_oQp1cskn>O91QRd?7Fpd* z)N3l1d}>wg+FOy#A6)plUzG9UF*wfO76)?FwkB|<KPMjH20ls3I{}O4XQg<f;4yvo zj0Vq>SvcCoF{dbZ{ftq-8vDQ3C$?}T=`bVlxY6_yTgPNu#|C{U!VlZ}flA5;(IiB~ z=bf-Ca#h^P1YEzcm$7M2lHVXY87)9R{N}`nL-}&z(eYR_)o3xQ8BQz0_?<g7HV=+O zo#}G&OI%6htb!tPH+OlydThY{=CPq%whY{^N~ip+Nv5EBZ{7W~>6aX^;2D9<**g^! zd3;iC=So-DY(0$;?pCxYxfmEtrYPU@o>Bi;0m^59Mh=;q>;dJ=+Lf9bRZQgzf#TO? z2G_m$Ws;0kGQU^wS-^m={nh#C_8{2fzxeOOlaCAOz2~}s9OpOPWB2Wd&o?38=VH<( zmEOz{C(mWbBB^peva~iu-6jyTs|3!Q^98tMu)6Pb{VE8KUPro-5=ZTPB3f=})^+5I zFffbV5p<OXJ@V%?D@^5#>S4VT!Dk;eaT-f(%Fa9>7i<*pBlcRQ$&#?1)!*WE7H009 z^Q@=)LO-~d%a@$e2k<0&9{ZWrYG(Ejb&1^3QjU$(HIZ2{lR#pcW|F$Q%!Ze<$3ZBo zm=}MY(7CQF3!x^${c5IS82n;AJ|OL7M0H-qdmH5D;DscqXp}I3nPaaF+JDv#-hR~z zVP<f5_8c8NLDX6xLpGnTAwF%;L8AY^=ushYV_k*^U%8FVv4$R(Yc>N2stsg`<g}>= zI#%Wwg#m&^Lq+?jcG{E*5+1}d&!%=u35reGByg-wnTE^gv+0lWe`IUn8(+E|d|w2` zjOY{OfVAnDc-XScFxyOE$102>8B98W@)6^a4HERx{ul<x8CT6uv5d*TBl?zf4rrc( z*19H?hSxK>amAU{f{<H9d+Eo}9-_io_I*`%5rIZRb&#tvq-bGY<3q9MKL)8Xy}4n- zfkwffeRXf_N0z4Vd~mZ9#*JcGm6k53%A=r)<r4cIsO(N>&x&-4Ro!q8K0`XlmNDGx zEm`?%=Qi*_&Fv6T&tiY_iMg}DJVL0OIr2$sG6TF#uI}JizDq|MW;WBDLb+mya%6Jm z6wIMUO>C;ys~vS)ZOdkS5q(G4V67!}^?2rUs+cPIsI0@-=1tT~!y34)LiG8wDq58@ z)Unlq)>6oi<gi&fT%^!adsU`C&4`zn5_KbTbsj3n<nNwzo%rEr+(M-ZZAsM#b7HA^ zV+FcO1G1uFi_FqK#@qFmZ5ZUbF2XLrLrUw|i1?IFzIfLKZ4t_!_Fhq6BO<2ub2w|} zmdEu(K}sJ(&i=ry)xO7MjP^Zwv{lV{n``(``E%5nyzU}t9B3V)73pgAen5%Y0fx~> z#AcU0L}5^5vCM>bi(kPZ>}c>1hE=mI!oja}elX4nxT{lJX~gNZI&cW8FD1I20cXJ+ zDlCjDFd8foh&rH|*W1a#NB=O-gAUE#X_fGHcDvW&ZdYnsCS`t9O1dL2d5O7XSnBN! zmY-@>2HEfS)-S%NWDTw3$R_jj7``m+JrRthZb{f%tfaZAo^10}qgV*_U(J0Kc2_dB zJV)`wjDWyc=rR-xoA7-hx@*2WOO4Uy1QoiL_pGlRK<EYOa9W_7&;Gs1R0kdkDo<X! zqJ=u7p}rsTt2`F0&^BQ=@G(m%3!0WuC$=9wOHF)GiR`6szUwHb9#n;!s5&YI)cV5H zsgnikUj&$dq=Wkz=!NGDj%-ui;{vaZR1MK9RQobeO517n#9%<Ica1lpv*^m8bCnf< zp_z#(Sa}f62iiXB2v^R17Vp*zirqI}5>C;CNoZ}P%mi=9ZX1^{$I`J|RsA#N#qBk< zL)QDoHaZ<H>2-7j6PTR^50*UD5aMOpJI>jm#}1UsK`YOvDC6n4?9<C4e7&F`8Swhn zH#(g2hs`xF=-1*EAZ%iI1;Z)>#lZV!qBFlt|9aIYlu`iA^nf*-?h+ZVX%J|#!u}5} zV$`7@)=nH6feltZT_oveY>%<8{FE%>NE<x+K)*>6mf9&Bim0$Rf=>kBg%GcGYb7~% zS)wrN+vADDf(fu#-gDyeLF}Aa6Ayl3<6wtp!3my~Yjj;N>ij*znywaQ@wVaKJW3Y& z+g&U?^N_qA8FHWmgYtd~*uy`A5Bn<Udp<o^-<ObzfIGSqCe=d(Z-z)y=Li*04P)UR z$!t^X{X|wfuDG=N%`2aka@CN9fz=W-M{qqV3`kw!9_9371q*UWBYxL7M1NxtxkZ!a z@HylxE!Th~-hjWy?%IKg3x~5W*mX&wkz9Of%CMBKWEGh>DoW-U6%ou~RsX5H)?^j7 z9T@#4ebb;4DSjEI6GR1Y;D5w?`HF+aHf+x+Ct#nY#%j7f0;edY)6*t)#~>XoLrzU3 zPsp&*UMmxC^ed1KW5)UZ`O>sm8j)%uP&x*g!ib%Ad~RwO!JoI)py_)bhIyJX!$WIR ziO4tm<NI<9;qZ^pA)QdCt{I7qB1R8DDLP<OBqCCPK|-G+#mh)DwTvpnSjCoUh1S!_ zV@nONok7ktST^0-vf3d9k~mANWoL-i4)9cKxj*4e>KA)LvfEdsQi5GzrpmE`U|+D6 zwEW6~PsllOy`6%2j)7li*Y-*rLHL0jl;mS;ACK>dXa6}sKjZfEaD7n_Ml8<&wRu`O zpxyBc(%OxzL`{e1{-PYf(<;p(B_3@ec9#M3O++qB#MJmgp(04QSxCCey;b8Ip;y`W zaN31dT}b^cR*9Tv4$9A>1o)S{m5IN+g+kb?Lx2t<ZkK4(rrYjf>2KgTb&1a<=G5#_ zFzORLPUA^~!E4sU^W=z01E5CwX?7NU6&MV29*D~amv#?)U4cJ{y}e?W@pfO_8r7kL zl^2_*CvAK(iu}V=Q(d@{Q{!ciH8M7gHv=8q*0w!Z`2+9M`9y`-XFjlyx}l89XUDF5 zV&XzBOp87nH{Usz+__vm;(+i)<0)}(@7DM+drK9gz4E+#e-gG1;@ykIx&H1Jr9Ykr z>K2q(9ZlwKPz=iGl3+H3#Hl4Bg}nC{3RkI?Ma8To?ypqF<z#gXc#E+o(y-NDpiEmi z_q!OkBZ4qttev`hjL0tJlFH`kMt9Zj>rK7sbjr&j->6>Z0d~{P@M33S9dD3SP6ABy z2m!z;OFwS6msp8aZ7$f+D`|KWs^kfgcWe{9M-Irq0%`&VJcr;%w(Pd}#i2WDtvMgB zm@(`=EfiC@ff<ajq1MQO+9WV0kMj}ucCjuQ)fI}1_KJ9V74C02L?<*jXF`T2zG0QM zc=m=SV)ztbGA-Q2IukzFk{jYhPlbcDDevw+9hcLclVrFolzXCiu#AQySuIhZ_X?C% z+IvoJWo*c^uOWmHs`MqZN5+Q$#X>VlWBfX|9&e5oti{CihYyIYjq`yizFIKO)UtNa zew@6`^(H&7m_v?K4b2{cXfl{bXB|cjK$t!2@YmV{%6*_IatrwCvqP_JNd`#K2FFJc z1AjvxJROy-3K=NVeGwqF^FBStqYxMIwwH-n0jVi5j5<MUYaCfYzU{D(g<oq`(Y;zt z&-}n4oPCw04I?wV)y!VH$uKKeuF>bhaKNO$&Zn!*4VaBC+79)PC%3(h#b(54RM$ys zNA7q^UpCum*A;h`xEwg8kw$Hr`Dsi}3`RL+^3Bp*;C@T0ZxZGY_5Bw)y*ONrb`@X! zj@9?nVdV%m+7x9s*PcWIu4^GnP2(PUlgU~y*{I@~?q&-Nfb$v{=FBuAzD!+#j#B7i zBD_Pay>Nn-l8Qw<w8tm7$`3uaHDhtZ)>$Lae@v09VdPH=Ho60wg$3N}$dSlLFgJF# zl1C3Ws;~XFMn#za49xI;cj*>BdRHIoE{BA2Q6wOiujX$O5)OB#h)7T;CBHAiVjjTJ zqOiC9jlRvIsvpj4Qc9PC-&B$8qr8oAxVvxlY}}4H8j^uxxb=(YHyCAW4!EZxvysPr zR)#FmU<Lff4e`R+`Kl$f(*AmpEg^&OtwvGubWjNJ#6~hF6?E%oRzJtoAYXtEuA$$= z^~IvaNyBs~*QrOtNsxIf-K8C)N0%shkkR3_QY%~7Zx_^KHEaP{B}p?|-Qdqp<_2dV zyv{jn<gk-z!tb=RlElv~mww_-4uOujCvq}Cmm)A&?h8MgWj=$ITGov|e~77{=r38c zYR!%a(al({i2U4v>s_WKG$Kt9a*wT(u}*aX3<Nqpa98bz>J>W#Xp>GIvoTqCXx6y9 zpGm|TTNkR)8+#ynirh*3E_bRaJWNLy-W)5DNDQCk_aGuoJVZY5OZlFe=xy2URNzI| zD+X7rFs&{xjOLfueq~x$ZId0+6&getPT3Gp%m`%3voVcwKsoU-ha<1>)uFCBQF;!R z9sm=(9pZ6;DMA9fQmY^cfNOaPyxGJh1w#dnqnie+LGV_z>Jd0m2cV08O9D~Vy;~=# zEHLh)=sPo%7~(PLN>598gt3tB7BXTY>Z75agNvr6ttH>|Mlq6eXz~YGqXu)pkE_67 zGEL=#6x7*xmOc8tSC@BGz5<DIh8P6X#k*g%W-zuT^TvLLht+cL$nLT}y3)gs+kUee z46XK-JrCB$s0c>ONLby<R6CqApr+x!f~j<%X-kRNg`%h+7b2MskONPUHrv?K|8=j; z!s0ca)85q2o+0pla%1;2fPiuFcsq~ljE8EJ{A@kLo1|qNBXC5}gV;v)tw&|~mb+H* z$}``RgWMT~&Nx>brYLd860mi`1i0)u^qM`CDmGpQ_XRF^pbk5WGsB-A6Vyg`!?}>2 zC_4oYns^L9bghE4zB{73(uUxWUlx!doogaqY&<7x16@Y`2mhr0M4N?O(FJx|k8*f( zenv*z#MB9}(8xVwq!{`fj9g&EyG=57*Y|nFeokSgH8sxqKo8@0KJjFVB7Kw`aKjhq z2c}8pG-(h@v4Z)#PJ1$3qBng9DOL7~;{XY-v+u0HPW}3DX@C+HU0T8!ET=7&CmoS} zu>~T<Y#G$(Z%Bvd4aQbMZ3XACqL1~}2kWp|HU)K7fs(;OEVa>ABBUhfSJSxf2@~tN zow;r8F^nri;Ps_F>x{eKV+~VN^sFsc55bR;r*z%I2c@17p&8^X=6lH{TX`UR+Ph&i z)$dk(_wmriq^hMo)epy>Y8SV5!BbE<nsUd(7!5>?D|@|>gv)g`jTCy{l=Ahuduq~V zGHk~I9DWKBR{R(h1)Y&Gn0a8&l4a%&3Uwf;fKI&am?>(CRs%K^I5zvT6B$7+7p>q^ zngs-|bYLLM<a*ZbkOW%TfTb$JzSq}|lZp+b!PeD~f_D=lHArH+G!NcKZIaoCm{v9= z#7xUp1Cn_?S2@Uy+*tEQ&yt?47IqFUEvT1@IKmH3m?8r#9&)Pk@3y(WOT9|v0snk% z!+oY)Te<!dd;rR%Y}$4J1w47hyQCXO(YXy9@8~Kc@i5^pPTDVHx0bjy7Y6m7L_(~t zAe|n5QLN;f8Xxv656OS~aebm<0|z=8m^fR%Y}TK?lMgdW-rzX##I-ynE=~C%tDwJh z$5mLo#zpQ(8+W-wH<lAANAE=>h~i{-ypHF&s?Ye}%0eZ0J?Jt~7dKFt_@(FGVmj30 zJ2i~6-X_jXNMHax_@2`=Vs4u@=)gGos-+A4(W`s^#Hy-RW3fnPZ;t>_6)>K86J#(( zv;assrM88<W$HX*?yI`xn~x)8lxlW=@S6Lpq;h=jr;qG0;(>vMKPwg4435u8kYQxE zFKnO4@~;*-5Zy4RJ{qyGyC&EQj$w_?Zf}IgB$irRQ`-pR!M`*DyuFQ12jc6HCj5^& zOFn9c{_BMgx~?8W(v~zU=5hY!A~gyi(1i~Gih2~mpSRV6{5LHGRQnr3<&8`9;s2Wk zP^p7Y<+JDLG2##3E}>q~JNP)A$fpNU3@+cXZt8<LaMo)av~UFFi374~WONG;ptQ^{ zlj}(CwAw+sjehy=l}=Ju0Hs6(SIecnUrJ@JU^2)p@llvI617+XChxJb1h>a7zMi=@ ztAbhs!#3vRB!DH&zlH?wCh-BM{}>qGTn^L64lSHac3CDd(*qRiR~$py^uk>VU$N1@ znE)&qZPU4`*1*6~%$JeJjRUrSR>m8%1^`63{#v3JP#}BdjXK}!p3s-QD{ty(5;G^| zU$zF-BKO~;P`GRjhKE<@XkLM=n<&puS7EJ#A{2xw)}PY!(JJ>#59ft!I;J7-F>NOV zK`jA|tzu3p*h~I=K`2VzCjbHQ&_Lfp|Mx5&T!^!^>k5vAk=R~cVVT;?Fn@7v-f_$s ziYz)Bky&O}0tiWt_IGjrtt##~k_tC7&Zj!pCF;jKua?|&J=8Z{96?>NiCUJ_&-WGy zKAv}hI#9b;ptVQ0u<~roV#YztCV;|kZLAuc>{#AyJnA~dJlg$b?UJy`gN%S$Ah4d% z1)0!ww9PY5f~q+zFrb<RR9nitmT&>by$1_yH;JqW8#5>jT4q+?rnvp5&~>%L=U1el zBkyo;Eae*=S|qyR&<EpV{G8uW$iq8(3qg-*$%X&BS#7w4UJ4M&LNCuXElY;b%>FAY z?bRAM_=n|>t%pLiy!+V5{y_dZM92Rj%kZrEa_E>z6n$JfV!j@o^Q&)kvIOkb@CFdx zXtxuO>%&6`m~9GEM`w{UttO44C;av|QBrVWdW#Ws<n2aA0BK#PoOj3aMdJy)v@o1T zpruSmzTyHf5;c3>6e;#c-^>7h$r|NNdUm$xC@b4Jh%+ZkPvExKaFpdkZl_kmSfWrz zm!Bedk-E2lJo_N&mu}SV;y<Vc-0ar-l6!b~j(MZUPr9O6FiUv3LEfL7W4>-1ODXWm zIma2j8d@oX0U)T@Jo1@4%c6S_IyEsGSdaZb)#-MGV&W8jQ4*?(fOXPC_5L+*JI$>5 zxv@vF6ovYYv9#xBfxAmMw2r!@V}9y!a$0BNYBh`|t{B6F>8N~tw7J;$nKce2&|St_ zh95loh%l+=b`$r#XVFe-Jj*aHc6@q0C3ZZ^J8)eI!i@=RCi*jY3PsUrDTTkQ&D+A5 zR_^6P@@CjP$HYrOqX;zj#^zY^v(#<+^p)4T?3LXcN0nz485JCZ0j?04#O+@GUQ(Pg z%4awYL%~Hhv4);59)8eqv>QFU;CzUQo<ec=Y3nVw_A{*o-!6q5VjOcS6uZ-!3N}S~ zdPw;lKeW)3zrREVYGm820hm9ksC61X9GYM2ZYA{c&?kz>ptqkwS19cr;p{A@VM;1_ z8O)3@0Klq{Q>J2L(Wy>cH`j(-rJ#qH_a@&HDU%j21ozbCtMkZ+4A=`inQF10A4vXr z(q#<I_@)SrrkHVdXRhl$rSiaI1vqQ6b6UR!tuikeCT}Wf$<=0x7Qr!@!^jF<1JdHW z<ihMU)2EM8VQ}TsQ3oag?dDCVKDOPGSs)-M-}Ypy%dxH+jD*JhZ${^6sfEg09`U6y zZ5$pt=Cab@r6w~Y8(G?Gaifu~57&6}>-&YR=fPpq_{R69r=N?ki&l@TWg2-4^$@r5 zOz!E)Zr{Eaxxwna&gSD9eG0T#_FdIlnpv;J!qn3s+3D0aXjJ)kn+`if_)#m>yef}9 zKvqcm8ShVhX(5kB@A=cPKKC-}hU}RXguW!n_ceVC<VLb`a>uJ+V)nL#|7p-$RP-sK z$?U8egl!E9r%faWYWHA__5(&okQ3tMPB;k)40v0k@Z+#+eUR$!01=8J%4EuRrD0<V zF9b^uJewcXUhr7(nr&pRSRmcB=Aj06;|We#$ZKQD*6I81)~!*Am><N2UGtjQt;!d0 zU4t2?Zb+5=rZ3A{$)XY@^LKL@>MBlfN3Y$jT6q7cH9JL|exgZ%pcB<j>1makuiv6E zXdI@Mlo_))GX5h?8p^NGidaKwjl{o{fb;VTt-Q)_#bqX=PJOpK(dr|^mnd&}5Wyfx zx{33^BD6S+))mklsL50I;_PW-(_?J;x1DSD#a2NB#w@(Z(;{=a6KWl*R}|Xm{4|{c zCo&gvy*!ySW*J`&8#p2Dq?=m!w=Ao!Nn<N|ZIH3s8b}o4jkk5+k6sM?`;g&gZ`X%7 zeP)sj^wD*(QYOSl0cA!?fasTkZ?%d&a5V0F)jSkr`wJph(=Zn6{@&;X`}2ZxGBQBV zem>2JV<FQ}5Rdtr9M)imGZ2EKh<e{{H4Rm^{p~Ohmqs@D#4woKUWJTi0BpV#U|A}j z!vXetp4&<LHjDSNTf=)+PcV5zCM68^ppt}!K<*Z5lDCe(4VEfpac;(~VYAx(!EtsF zkXIG&myB*P9+aZCjI|fpP4Xc1<b$8Xy>TukN_ZBDe*jp{dGOmu4JtIl=t;!Y!bXA~ ze{|SQ?PtMDA&%}RkTt9)E$GU{huH%P6O8>t^N@v;$oJN-zXI^#$xhV$A5Q3!oh97> z!sL2+N4)C53Hd^zn3_wDvyMB1`mRDp;vDI;JF<l;QlKmpY~69vuRmOPmm(bn$VTI~ z#-i9Rfje6c^@C(rEFpwX>L>;mJ+E*hE7OQ&mSK-PQLv`B&pwj=xy1pLZ_R;v_w0KC z2gmRsaiz@8I}~<a8_SIpr@sfFKX|MEKJNQ#lqC~U#$qJQqvKyd<YPm8b3PKnh;|QJ zi!~v)I|r)lPmxQu{;cv{p*#<uAFk>EpDdx;&m&MU>v9y*2Tw<rmUv@+r`i^6q$d4g zVbz(3HY5}v2m2Vt4qAS7I4V^@(^hVZ@(Z{RF;%>FO&RSNB;3Gtdt{Z0K!p=pW0KR~ zt@O#NJE;vt-=l2EG-ZxbVB~(q;TG%`&sz+^B+<q2s-t;wr)ahB;TbeC1etW!7L>!D zj7J^mJK3_XC_m~jtiXGk78YxN_0xR9x3-pYHGneXci;eRrbcJfgoY7oesfeT*$Ud? zX~ch8ixVrQ+TlqoiPD$@3yUHXC6wHZJML?u0V<7|mvzYbR86^MDlydd=?PzHsg}M- zqlKbZWs1=%<{VK^m=zX{iDK@<<+wrs;$R`hc9qm?&N2pB;yv_CLt@4rLMppK9qDwz z3~k%p<VS!Wtx?I}-U96ZX&Y(TC@ux+2WX-+|LP0KF!H@l98h8Acxfs)sRT0qp+~~K zX*Vyt;D_RIB9l|SNU-r5f<G2nqM-}c*^5=2smyt?g->m}Gq>G6Af(dz#`Su|=!RSa z&+gJ#PAkrQ6jDj2ZQvT9r`ldQaaLr?$G}cWL!^Az0+dKvJ+df01BJgkJl9-Ky{6g6 z;K;--``0Rm{J9ZlbHp&m{yWKj)n3$B8UcS<;z@z6GM<a=8B+}K-98UIPuM-}^?J7g zcnC4o&62Bqs%Cfiz@ZraO8}9FC;4~foL!Xe|K-O07sU@A+(bu?J^H_;ESTHF)s{<P zOI?q0XyBLIX{Z6{V>Y^gTn!#<UU02EZ8_%P%}cWrk0xE>tFD%?WT<3KGZmtjzWoeP z?S0ljJ1!9vV)Qj2=7!}DsV*|mg!nV5!VjgpK(;ek=H>E6?$t^wN2`S9tlRE@b1hP7 ztp0i{)?WYjf>;1o(vpb<xl3%L1}Pp}`>&Fa#M=qjxpYnl_wV^+KxmBE2%{O0$-ktV zx<}%S^#;&TE&>{NSMsObe`jR*bB_IbO^Xt1&p0|8ywM>*yIEyTSGn#ct=%|ZLSk6i zohx7mnMwCZP6|>JXrPqZUg}nYPb{Sdfd1&&S9|{uMbP!2t2aNOO~X(Rm-m7!dY^>< zGIdBGGx<4?B~foS3s3AqYB@Ryv#@t|^KnNhu&km!Ag(mo{-KFt)=M)sTB@yi*ffyp zlS5G5^c*5bO2MP1si^Tv7n=P19hP8+`{xHLwB}{xK^hTbx*>fahT#fQcDEoWX?I;D z4IJxpS4yW;M8ou=rbf{21zL^~lZ?w*%^iXvO)fw3(%8<hv!BYVz5nHD&P^*uj>^$- zeox{|g{{Uw;lcIKB99xC=mF&qcLXTtWD9RaF&0TX4DG;sYHZd0D$`W?mH>%LjOvwT z1}_95mG+}(H$5uVOatZ<K28-TNGuRKaI?|t)yqKuhjlN<A`Q{Cc9u|5+U*oF0$Bv% zRp?b`nOJviI-VBf$6`7OC~*8dQ|?mM(HtL7TBa@ctugsT#_CsRPB@Z{JQLfcNM$J> zXIHM#t;tXrcPf#ITw{5?p$=Pc%S6kMTTbsIzI#lnNdj~&|9Yw(ZerTgmn>I%X9|+N zM50qhl(nl5EGl1&x44r1nj|aI{_W2Acl{P!Q935;7Y}zZJXoqSz@tIn6Yfgoq$p&Z zWsm*Q$+95>E4QO><PV%R*gGxWS8!|qmi7f%kWuMw<{z8!+t2a@#$i*G%6BO-6<@B& zm`VF_hfPG3@zgPK^jT+d^&oV-rJ^!e{}&QhC5l?KFwf}IBB}}Ig|aB3{H`ob>I7fM zPAVHZZfyy-a^-DAA@|j_@^r`zsTK>{kBva<*p8obbJd+zBbkEJnFLWpOso2>gyT@> zVUm*Y1y;bC;}CqLf-tX4hdV4>zgx-zqXXd(n!D9?VqUOrl^ibG&bGUvp36!Yisf@7 z!4;v)IwiCys6E#~Kq9xL(8d6EmW9NF&v>V|NWg>u{$Z*wp^u|)rTfB1X4#Ra(QwVg z#s4IO#jH=kBlWiQox;XZNal;?@QJMv#@K6KRSEtUGstjWZ{rx!bb%}L9v-4q5S2G^ zH={AX8n4fQCa`&bOa3CWr%$uA&WnZ@)MnJ|bGlO}PY<fZ_YH>AKQxY=54-Atkeq`D zV?|^z-;1z0@#)Ior`o`Me-%2d17E!~R+?+XgW?=tNVR5k6;3oExA+WavE$hg=qV{d z*B&|j^=)k1v01mE*0Y35`+KHEpAjc<AlG0dZ()N9{klI;8q!SJN2Kn<NzYC6!G>oC z)_b;eafvFcS~fgffYT2_9pY<J&R-vvCKeF8%Rm(8YmN}LI#6-6*MJsvR(fY3WgI}f zX#I;v&S9ZZy*PTKi>tmN=2x=R0tE3hMgYLXwt^|^1`QEwe8_hz6v-V|ktK~Ef<yHn zXy-M_#$}1}jX}<rw=qc&u!2OA3*{0CsHbvKXv&vNgBY0Swcv`fE!3QBDx7J+eH@XD zD8A!(f-f#7%cdy<Y!d?Xf&>OyMa9J83QQIl-%}cVpXi(h>oE~cl*$E!()Ko#+kcB} z6M8M**(U5o6)z}eQ`IwKK7pP6oL`{fe=-Y+pD%=dj%Fc9^}xgv#mt<xl0{-n+3swd z3d;2mjiz*<^T(EqLvX6RwnK5-6@-ednjTjP7K3KE8VAqy8ODFKZ0TGiQ?8SbDe9BY zO-ix$G_?`atuFZ#!`6B{;lmt4aZZuD0D4|kI|PstbURfnc=7Qc^t=2L0?ptR*SB}Z zb|(61#;mPYd3P!^gnOQ@+u&_p7gGvAdb$mfYZE`QLcoqUT={c_(<|+`U`$;`_aTc! zFhS>WF^<+y!UUn*S^Iqd;AWh2*!Bv*oco(KkKZ71?D-4>O~Ovt{Z9q&F?*z_vh%pN zSkj}GY}j?@cfx3X8QVZ_1v{=f^+W~(8Re@S#~<=4OzM&CFIA^MRb3@KmXcQ8H^WFO zx<qa!$Hl%JpB!o(G-_(iZM_yx0DvPnd)<<o&`_l1C_4pnzJ2#lz}x@F_+E{X7k?;D z?E1mb2O_jY?ywRU89H<Dj6v8DMLv2g3{$Tqg$1%U-=RGa4=4bTRLl2uKIyxBr=di$ zbu=6>B*pZ~<Gs#(UuKHj;R2DdKBeNn!l}6a0$-<PM8WV!z(Mq^s1h1Mwjwxt(yibM z@*I*_gFamIOp_<yn)xQnj+@B@TsGJf_Ug&c-4~qYxdnSk`t<EWr<UV=`?km{?Y?|2 zj6`Q(QhP~zCEAMt6*V}tm&&-u-fij`5l*c#mCg?$7XGrY1aRVV1f{s;l8pvg@%Ci} zYL6UAkxrD;Dlf(rWGBe7dk!LKXm2uS>w_QnLV(htRuncP!@QFvWJ(v1J*^o7aoyFF zIj#~G2xi=G@WX}}E-6aO?=3z&t8V!?E$a=<c(qc6gID3mMTV6rYoc)&V5%dd8xN$C zeGa=`$njK2)&p+C&kIYevW-vnz7c`<@4)6!0sobuCa&?~Z!iSz@4_*afqePltyB)x zREoTQl>(%XDph>}+lurAlye%BT**2jK{|8S06<*Ck>d^uriZz*E3cPlKC!{Z{mt`( z9&Oq<R_14NKW)kZ!WT`>hiOfo3S}EDUzHcskkB=efdtP==}^Ko98IWS$)gPapEx`4 zxVJx#qPv@XLNe*)tTdK*i9t>SKzZp*(KEfI^_9}a;}V<sk6AEbP!#NccZAa}*sx?e z80;LLC3<>enC>r$25P$<c^iJP9mm97TP%eN7`uca2++RTHZvRokXgbdQv_6_wJwqS zmN*UuM9V^AxUjX5%M)Ro0mSspDUCZ}BONGH_wXGcq68RD>I|}yv09lB@r?b?{Uc-a z=4x@sGnk3`*w$i*Vz1OYYy`i4MjOrI+Quskh8mlc#6v471ZZCHiVKs%GOup!1*Z<Q z?l|^@SY<=1C6pIFap&rnC2H%w|0;;s<UHP=SqoWs1wlG^_O3xx3JsmYq)tVNw0wzN zLlRi~R#Fa?<8KAdq9)AOyfbtlt&eTU#<x*5>vzAp=cth4BmqmSX}MuI$8-*3>qJTX zzsH(#s$6j!9=-LsacsPs!ngF_-LjGsw3Kq**@D_XHOE<f6l;WayCFL8A&5=_uy2U_ z_ka~;8vdoQO&Xb6uF7!XjD=^UGUQ&x#{`5~hO17xl}97fFUP=pI>=+N>yP@IKu!fS z7CI=PHcz48*rulOr*Q3NY^GFm-$Px`A3&?8aHF|%jCjAf%`;;D-a%4lM`DU><4ts9 zQ-Eoy!-hNj7RoXvNGR7ry9BB7Nv2DY%_ldGZ{YbRM5$2P0N)0AbH<Gl9xi1t#j)4g zl-V$fgJ2c&=x5zqY)OlyZo=i&e~zkzUJNo!(~06!V>N_#JKqOw1ycMKL>x+vaUAFR zd5y2}Bhy4-a3ag<EL>ObGP5jRJR_L0o(+p`*agtE>~8D^>fLO^{iruX9*|pXrwlO` z>l>O|^SL+*ZvStHK;y7gMo_uE=A)@yP|<lm7VkdrWJ#X*KDNqD6V^46f|VZrzG?)d zQ%%8CW8AuybNz{^K*pXU1P*5^wC%a2kbkKHC3aZLtGyy@R&Ou!wcv&k2t(66=X8GC zV_|?wD+{MasLID`3Ua}~hsrchi5hQJEbGw)u!L~JF$0|Ww|A}EiU;TR7<o^;ypcyC z6{mw4I(3?|0X;rQ;FcfZTZC)a1%qxS&tM{v1Z2-&&sdvV9(QoZ72g7zmJjHDYh#sc zR3eT)3a5+~3ad;IWJLNJraCwhI?W)Fc=2@s)q|#8zs}hROze$w!GXI&9cmZ!sxZG! zQk4@ckFK$I&YT@o+I!Il&BMkqKnuu6*AZ&zabH06#alkBb-8J5CPBYoc72s&5>am6 zA%_IJ0dMs`8>SeYy?pMHnGs|lh3fuhz5eT$$bG!K7_!OWLt?8AFHM|$yIIj`&~PRO zC8->*H{8O?lckQta@&-FX~%HXVW$EOf#+hc7(yU{i(jbGHXTp!p-%px=!ye0MWW>+ znmQ9zvo~@kMcysr262zUk)J%VONYn-$}=D-yezT*_QC19alK&YzIEd8uc_3ePa#DA z?NY6|a7|e}Y%J%HmaAW*nu9%#ki^tc5R_#=jBSn5NTYh#XSEes%L91;YQ^yJS7RF- zf|rrI0+J%|m1J0BR@6`b7Ur$RpVICLE#<q9dae9m_*l5kG!#lv*|KJy4d8SCYdw{O zG-Od9&6KdBS7RcP{UyRl)>qqrK|<f_FdD(tZo#-jHQbC!FdtHnpudU-eRQffQ8L>> zfUVP9!IUG5wnIfI77H`aibGMi<#=Wmud*plU-V>f$SI~@)1?a;vyh_62k2z&fZgNL zpD1RcqFL2LxjC8L;r*A$>^PHoUn7^Q$)G_nK*E*Xu?BMt1OM<Q;L)i-!2ytF2dqkQ z>r#O>=vdOtiRI0r^SeFT(h>kY);6j$mj;spqY6k(n25so<mtKg@&oWK)71R$lDauq z1P-uG6Vv@6fH$_k+Fc7YE}B*HD#&>I5M(+K=NWU;>6DhZUtV;i`7sv)f=CvV`=1f% z+MeMTpl5x0XS2EQk_`*XDky4vM{w%GlrT$cf89b!o~g(&;l52ePl(YHx}IWoKX&{I zkl4KsKj7sVkD5CbE@e*60Bkvh$R=)z{1})+LE-1o<EULQL_X_wI4V1Ma!psFm~9w? zL6J4M0n_^sT=(P2^qvhjnLqs6_=Gmg&dJVHN>d=C3vvZnzeYoXQ3l{*HezF_7p3|L zfo}zYN%G4;l(GDf>hn#~k#`74W_yon4bovfZIW2Je~sIi<I*X7XA-o-Ze?sOh#x22 zbX`q0Me*aftnsirTVi3M0V%K!m&jo;B5Q89PHL2^A!eMR%Iy;q(cvf&jy|#Jyj@ft zIn=b(30%2jtmyjgsQwY-+ZWB(rj*4ZgmpPxe2i~KJL9Ig@p@Q1#x+WOIED);VXnY* zsm%BM7FdYIJ7)PDKHhd|{msZ|1|iieX`y%<{1On~0o-TH;2i!Z^qh!n|2K&4Nvph` zvRJLq79${6%%sf2jv*_nn&-z`2yp)6Lq>SONsCm<0(qX{rO9YLfrKNBq#uQL<bM)x z1;?QItW7c92?J95k|blb*(mC%JD+#g6(G><UKLdi;o#DNMT5o3V(RRk1rypb-_jaa z{BW!!RHFW5w&)bZC}U9^V#?V9#p~bKP`C95XDk^aG7Oy&q@_d!bKaqq=WVNn{XCnH z1YaW(_bfP6@Zox_b?#}xrtn2A4Ns#9y>w<Pn1r@7_?~;+t4D61;WB%<-Z1iIq(@ug zl-;k)x|L4ha@DLmSIHcRg9Qr&&lSgc(jV)nwEuz&xA&Oq>(b5Y<lX!Ql7vgvu7kRi zIkQzJC#K@eOvrq&zF7w2qEvL`FlF&y6IUx13aLut3ke*H56Q|Mw8P!vFsukatr4?; znY>X7J=I`jbptMU?*sww48vC}T56=r-(&)lg1d9{+OrQqmnGTEkzoFBoV{o>obPB$ zb*tUM9x{IwfAmMKDTa~*;%T6D-DPGA|1H$}nC_A6(IfTiRm{op6neR>+kWhGK294z z#=!fOav2+Bh8~NwHa2ZbQG=5>?}1>Qg5LL>dX1mUCAK)IU0;r@j*7WPNQdCqeKXeO zQAwPr<ZU|&ReLFAT29O*b`&9xk;shou!S?p=llq1vp3S0`5^6NolB0j3R?9)4FiKL z1Ka34cUBIE=y9eQ+h4{vZ{UU1*sfwpPwE<i^HK4xrTVUy&1|gURs={-CBth=h{I*S zOuLA!iUOoj9}ju{-St1y<+95gAlSx>iuhN;)lCf#l_5%9m~qgiFVg&6vb8nB&fFg? z-9N#XfUL~Bbe<tfSN5JZqsb{4KFEil2X9|m5Y{?)UIu&2M4}Q*F_`z-Hf8Ca^BUQl z2DsIo+%ct#n?cQgC>;3+W7nu7I<s`fIitTKyJGc7lm3p+p~)p-)8HBc5ydYtkr&fX zi1y{&g=V5MSLQ16>%u)xC0-*Nk2uZ!v-ECR#j}8fBAl-&zqTl=2WNL5hL}L!YI`gw zv>2?B2UwyJX<&)Z@w948T55ykiw_mmx!mPzn!sU>O`>_}1<3k&YC3Jf!ixmAp_BJS z3fnR3KS|QDSKMc%!av=#<1Wo^=C|L-gulssDwLdL`4k{()&%;W^I;?z_9ptPkx&wn zE>e-eU{k~5eib@Fovi+WyOWmm<kLQvz9jLX6&_K2?o#3iJ_t76Pd{<14`$Z;P`g!K z0-3H2)3xI+$c_@k7PdIe3=ff(6>yquF^v;onEY=g{ee@Who_8Mjp(u%h9NjJ2|?Iz zIy@5w2HMXv@~<aBA%Fm<<<^MU*m;OwTh4Rm21^7kGJK&<KZAUTT@m@B6>xXX77Jy_ zkS%p@+S@CgZZBAIZ`aTI^aY=WOVbbtl?s4Mbbb~1UGMc4m{v?ie9=LF0MekmQ^}#| zp`Rn+^5lk?a0XFp#bC52?af_t8*uMI7JI4r@Uhd~c8N<-hjhE+2oCNop^%FDJ@})C z{47K}mzh7f#$cHBJe%kCqGFx#Du%Gto-ojA`nJ8hJ@?*@z*VugyJt7Q!0xTwp8jum z_!#W%)MCqen#6e|?V-ChQsy>p;<-9{`RSP(LqZGG6e*OqhWo=eQ^^*IM5yWc76B|} z1sQUIcIiKCf}@M>fBt?hWJpMPO&G8H7k}SnM+h}Xby!F2eqSS%o5y-UBYkfNw!)Ew z2LchyM`kPZt0sP+yhKLl=>0CSa3BRZ#9Qe{gK9E^F{Y<(g+n((gcp<v&CPoTwmQmL zYV|B?EquDk#`TC#jIxyI!c_{GBsFG``>NZu9P#$`Tp*rBe-Da0XnDI$c<<7I50)9v z8UKhTREX`!I{<MYt8?P<cI6f*sAQ=v==`T0XB^huWZVqn`_VWcJm3WQev|-bz3kyP zarVT3fJ6;#yxxXo@QuH)3t`e$v+5%^iWdqQqD5l77LVgVZIiXrR4cwRMPuAUZ=22h z11j;qEU8WM)c^d7f(9JaKW+l8IMk$oEgjIuy`GcPN8-+n?7zFWtm^G{-s}n2F?88_ zRQ27Qo9p}ihd(p3v;h}bK;sp?SQUDmc5^^z=TWH4!);<)CV;FqoD2YU3=fzQla?1L zXg&7xqS)v^WHT|2!`gND+UligV1duW9a>dlw@--`2~nfyTN&6#0f)VM=&i3EG}Ay^ zL4q&ONn8;?@&&E#a5Q6=GQGI;)P{nrAcX@2snDMsSra@}u`Pn_nCzM`@d1t^i$XqN zgbSW#PE}f@dQH(^LapVfi>ruV`jifC<aX6cx;sP{mi(1{SMtTn9t1hd1T^YGxvVgo zzW&s{#4Hh>#b3V_k?CNXR&aI-G|wQHrEnu1M<sbm+LLR&L`)O&CP)fKjdW>M)Q{n3 z*^A2316jrID~!O}Sc01IBYx>TQ?6m5i7OVnu}^!`YCNs~a~^f-doR*6!03p@T_33R zV%rXjSq@2eLws<bpE0v1sYuq*k&e^9YwyhRs28k6aD_1%(F~>YRz~kLboOU5D9&c% zp_>r`kzub?iU2BfkCNZZqxzsxo!HpIDfH!Q-Q$EptLK6>1q<H=p`YO~@!u{Z9Hx!u zdivDJP|k#<H~Ie@m@^zcAhKF@Xk#=2;`KQe0AoO$zi^qjz9LI_$9Bk;)Dot5Vy#rr z)!Yse2F6(UYO91^Bdq;&T&Pm3Z<Z0H<6s$q#z9z##bc@bXVXK9cZs_=Y$3`Ze`Vwd z7HSNNe^lq{*u^!F8qAb4kt{9+p-TMh$s93gWUW_z$Bm}a{pG!THZ&{;QB*Ke02sjU zkwMGa(xVv5{hs)Mfz#^cWm6w<CQ8ICDa}&vP>|@jg%i?@*qKPrt~nyv?<mWIoMHO8 z95EQotM*Ld*SbGke!OyCf)<M|e>>?ComKdSs`5!TgzZas489bI@=WN~Q?vfTPRQ`_ z$f>Y>Jz*9$m*S6J7kCkVtGUlL-lbAbu8&lK$-PKPkc8S@)!kClW}h`$pYJeTxF3gE zUv=e1Q)*9~1I{poz7H+STb@;7p<Ygv^F%zJ8JAiXj*`(YWsvcvg9p$TmBUct=L+jR zFmaZw+?7ko@oE240=uLD69z+LAs<pl?3L>i<23n^z?{f4H5xI|)7`CWnw)(>s_*<r zcR4rW?!QNZcxe`xVF{GW&@{(e;DO2p--H@Zle)n*=1sm+o`uY&>D+tIj?ze<TTPM^ znW>Mk0S<WSUaU3Pc%3%yc}$|wu(orYiAgm|*Z2x^G~q59Hyy$z9gsJy^4NlLM)TkG zrW7y${uT=*zfz5Z-%T`S=>1E!l>kbMde0q`zER;!E!9sVDk<BboO?Z@xAbn~@FoU( zJvkczWR&`t1Kxu69fD1-U8-kEp4+X(yEawk*DtE^s)+D~qX@>k61Uc(TEgIxV{f3^ zu$EtST99U52}luAMfokpPL1xKGy)XX6s56e7K1vLXg??NF)3)QONfGlbFV7RdL!7A zOti_LrEww6-N$3);t^#aWSOfnQI!F}IQWx<$TEZlgyYYjzx*#w^9&0gW;U@o*_xGZ zf+jmkla1nOPs{{7u1|8wj_hGe;kQ~}llAZ?9ADyuveCt46_WC4w2^{m$^6J=I155c zS)@2Fz!J~0xCk8--!C!1_{LOgM@~fZnrx3;FA5sBnje5%zx3XOutmv$z+Yq{m;q{v zKpVneL5vOr`a6b_BgP<vHsv$<S0!iPnKD%-;CmaR)JpZ|DGw7s*u81U-sHT!mdoVD z(JS6>pv2p>)D_XAs@h`H0Wvll_|uI6+Mq!2;W}~o!YP@rpJZLF(i*sYzBt@3<3sL{ z`+2F?3!hY3=MyI&md|WQVao$CbX0t~Q>=oh-E2zLZb!8hBnD)qeqrzZT`i>wFm-lh z+NYS_{Y5ZLst_rVSi&mRe*h^<IQ1fMAIDq>c9E!j#kVC4b;16`F3B6ON)JzAyXvt0 zB*M+7j>W%RTu+-s{MU$Z!%2mVX_q}J8oY9J&lQ3!HV9<ZvFNf$cb=(CuryR<h*k=s z$VC00UyeEZ;U7vyh*kIY0(p$HB|?6pZ%SY|Bw**>Eda4glguENfgW)mUCR#XK>Y0^ z;mpG3vxHGYZkGp{{}&ZPjYL58cQye-%oV{Cv3VRFFmJK1DFeAvhn3~=AyqIEu(PNB zB>C->!fPU5%3P8_n};AJG3ddFatAH?wl#<v#wnV;lf>m_@i-|B%hM!b?i)+_gV<h) zdNSkiBoa9!b-O*ln5W{IIv>p`rJB4ynt|=dHq_XHnq>1yd~5|?19BIljC51MWtg+r zG)b4(#SNCPqq&SHySRm>)F`A5?}=MmYp)D9B!8%?i4p>4Y{mZWoV*40(u8n|;YD<y zK)!Ud6`-3u64WL+Me53SOFcz$E%0Fdu6^k;K2n+&34j+Y88F`o?3+MDyz>GmT+l<W zzCx+^cgQd!JmZD<LxzRE!t6LBU3WKEwO3Z71fNwGl@G?crdE{>v79x{z)|6p_(9a# zQsi+Sbm6_94f}|4)rR9Zqq;haC7`E6Gk;stu^es6chC$(r3fjLEs0QBZ(jq?(oPv9 z6p@IwjqF=gl!+d=rLVLC*nxW6++hRnXRtDZEoICEMvC_H|IbHrE;%e@0;RC`9Ji3r zQ{K2?k#PrB9E+6+UrL@&0~X|cC&P{{U+qt`<h;)5*P_xMMWIQ^AO&ocPN>;%v9$uY zQGXhqMwaPT&r@yqU!JdpY;xC6#s;nWsix~9>&qprnqgQTOAs{?v`yfDgmmdhuT;Q- zEdK#6bZ*WqoeSW6bhA7rY@&})<}(?22(27cQb}4>Y=jveaXh^M#Qj)X7sy;n%rW%6 zeoh&_+9tt9$W9GALP=PqPEgb>_(ir)OSw97<P~>}6+-E>sm;irZma)qGzBGAT0))& zp+jNuJM2y&C{g0-*AM3jcVoUI3830XKbup6j-}7Pq~4(!nNuQwuBKdSYUum526T7R z!+C#oc?qx=O>zjP(<7IV^CAQC(;h7v3=U1+qG9xaVa*fm1bB#0Pg#g*bl`(!p&>3u zi*Sfq-H4bmt(M>B&X^*|(=bs1PV2%<)Hj)l;7?jGK=a4hV-?&WP3c;&>iI}T)_q;4 zR^r|D8CEN_TDgM&6T>9OUz(x{=n1nuw^(E%y$-0oQUI_ufm)em^l35h*Tv_;pHa_s zFdK+>Z^WV4T5m~Dj56WACMszn>H2SNE}_X8q<n~Mrhjsk6k8`(5+LT9>6|>N?|veh zGfaQ_QfYAzc`{Ay$YC`(MZodg!BLf-<KRc(t+&Oiv9{ID%Nq^vH*+W1R{Nzgh4*om z<NjjGIuTQm#eIpxB#UxI*e%!$;xv<YXD0sAfFuKtCYR`595k*xx%jH`)SD5es3;P2 z6wl&d$PQHJK5g&kUmvU&*vyz`9<?XyR$lCJL8(_;p$;`S(UR-4y6WOzqWGQE8A_By zgxLt4s#z+?r&eB*2x29hDLyE$(6-trph#>1JtZQ9a-y3YyCkFtsW<d<c<HyK-CPw8 z0Aphy0+qgz2aKyk+vd)>$%M&db+9RHt|$+hceguZOOWd0TbU-&Xac5cimXU5V9}xG z2Z^v6Mf;+wh}@8Vt2GrtD!Ct=Ni`*MVL_tZHowMc>$nJ$C!E?jjJ~|R57ToxU=azT zq`2VMzh+%e{ccdq<uoua<d~lYEcb$lE|CXwzp6jtO!3}?-Xr+Jf3YwF#pqT}Jn*43 zxmzntz1{o?uCmLBsU^BOXj+jiS!0Pgg+T>tKX9vqP@Mmw5Lch1V8FZA$Jp(R-lM}w zM4$t%8o|}#CjwCfnn%SSEXa#6);U;sId|uR@kV2q!*!k9q`T&1gI9ss+;&{?Un3~s znlWaG-iSw7wS&tK+VM|S*}7vlVYZ<F0<>!B*XZ9M9=T0qUdEQ&I1(d|m{TF1_Z;N6 z+iX?h-GPqgNCrr^ttK97AfmRX1t;F2QGtf3c#G0ZAYd~;WYqxNS~~k8x3YBJcc+iX z)JZ$>DBYc8ivOcsY2a3d<9tvf`r^MpQdXCBzW)yBoG{{8B@DFe<TcFQAe<jZVXd$~ zD^nbcY8k|PLVeZH&*WZ}`0vfH6yob<w^lo?!4Jy*tXat5hK1gm3CjsXgnzOk&l2zW zj*2&%7kl<RoC0Zgu<{ggZDq7Lh*`e7KJOdMhl%^+?e=Bf;0+c#=2VZ+cXh1)fek8C zij`9i@>ZUE;UW+G8&#J|lls3=f)5d6GUw}g29O~{IXY)(1s#NU9e-6;5TMGJzcztM zN~`Lqb1)!E;}(UpADk4-Tg8VW+g}93@M>qB&j*d|`pLl<Oy3!2%JlbcT0<f?IL58h z+#Xt;v)9<jzKL8k$3;O!(9!DaA}ag*76FAh0#f1nM3>#)4YF3<GO39iO>lFtU)D`b zMPF$)VPGOTIj$7<#2ycWNB0$Fo#}^rQ!C7r!ooXUTOb`T4LT!4O}do+|N2_y;y)FX zN~_@mr&l3{6!sB8x4$f_38g%FGB@_=9T_^cHWH#ufk)L?#7-QLW*WqWI3$_1*kYiA zAP5*mNE1S=zr1<8G_tWuc<!%YKFCNvBJAxCdxKN}ir)^`3AfvF+@H;B1@TvI@(vd@ zV!obef#@*1y2_nR;2^u}iiDg_vvOv28PBcwd7P)DY;WkXJEO4%8Z5)pKOcpz;@#AD z^y=1Ej}$T|#Pu3~M}Yz3>VDg-&29f%R6V1Tkskpg%_la$p%7->%Qx@Bqi8Wv13QL4 zaR|Z#PLB+a`TaF*LShsgu}!gCt*g`whA3eoS$J0{rzU)**fW`Z7q`8Xrt$!ubZft) zB0QugnGX%ldCZs>DoD%8I==^RMp=r{p`Znt=_2l81=R&+l>FDIM`C*-?d|U&HYl@a zihwzvL}pZR2?Z-$qny&`Uj+-qBEapz)oT5ZX;a_G9&~q$$~Td~;U>7RKbI2L+M*jb z^Pu<m7(~g!IQsmGLOqgsby<+>dsTATzAfL629SW3kIGrp-p+m)lOzavxci`-T=+^K zIGq(b)XDIm2~S>HDYVqCqA3QiwK)s>klMqf_sqCHj%|4fUyW9#WQdTlMK#IEMkeZ! z5sbm;x@{^rJisM+e<_evEI38L$p|{dLo-4D27QuxEA}4vgz+G_?d7gG)MKzmo_67$ z1Dktb6|fQu*N(FPdiu4oR>%JLz-&-%UzJfL+J2ewrxsPXArSBau9?ZInWb|JvR!|z ze9r4K=TWsE%dML0GDH1`iFo?|KY?|KB6F9$6C^3=Qh7)K(-Bt0Zdmns#T+x9iVhom z;D)=d98Lml0&U7d*FZv7<hN5E`D}PE>5@qfS6t=6Y9f+3kKYOHqPh*Rog>-_F*9(O z`ds&aSA+<OXGI70B!2Adl4oDKk;W$FiUk}?fNI_Jl}*0cKgsyi&}MzrGt`cVs}HO_ zS^*U2uf!U$W7J5s|0rU(f${+1Jpc%fr=9<Ety(o%kC;MZY@BEHTD|$kM(Dx4L(Iv@ zOx<ai^Yy4JhmuzOU;GoBMbuLt^XQEFGAbQcP}QBH=syr?E2q1U^}=Ks8?ks_wDkXV z?pNF_cexF0Y_2LROzn<s&u5{dsNCaOBcL%XU3VOiILP&`l1Kr4FJi~9|BS0~HQ`rh zr=Bgv?cYL7l&7<-4CN-rGUP4LL@DE{r>(-*ukmQ5265q9oA=Pv&(VgmQg%c*y-Z)f zJnb2m52q$M=y5?cah2JJ+`m_wS=psZpjMTvDdmtAVqB*!W~TNIJxaxXo8&03F6@{i z@j=WEg9|Jm=rn7f>|J9zm$46%CJ>kc_z(jqB;ap<_YGI;_1QKvExHG2-O)KucN1-D zo10~${1ayl(uFh)Dl1)uFO@!b08w&^1_u%*t>$p8{n{m-KOpuBj$!#~Sv|FXc(|Ji zfupQD<C4ou#7Y<5n_DM8=p1U=+m=W70&Yj!$E+;Z*D4U~6)sH~Z;z!}^@0C<CZR#d zbv`dv9g%akl>@ak#R)>LSfx4#6THB8kh?@U#W1%kpBg*)d;8FST(I3Mkt;DdFZ$j< z%-+pwtHmT`usV|CU9&H9(OA>GvoGu%NJEC?2eB7Q^01?=X0cts#!()X<kmoNpq4l+ zQ1lLac6-y&vI9_QwrbR8-bQnKAm+R`214~lN0`r%-k@0H$ZCz%XP-#iQISD?(JTV! z_+TRJHeMyG`ePtFM9AX}#Rtx}Vr$Po$(MLL0=N`&&TJOGOH|?dgq@s!WENT?9xKJ2 zjhb{Qg|_6FJ!l(IxQ<cJ@Qd2!*ak-tMhFpNd95#FEEuN%`lg*zK|xA3)_E=XUdqZe zXn>5nqhbdnW(M7Tv7MB-Og&ifo|%cGFW48@C1pti$mf_TtKTtb@jGD4`@G`WY^j%3 z?V<Kdl^NLBURz!On#&oi(hj>UHXzDPzO=q0hw+}CG*quRX%XMdvhB!N1b5Kz_)Bs2 zCSfnW)iK*`5KD^e!M5;1Ns(}&;(iIw3uh#D8uGJ%-1yR{A6j!jWrrAzn5D2SmRhAu zGx8>%e+vdAVrl@YERcxC^Y9(RevF%+D7uTJBgB;Tqg<cZI3FlDToYkLoaoe?GNB8j zHx*A0Vhz~sp0#%0I>Wb=<i_8^_`DvWIGTRD_69@Tvld39X@`?Ci`3h$Y~Yr`Txi<i zxNLuVvoqrdC$m5DZKhOQ?m7D(IkrP3>=T$Hmp1!|$lFBc^|dI7N)kZjnM*rx#dkp* zeGuI(DiCKz20>BPAT~_`bDjdj#njpgyJS(5?s?YPi{lt60624KJGQ!-P_9p=ZFFup zW-d}%BHeHo+B7!vr&IB9@IATIS0PDrOZ&um5;GSms=zuW9)`|4fP75?0<=m^h53AW zdKM1XD|XhrHM2)67z{0F{f%E%MkUiaZy3sCRho5YL*7J6sA7s=a;Epp{6vd?V^V~o z-!^JHqkjaMZ$}&J+KKlueNv9W7s0Re%#v~}^qx^0>^gtA-_PSPtscdO-~*DCLt;nE zOU<cWV1-Bj%DCx>gIk~rCk{^s_U)7MT3PIENu>qC3XeEm_Qhe{W=Qcp@1r{C>YvaM ze~Gn9-j;WEP!t803+7)0<BmbPjkf81?<12OiC&R<u6qsu8K@(qXQ0*m&~YQsrhjJ) zvjvc@ujPoIerQL&o(V+IlxRtg0b(!=P_oZ*da55*sqecXN$k46cf@jg|9_R96z@hR zcW(Qj=2^2ATNQY_JL%!NA2u)3dAGIhs{xh++5-P<J&=zT=f=?i`htiHZKkGxD)i8S zw7xQjC!<a55!YL>YyYeqhYC|VY>y^2R5fB(<HZ6yaDT!I2>-c$LnOIpGlqzYZW-5a ze+4&a_;X7hvp$V`g{K2)^tDz;MK!P4z%NAIif37ZzWeZdj<Cr4v{fO(wy!yFtbCvv z07hDK3L{UgN&uYt*JkReKA1b&<VnTNf&P`UuX1`b6R)|;85iYo=s~=*0FBE4W#J7) zxa|k14`9%Quk>Q*qfOh3zGJ)$=76Dbb6p6&$S3bghibW^BlpQ3b;MJ(zk-+@WD#YO zpg`}$2ombbQW6v^GFzKK2rYf8aMi|QvOfdjeOm{wVd?UbTaN{66$U4@KO>!&RKBvc zvkV&&Kd?AUTCo~0DDYD(EJ^Pw^{yS>W#me@#@K^$uMy%F-HLQ)d#WX)>Pz1^-aZ8u zJ$aduM8n<@okCg^DIG?X{UVbLP$b??xY|7G=V^qo;3P;}9Vkh`sEVAvT1s$oWx&H= za%ukO7o%gsXnm$`EP7!LVg;7~97ME655(nfCSbA&23*>oTt2XrV@j7}<QFHA-rF)T zxd*>Et-+kH6ai7ZE_A^$Ab#??*1x1OmYYM?r&Llsy249ayg~sz7rta8VBkan6-g}z z#xj~9p<E4GZ?;0r)2ujkNk{BA%h%J%j?+z=QR4~KEN!s4)OC$F-FyIpW$;ZKO@30a zi?NMk$%ikd@aPT-P$l3-K{0J-za#HD^OLBQX}~B+<5M1V7lWUL+c2Z91U`Lt3%tV4 z5waOefqyzka@|`rLm0O`-Tt?l?9&Tf&{R>OcIzSgFYmfaX?qZwuFt795cP$C8lzQr zc0DlB)<q0n;(Sq^kVdlt37=8*|NZ8?24acjD}#O<v12Cy1DPFu^b>%wqTYRu{w#cD zH2{0Pa2B8%p%#tt9e~Twm~SG{PMNlp$h2OZ7UZ{!%~JF^U}t0%Yc5<{tA2h2J!;%o zWb<nRCyP+6ko{!k*QNQKyIHYhZ8*5?*Yg`Y`Fb1XK4-BQ)7k)q^-lmXNu4q+d~nt( zl5O-<8zZRnFDc8m6Co1Ts4%6?_ni$Y;Zb%|StJsw1t#bw@BsQEvsGS(#x#D$-hrBB zE?BHgMPF0MW_KfB(#q4}j@_}*<k~flXcJO2NZ0i!^}8)X86X?3=mH&^VTp10_n-q? zyHF~XcCn5X!BA24BTZwN_cdiU)A~=9k@my~lWoCGb_4tDONV_Jx>vu1w@={Ge~7nX z*NJmm%aE#W?e0Abxg{K7dtB8JdE~BBv1wE!D=TXzz1RZufrMs{lD(Ikn#xFIFh<79 zWxrHDBU%$qUD*L%^(W~rQ~O$~1tQhJYjdWdaSy#mFk<2DOrgs>X-O#ADU#i+i3<7l z8MT4H4;z;d5}2ZN>}~PzI7s4o?$dDJyS}1qUGKkbw0oD7Hg2bq!!z+j>iv<Ru!hMU z57*h?HZw*$hVj10h?mTq8aD_u8f<29AzdC^=cX&gh6YdQ(*j@X4DJ#%J*w^|3BuWO zIQ*3od+j)#B0R&^v`3QiHg|yy(b%v8j0yAhfyQk)#;WG5-IL`WI^daZ@_oT4AYm+L za&50zL@j;wfb=?yUTOLY=+^pJnq*JiI(Jne3>>U^kAKYq;^ft--ZU@&LMiZRQeF*M zpxn3(yVy6k&&1_WUOM{lOptyxg|FU!9?C<lJ?CiXUq8qhhzdiOh{BQ57J&;(zAFj~ zE~Rld5`I8MzVydddkC+bl4{0^ww6#ur<t+KgOoZ;BM4awYjO727k{yniS~)SxBri` zg(}lh(>3G<73;V<)2mUKk3G9fT}hovSeWx4L{)cxq$j^8Rcq|=8>JSSY-VLCehX4S z&8@!3)-Cycp6Kmj2V5$Ti_Ps_15@dcR$KKP9?BM*c}_aVc?xo0A2Icmr@BxT%@6}& zt6*P1;|>C*FraM{<n@~xXfb0z)Gu3xZiuOhj?<;P9_RxKES3teltb#=U0e_67ebOu z!g9MLr_gv^;M}5h{qyt5O;`)LO0KH5AkZ(Ro;1_R|C1PD;yG1?A-9=QAU;P0{fcKi zR`g$Rb?@8Q#!ETBqxQ74e<99a;9B1l9IFs9XmB)y&XWyFgJPKxU(UWc<M-Lg=3EsZ zd_T>ZIZY6E<w=f8X!jV;Bxw_H*%~nrZHg}N33_?=6=rficT8heA&h96OFz@G4mY+4 z{#;;Q-xHmpuPyv-U(a}T6(0a$99IEeh;TBX?|~Y)w;*V*l=1k1dqdLuofnD<^Jn)e zOH2{9(;K%Xi6&xa4KynW9~<buj9kDTPx7MQ5wM=NZWRVAeSY-i1+=ey3Ysg2dASKJ zTMmf6@>R2ImYnZNXl@g>vZO3OY*+O{N6J4=n(@52Kk==-E^1r0&Uue-pmXZAkuN0{ zVx7T|#lR71`QmR>eW9WYf`qVcG8`WNSljg+ohfK*uENW1tZQx{xYSf7Sr4R+L@WQ* z+iizC*U49h`0UGS1+CM*ZO5<GJCFL~>$9JAII-dmOOIlz(2tH>La`YGi^hmAvD0Xv zY(p3`$UCg+sx&h{1rg^K$A@7MdH#=>s70Ssk=mVeS6;0%SIkEn?l79G<oZNa=?BM& zthAn{m}2ji6{k%G!ne}g7WHPapCr_Wo@70kdgatqd8QpBTX^7UZmLJV7?MdVqCR2q zS+M9|jMe)Nv9ovLWO{r_jj0V;XdRu`j#enRMoa~0Q#xd97hLC0F-tTf9SHqwE7<Ni zICnxtK>zA;8x<eviga&{HPk}K%^idiIR_W<4MBjWD*D;I2>rAn;`^#yl$wV@_Q3ZO z#q!@c!T^=<Fy2o4f#*8Ne=kRO8Rj|+?~NA>%k3)GV|Y!Vb_^*Um-lF&bBXnUJN|`7 zq{1ybB1uM+^T;4a89-lv>3ilwvM*W%g+HKjf5ZbtbCUk_QZE5(Zv&~S*#<ng5fA4d zJHAXbya20nu49`I7yENEsj8_sI7uiWp}0d7H$3!kOGs|36&FxDM|Ctz@gNW)R-A0) z7+U)fOSF-NS>|K&(nl7ipSazTyTUs4+=yR!cgtfjn@ILU^s@3knsN-D`XbaD?Z0-d z&2t58AnJjc@_ce&0|4<h;{%7|r*McOq3U=KT@(h3AT-89vs|NR&d;67!!9raKGkhf zp21BYU@|g5Lx7rHF*LDuJ%en|z5`)j(0qz_ApUrragMp3|A|lvrlq6Z`Tx5dhY~MW z@~=I$qfMrh5Y&yXoEBmxT4%T^jYG*%!L^t?Vacoz%?t9;yiU&iCefa%hVN$9M?#1) z7|V4^tzjBx8$l*vc5zzZ`go+8uls-MiVhu6&)z&b0@a|0fc=-KGAK^qHhz4u1^%#4 zr(0-Ne@)+42t$5Yx2aZI-a$)jx6Oo8|EA=f+m#)KcTR^LJDKOVlOjps?idqoVWaS5 z8TUK;c-qB8?V`&qOTE`Ll~eb4RR(}_58iMohie;FzW_N7Ysi2Fu`*$G-Sw7c`};OW zXzk@W>2S4vO)`(IpRBznox%JN?N~&1?6PD-Sv3GTKx*w!neLjGH!4`mW}@xH>BC~x zOgp(^YQaRA&4vQU40}ABBk~$L*Y5tgpz3!Ma7e|wUsB*;1_#o)vRKAO3#r{Q;bE`X z&;0i2E{+T6(vDE1Q=J3tc?P>TJ^k)l-`c6Sen&fY8y%OZmFTU`6>UTduid3*h&y-( z@^n8+Lc-nLnF1NB5)f>h*JIGVi$C|vg&MEO4_3dOKmvD2_!vC&sa4usM8vL}mTFS6 z-te#qh}elWF`H`iKYD+2kmH$E^H;uK9O72%(Ya#H1#tVkfVsnrIfF5WbO-}Hnixc; zBL=gxV<J)yHFA&z>OXAwD8<y45f4!@Q>vuzreGs<70c!1Q4v<lNDa}D=kjrRg?e1F z4uhrw{>f2n51KR~I6>S=$~JTdE4~u|$4{JsChy#CGTYSUc8o}*Qu(&uR~GRBNJBe4 z7tzLSUU$L8hT>Eku!?W1UjSqy?)zm<$SdkqF*;Sqnkwb?0NO?MRM?Oxl!iH-@Wx^% zQuq3*xAsDRaNeRP)Ddr3<A@vML`c2u%NG+hzVyeVC%Ly}j0PrUu5mYQcSYwm<&uEf zGDw@VBVFB>%^fjh45ojY;j`t4Z;`7;Ac)BSu6DkBWM*H6&`CIrwvD~j=;J-Pb37^| zo&t9p$~fx(9di#*v&bQI9IAr6q?}DZ8oZfE?(>}S6=^eZ+cdgZJ(bTfvf=bJ*TTWy zgl-)SiM0ukN~*_mh*YkL4u*zvCpf8@DoraHQa1R5_yF~zES5hud_mAIfd(9n@VfZf z4JyR;Hd6f&W>i7s2VzO|OlTyS24T)tZk#K`;2WGXFuue?ovzgqS;>p<!~WM(>&sT( zAu>Edh#WREgr3jB#+6k}4F)^7q~YUS<6|<^R_8)-;AIc|YuMQ0q{VRw>`;cZBd8(^ z)7$9@&b!cp1w|fZSv$!s8uC|246+uz_PAbRyGrP8A|3a(FNAP<SD?>)*DOa;Oxvw^ z@6LxKY0yx^oJ)Jx1JTXf1#>-)#RJjh08kPRqYS~N1%7v%f3@sB-iXAeDN-cWp;*Ol z11`4f@+KNK-eF-F#g5Mm{9Oy8?Df439W1VdX?xEB*IIQJa%%xKTBWNY!x{Y}N@(Y> zPr?Yu;>#mrO5QKuqJ-rp*LmVO<e8VT+~2035N~+uCMNLQ`VY{S7+6(?To;;;j=mnb z$z9)g5(Reukhm{Ok-y_;!I^DZI!N{}g=R!rJ(}~WkV7Q|=?ybYcqgt7Bed((KDNCG zFI}22d$^`Ur1<V-o=Y=6z$=oRQV7ugNtFy7<DhKdK2oJmZw3h8z#K>Th7vAi)!>y` z$Mzh`xOsu)Ww$Nmw5rcCom0SfF^xs_U5%x98OrkNi^pDR;`QWB&rv&(T;HlAW|4ND z)92a6>h6*Ot<WfE;42_%>7$<?*7$}^oWHJG%&)SvT8&P#(kmy8=#AyaM?p~aC5s5M zh-)|?UN_(m-_tdnBh^popr=&Ecl+l7*2*5`Yo1CUSH?yXZ9ZwH4JGjtw!V?DkhY;o z)d7Cxohv~M#&LwMc55z21AgaEwsvma@Y{U^(uH>K%r#q0mUcXZ=m$H8&Cs?eoN9nF z8!n-l>x!!6l`xg>a3{cDN`B%e0WjM773@{pHS|pYXU9ke{*Gm5fcJ?*>AL=Jm%K@D zzWFho>k$!iQYNY3-E}Y9AK6Zf1#Z@rAbiN_lCI(M*MSlxP-YQSMlieY+$DO3&JC&) zgVh_}r>+$5n47%l0q+~VKo{+yu}K@>6r&wKkd3C8gJ&+H8TG@y2cT$vfd(!B_N7aM zY+CuieaDfX?T$c=LEa|e-HY@1cT~3P?45z;s4R3~e>#V~LMROX-@-MpMKyQbAeqU2 z=iA}(;-rFH!1tx6@I6wBp7`e{B6rV%uth(02?yKeERwa%ypth)LdH0E7=-e_mFyjl z7)7HCb2%Vi9LYx!_kIt)cUIx6Q8F=}Rmqk{GwVmIRdSiN-y(ii6{vI7#vZb;_4-w| zz|S5>&!Dx(bd_n6&n-^Xv-+R?bVm>M8K5$14*xu6A7*9vPd4#fpG&iwQG@?isospi zAmLWV`x$)@><&)t#1Pg5+lLjL^+F@#6+BMVCLzSVf|nZ{Cftccj7wy$>=i0scR&m^ zR(pTgWlY-+aE(A>*wL&MeC6ddvl12{qwP8)tS?*3^2#B?c1Gn}a<cZ8V^S4mkM^wN ziN)KB^k%ZY^6MJeR1Gs}cXP_yL%%6fgFDaKpt}m!jFQfdJ{#G35h)F+UtgIBNUNRU zTXx<<HX^N9*f%06zQd>Ow1YLrKV-U#CQccH!P7BitxF(vcIR)exg{kTW4B@tx>hBG z_R1Yf3Qy4zhipZi{xG)=VvDL-OFKmL((8hR32Lbb{gND2GF=>`B~%wojaJ)Wxso<k z7&ajk?&h+y+XecaP%Y#+I$T~dJ%QopDWl#n<U6~{#0`yzAApJMORm)};OgM^#Ya^z zBiyk78Y{K~^yBn4Oe<hb>R+Ro>HNsvxES$rlz6~qpswGEpi|rJHf?yLJFAgo+tLhg zwHK>oaItKE{Wa7=6vrr!+gcIFpth8!5`azCI5>MPc6&bTyo~4$H_sz#A!LN_bf~*C zAq0u5I1`;(?O9#y%zb<A?X>jaRS;{`D54&da2Ixpi_-1CW#RGNgq`dk#%qGjTeJxV z!_F>A-yw&x%J|#XQ%MuaY-#Fb>lp*TLq?vQG4(D`ilDuQ>Bv+TGje1xn@7=9@&*=m zyT;sjU?&Bx8=gF0={ymc!@vq`3M|4PE#x=_=$(LSN6>m!)bN=57&$trvPgpKVUxco zz-2vux~HhIriiqk>4uJ&>xX$N@<C8ebqG4~jb&%~g~eMzbM3o780|C1?p!rfkYg?d z`RQg*QjJ*IR{OY+n%PGpR&=1})#e`kXm?@(Dw|v2Js`ZyOgVP}V0z%93J%rj{TgXC z1HMUy2hwd!0aF?6MXs)mQW(komp*sAdWiP@4vTG$gOQ;8`@`lyx)2|#vO}WNN+0Xp z=s^?OwS<MbSEK8qP3Fo+@$(-32FWC=HsCSWE|<F)7BCa(oNJK@ta@D1e|6<lw#wcv z!rh;$X6iV&+?evDgDEBBdwvG!dCH#y{H(B=Pu8u6Y{>}}>bPiLChSR97LgJ#1`6YQ zKtSw8Z0wURWGiS^Z9J^h%0Luj*W;iBKM(Ia{NAGT*M6ZEh<3}XW~*c%E8IDC_1NW- z4H2`;sAOE4S2olcq_G%|6Nq$!C3>p_BFr#@b4QB(ELyu{-IO0?J|%;d`6Vt;mAzLL z4%f@%)C9vSn6iiQrUM1aFR)r11!Al5`w(~|fbVX#28I?#6Rs6Ad_rEfjkIIqVp}wq zBbjvC8=VR9_GE0*)^B}5%Xfwlt}6Mu09nEAvK?r9QmkivHp+i^d^PVm3K<agf|pPX zSF8XjQ06K4gliDkcHt&93*I$CEquT>`XQ!9mC*3A45Q^XN1(tt`m~L;mFo<RZ>7_k zfm5{FV!ZePI^%mmYC(DaUykddldc#<UX8YNA{QyG)s~9PaD&8DmwAHWpBiamY4<tV z-u!!<op)Y1(6%-JULE`Ew-H*UD9J2l<@2{N>aA+4G0zQ|hYYdK{hih~y0^Ykvl|w) zWuRA10bEf7(cRJv`2$voAdEruG2m#r$$`Rok##J~cW02>n&i?y;TR67*mjB&vV7Z@ zQ3tUWpoFo*c|B}-u#xC@+>Hz`SLTRk=6@hSN?|nzbGMRRJ=g+_%Gfe@>u6)0T05nX zH;0OLo0F=)Qpw>&1GtEL7?so7V>z}lejPbpR;@Ggu0hm0*y;I}R^)@~+vDOVm6$BE zM0Zkei7V88?4rwd4kn?*n*iFInbyp4+`hc1=<MhqE?m9y<s<1b9Ifm&ad>`k(^Kx2 zWG1X|bm<GLl{U^#Oj$^b{ucYMIsYk){6No2v!BnvJqS`sKL_}U#B@s~tRxxMTO;+) z^d(wC+~<LS)CB}M<+TSpA0FT`A$3^JMW&oD1#zXF53MZye|AlyvHO59lzn$SlfO`H zWAVx+|GVMamVO~12NzjSpX9@|4A#Oj^SGliie>#5eR7pwk*S;CWeW6LuJtBwq&NNB zAu?*dN4`9kKnbDCC)mS7B5TH-h`}dOvVm4(93Qe-PjbkrYT%^6B9eh&TwEwwCSEtT z=}X}6?<K;~_voHPu49R_a)Glyq3OG^aoD{qF)C{F*qVP@^S%%rDVAMWXD+aVbmtVP z{NveOdJvZ=*Y+nd>OuqCuRAO|y1F9J=Xpq2Z#GZzoe&_oIt}Ts=vEacL3BUNx$<Gt z-tYQ&YhM;OJ#q%;gZj)SaW@cA?Fz$(`0a>F|1~zCn}|-bmp$iXP#d$52U|}R`2RWV z#cP@^>a{=T_#9}_OQ<2e21yPZQJTz#^Kk}2W)y*BipFQHP2xxcgY7drkPV9d^Tgm# z{zzqjdrO^_9?0a-m|L&}4?BotW!7qca^R*mk;Vl`H&;vq(*;huN(oyu5^vw<9SJFG zsmb_W+E;J#x6XTxCts8>xW$)4=Jlp6B226CqOWkGcID~C;AF0V=komNl-&`wYLxaG z4(gSK7$UMk``;TbN5)S;0p&zbCN_WkVetLYr&_Z_Ax2>~1>6|u3xfZoj>szZUKtdv zp53FAEdIU8<QEy;56B+nxREDa9{<%jA|;wG+n%ufeAq0H>O*EY0QE{|`NIzS--3vJ z8#3G8hiozJFCs90V6H%D<D;I4g}%I}cwIkF25l+t)Nr8{<94ehz=!<-RX3_|wS;Y& zsXV;C#+ae&X@Iwhw@lmeHE6Sv+un)&Mc1}1YvIFf)0mmwM0}W73yZYo1F+NpB{EDx z1%rDn<2!Z(uIs(&ak$h=Ik|hXW}26^cFqN3BVOkPfeob3t~VxFyh_Wm?q|Bp`JH#o zExz}=qjUUN7-b*~&N`h+YDzT}e?85T>9xPhXqjWj@@`lPl;o<o+_YWZXTPFw4*}EG ziJ?Wi+HAi%X<2*lgP4c_MQ}|oFvj^7cyS3YJK+vIU=nM}nE=D{%#_V7+iyZ|Ct7u9 z;3_gc+mtEhiM1#a@HB7*$3`q?;5PZYE0)6^olm(~f>!G2iN=+hGK79BhSm6HWce$d zl#_auL9YujViulXvA?n>Xaog4uNCkrzt3b1i`>$wj=g6E&Gvv`$y%%kYJfM|<j;uT zb4bD=5hcuRe%(jKMIqaupw{OB%PY?pJDQsfG6uQx&`XmXWB&DgQsDG#hO!j6@s=JA z=NGYC>kXJ1k@PCdUc%J|S%Mloz(uNhF(CFh@i~*;Vd18^s<n3mM`&28ypCe{ZLvN} zkVvJt5>OkZpAOt+VVZaKgyMtEDg3be&R*CSPDKrJY%pn|d19j^Hn8%W>S4Ly%$O4Z z;N;X|?sM<+b#|g)6GIRb?zQ3}1cTviZ?J)C{v^}46<wVGQ^+y1E(9&+1}5n%jP`bw z$cn@t#lr?iLQd+SdqDmo7+Qx+-bM(?(wQ#`xZ--(t+meiJdr(2&ib^;F-U%~Z2>cs z!E~!nZsAw~gORT$MaQm!VkhDd&nSjNtZDyy)T!)iQ!--wEqe0o{@Vm~&sZKk^bOt# zXFb5EJ~1h6#ZF3Vci>(Za091HX4sA4JgY6HnXdzH8a(Rtmz>mc4N)pIy!Je#Ji#dL zev)39L3nqda!EHN`VuZ0HoASRv$&>B3rrHI;r;7|x|wGs-=aYh#KNj22<lpewnO`L zqIw*pS%0IkI=OllI8bF7cA!;Q19E9x8}>tvu-LTNB4`8osBdmb9Wo?hzwEdIobBhu zSnwQBbX+iz2#l+5(23C;6gXU{hLio4^ij6d=U%XgtB&iYy+XM9)Q{}Mo(T;fTCJ^} zls;<zU%x5H%$p5+1IpSKg7q@A9c2?a4Z}8bDOf0Z(TrNY^*O*<_?h6{a*m92SvGyx z#H&tI_=`%qBkN|r<o|8#vocIn#(;M$o2dN^_L#K6PV@shxpr+!^Vtn#&OO?{T##W& zJig`*A=iYhqd6;#>E-%NMheKGEam?px`RlRsCd}2)Ok9-2)Uo1M7wGAuJzS`sSXB# z<Q_QDeM0xish%gl?;zu&Kd3hi0NSGxc2}9c;#_=ixp$&8$`ADQzV4H!f?$<|UZsCa zDQ;9o+mv=E(SnAWqg8SJQv|*a*cy5GPZ6ah0ak`{eiZe1^9^N%dg{|$biR)IqU#GQ zO3XF}5%T1Nln&72m0>ewJ~);-aGY)2D1$BH6i~4vQL_Svk$gDaFXX(c2>I;=6;5-m z_s#Eo1sIz(0hbTvfM6D3&uEDsUR#<;8KNPVphhXz9H~6M@OX79BIkN3@RgPr)vY~D zrs2p?1>aVL)1F6TE&wO%Jbz9$pu@M~)4_be|2(d(ghC@Z@o5kkv0|)8P{!qepx<`k z^^#-uQvv-@fh6n6BZBKOV8u|YEf8&G797%RC1MNBP2802_az3FUR`R*@oJv+IY@`v z;OJXE9pa--P4I<6-yE~8aXP-S23<+)<8Xb)2(L91>M7$JPaZIE?hEn>%6?vFzQ}nB zVE@fo9eaInc-C5#T!U+tI1tXiHZB&td~+-SrI(SL0-%o<H^b5rXAb<{M`k!M2kNnM zmE6iFWcW8REi&9=nT{oNkU_+wGfF}aanEdJpsG*B$Ok)z%5~L|qL?bRdZS}UbqmI$ z16On}6*L9{^K~Sp8eQF$?kZ(%E#Lx)PdrA-GZ#c^?<&K;9whKhP^JraSB>_wibVjD zK(2@}O0h!1RN**%Pn1N&W^nzD+fGBFRd0Uk8e-zVQ5tgM{Xn_bsgX@Q(lLN<WWoNE zF8wvUPkNlBB+8ubhUdQmVZnH|uA%n{-@)KfgZ~W2YgWm>dniQL$2Dr*Fm~7^Ayk2# z$5-0w&e973rkG_Wi54YF@>kvzRKJ;)uAo{?#kh0rbCKZ;DYp_uy*=7Iz?0t%*+W)b ze{k+{mc$C^E*4V1Z<IWNC$oAf<0KeW#&A7N(2#szF6&It1&q6QF?~NQ#5t~5A-Br> z9|aC<!ei?gVLUahx2PsUVCdiK{q%lU*9gC0VSdPqjk{_p9+XIyB8sVDE2qWm+Ewgo z<a^T$Y1mzb0gQcPO>B)5N~OKo+fwNVJ%)UJ`Ql`i0RpC&H0fA6XtZ@@!vt52X1X0+ zGh67~+|7dJ`jwe8u(x^`7`IjXk3d!9n>nCQP4DqHnKrUnr1lA4y5z6p$n%@52VrxD zj3eElM>@2`__SI;@(TP+@1w}y(gxX+K|7h~!JUYWg~9>O#M+5=#4sq|alO!cKf6uq zggOz9Uo;{e^A%FDHCB35#$s-L`1VQ)L!3+~h#{|uB!I4odb)rIoo<)k9+lD84hOc% zp|x#`Prc|CO1Y$SEr)3n+w_1lgm!c<R8iubgT+b^hF`Bu&)gpRKYNKq{;{WT@b;~F zyf*5%wO8f2CzW*xX3IR`qbgzNEgVy$V_S{%$QWnRfKvadBj|=Tav7*bVi2aj*e^nr z>KtGes?bfZf@Y+USMZfu4SUvs8;szg&IRsM4_U4QatWKwTiV<>uN<3QOkcx$`<$s* ziJ^(49qZb%%$LVSLbTM3#_Frj!l?4|JCFhv)`#Ptm984KmE$*NSbY3a(uQ}-V~qEq zNCtzQPb$`on4AkMq+Fs%yTa6}f}+NAnF-8fc5LZdmyL7zP>osu8lkQREX?GFGIt#h zee|I&=l8exI?@p2OIytL)w1j)y0^X-hQiE-czt_3;?RZ=4@GLPYESneihu4R;sh_U zfaX7B{8D_>Nrv7O=7hG{JF;GeIf)uDaE)3yVaUC)#VJf$f&n~X6-LnVt6RY&HdK*` zwF`Fa1#~%zBu_tA6%P_aE5s2}x>P?PU-h<SeICM*Swu@qv$PLS{qyRT#B^kFO&wPQ z%}Kpu-yu%xEj*M7<=>$^0uJznZ9Z|VR`JUatF*yMTuj-2q0>SeDYQJ|BZyQ=4hkHX z_TlH25Gp8GFpo_lQZcWoyNeuF>gepW$Gzgv5LT_+hl#1Wn2V0X@c0{}jFu93eQ9ld zk`T*S{~w~v=k>_9okWs51!c6ZpTa^OI`D&_9%33X{Oq_=*Q8us5WGhfKh?)xy8T$! z^pl4AM_veaUgegM2?8)|ujdusCg=IgZ3}>g9z-5f^R3gP8y+Atg*mlZ1&zJG820%I z7bGFc7L5O{{Pdvh#~@nea~eGghjc-|?YR=v^eG-QG0P{g(;-NHt#ukDIAe`V28>2) zXUl2WOjJsTyIkHA6s)|yarO?K-mPOH^>vv;`C8;p_z8j<zd7lU`@dVtHV}phgmeDd z5Z!0DnFq92AS-*B=Mr3NM`o;<5U3z!Dkx}$KPp{G;}|4s*$Kw#>EE52Zi`wXRTV?V zevI3Rl^EvL={Lh*d$(&H9Uea$%;~7hoKbo^NAy3{%1yDeF(U`X9b7;x0Rj-#6XIQv z2e-y|i3nHK?%Q^=84U~H#cmg4$0HvF8Rb^YErh8ju=Xb#SNP$4QT7ggMH018$=;sa z2S;YM7nCETp1VE(IMDB0#P;Q?4)Qu%7~A~#)XeR-Kq;FST9!-gFhR^nUMZ}1rP64k zKL3HsiUVK3$_B*QSEE0!zqmYplBuC1!RhJC-W(MBuMMbEm|}2)S1=%X#k$v4M)ltx z_!|4A^EJvJxFK$c&kDCw0DHG>F7gJE4FaGNaggS?XY~)rf|l$UinG|BP=nDc*g9`` zN@5c}ih`a;W3_6n3FEk$u>o50%<~3yXvo;)U>P6B2KI_<J{7OU+0|=@pI}$&R&&br zdc^?lb{`mxCfX}>wo|QuNs%7eb=0@@J?cv=ejB3}_k%JjjU@W)=QIh9`T78aD@~g{ z6_Jk}hV*@+wpRVIgUmDz**KgZ_~8NW(%YYJ<o@!_NOCJ@u-qoP*^$1?eVJwpNSM<% zjy_Ci9(wvno#uGS&E*$^v~@GBN<ZHj$hWqC|D2{KDyDb!vWe`4aZ7RJA!#GnYUtIM zmH`ZkO0{sA$uMc<ToRJnN--7h%Z&eNT6<gGffJy&Lv^vXw1xWYXcnhz#C;WEt6Puc z2<_7Psha}yXThd#SbnGuKG`dX7z5=DJyY`gd{f(fxG;g``Z}TKc$DupzRbp?j=FO< z>+OhtbQ%}|rS#&VC{|GhW@3DP;kJ<c{3t<BfRH_j32CFN`Y+}JbM!%eECS{N>sEsS zh5X=~?<STD*-HLYA#Fh4>E{IZK+lbgcd@qBnzn}1kMOERB#3uSASh>9T3Khmr7sKz znf`4sVRBBy`Xx7vC_--6_tMb!MvM{0s}9wq54%aBtKQ(d$o-tF*N~M6P+FN7!N1qy z)QsKSxY>&ED*nDf_=KUBJ8Ci~WHmh6u9Ij@ofM?k=U^4n8O}GEf*T@YdL7ZG2GMX} zLvcabibc*p#JqOoO7*T}F4_Xwc6^qfZU(8ALSj6Z+Npa;f}~hevB>l&N4z@|k4Fkh z4K%l%ev(G8$J(p9-yCMe)x9EC$dJtc+Ep{6E{%b@<iCIv#zYa-pxo^ZW#4Q1$J|^F zHW+4V?%n^cM15&ORi=dWGka0P)l|h&b=Y^qSOc_7{V}wBBc(>KQJq;kz>Y8O8TT1a zOJIpx&bM4{L#na!)&w~v`e@YSm62e;OQ9UpQ+NZ%eVU_BX$E&7a^ViRU9`o}1>A3Z z8qdIJ{R(ICs8u)Q+rP3u&Y6f~JYZLE`kqsO2W~R+&k{A2O<HqiJCd(tk`d9ZN)1%? zwyE46!`DfTIfIbvkbY*?q<GKA!`Qy%A<rK?9|yejYp0ZG#iw|sWMgj@yKXi;_u15= zwb@23L#F^U8cNewye)xKrt))B2zVE?VUdg(2B*ce3{l~4n$^Cve9eooiB5~;GH@^- zUcwTRDCE_`DN)ktnQqeR_nUrdJNH#qbU0SF5`8xF?ST+|y>uZ!Umde!=$kB(_xbY| zpd&CI@wWd|9es-ejOy-nKb?oo!tKnVx%x%US3<BNr!#G6-F!01eDO;Qwy=lElL<ra zFCI>=2nKfV4b4ALRE%oHd5|ypC;WP!h|6t&tu;~rn5HSKcWzB)R;{jN$o>~N=ZyHh zJpmq-@x4{u2<Pz!q$fGcf*1h|qU?WBW(}BXG}=X6bAJy__gh&`5CwoBB$HCU<Cx2S zJm2O~y&U52W*KN>9SARgt{nM8QKps?cKz|zs7KjXw=Mq|)Po;;Da@g~I>Lc`Ji!;L zaf*y)_`*~;QArrdHc!Qz5-^Kd$gC%v?tDpdU$yUNz4^bLh~{_@$E%ssZIIRIdH0>p zS`J{s{d|c|_cWNmVASSILuGUbGKYJKrr`Bh&hJpj>gWh%-kXnfO@7`qTV+_B+9C62 zqzhc`V;Sr#WvHlT+#FV?uQmWW1MKFJeRC+%`_LE-ecnEof0AnoK<n$G*(W=vz+TIV z;%k(O4q(uSzu)L<*yiQJ^?j4sZ_gx6B-c_fW2!)^Dk2N2hIJ`(i4}9@OP_UZKoh75 zvg9@WL8Tpvx5as}Xb|z9Yv07*)_CHU6hSjTe^cAxE89*l69ox}ZV5|4$lxXOL$O9# zd7v9+-;?S@E-Rd20k2$ikOMn9x@_1sAR)wV>wUulepk5FP7;(KwB#B33N`-*Kwoua z5r`!ilFELHOSF#SJGo+$Vkg{&&0p8%kq7)ng2p?%tyG*pHRfq0kg7h&K}w2>=oAYE z?eI+1%YlOruQj|?5>5%2k;kmL(pE;fvVVVJf1Gj^wk8T?t6GxP6#pHSWSxI{Kp+9N z0g<kPv73?tK>#0*yC6s<0dvIlD5y+bLDZq}i&eypkJR@`A4G0+HVBwb4-=6$X)iQq zF_Wu%Cq`ZRet&<(^i@a2%RE7@{5ovN(hS~NpU($@02H@4iF9`|xc8ZT_xK!-=@Z-t z3U_;^@;RDX8gpc5OUvunf61h?@F3;Cv?Dh8eF$!f79tiD8;<*~Bduc0Fv*3Z*{G4X z+XU4mOXt*bD?G9~fAFWnTJqAZ9E0T6!DRnH)i^5-u7t3^*5yX2?3dIeRw1$cPo!zl zC3RPK9h?Z-_}Ws(&HwBTCOI#&${7_v1?TutT6ejVLooeNekFYI>x8-Tu8j2K4wa>0 zItsqT^EgGMT@x2P1O}xKOyCxY$GcN*JsjYt<mAa9^OHV4FeBf4FHP{YDjV2NglcY) z&Lc`bNTaIS-!1#!%!Gf%Omqpo3y&{p)ES)EU02ypORm5JCgmWW>5;w)B=G3CyzB|k ziq-2bN%PmyuW!Vxj5Rz=Jo{ih(m2*xjgyCMLld5%w1mSj!o2RiyG3gUSeR|$fClW> z1PMt@$5r&6el-mCZTC-Z1U6dBeh8~|1l}v_2PgCd*sA4kw#IdbEW7d#Vaoi5j2oIh zvG&3dxX8^N2FHuo`9ej_@269iXz}sXz8+TNX7y!+07XE$zbVB9-G?)t1KR3w2Y?+P zl+GETn^4L{+c~*|dOK_?)agr*(00wyzEd`W-F8I~h>Fog51+5S+PyTK64zM%nM|d{ zpo}!qbu9#oY6YS!QL20jSU!EKoJ;yCsQ72OOm}kXaVGgcx67k*(7{seH%)<07d(vd z+94f&#O*qq5m#NT#0Ey1G-D~Jd5n!&$5qS`U2b$kR8uFcVIof&6sQ`vJ3^j5&* zRSWP_@Dr>yB-VuUHC=_JYFl+1@r8BovCUmAy_Ci8#Ajev8{%lhFkvJJpb<yAJu;4D z^Cw8Imp7zp6kYyy5pfv|E$lK2!Y;;@oYx=E{!7d>?6y97L+RABBT&tt(rnqoPDs^D zeS+hKLLK<G;CyV3^f%Fgrt(Lu)Qi!5Hgs-~#{h>a)Ywyj);0>qvcz?@J3<RygmkOa zgoyO|Hw==Plw8*<?IurExy_)1fWzhIs%L%2Rf)|cn*~PuALgzbdz(a?>*B|stwL40 zKQ^IynqBHQw+$A+jVMnm#RDfVD3{~dKlPpuTa%pzm;^7EHS-+^ye6S(kJ0ZLE<C0m z5?%T@d5#EqA8QJLYWsrJhT$scsP2z-`W&fZ9NvlN@|X-&zAsZp4Ce*4QnuJ%&2z=@ z(Ru&#vGsDL;cJQ}>B**ES~W71OPe>EpyP6QBVhcDjjZl3XV`~4@II~9J$-s?BCPB> z?D;LnZDwk}Z?!1}!-}fll!MCpiIxkCh|Da+2n_aEDTBbukJ_NDFNzLIqiPf#nc_+Z z(3pSUCetuqSSkC?xU_owKqqp-Ls;wznl!I5Vmf|!U(84X0Zpcy=a*B}wH9W`b!b>a zf7-~SiMw2eJyC3AG(qWIwJK(EFlmzg^g0SY7W7hEMEjAp$GJ>--`1lY`uX}mPbIo3 zbJ|(nM!dTeM7;vzds2ndz7wc}(?Z*+7!Nivd_~r?d@-)_LgpTHev{jg^x&)P-4hws zSO_&8ss3<!e1mf;8u}wKpPTLlK8rERP_WAdk$2`M-Hel&b1M{~Qvf|^W=OE9ss=># z%rt7Hy4F2DZ#g8CEKpn9-8o%{l;GUP2b{W)_v)wjJHpztib!S~E5tGK>INyb;P~5V zVmdcX!d}*%>eUXDa>VKW@d&;}+*SwLI27R2wKJO8pU6@o{nTUvmekaUhe^-c_)lm) zsHk-qNvKB*!E&OW9$X77@M)>ccFU0~zpE`Qo`~&8ruO#EobkhlaO3bO*vzGQVG>7n zTi&rqD&n0=LE*N4DvU^g2c(Q4xIn8&k%U+|xESKWkwY*c;}J}`*OzVCovEBOF~Yxw z)}uN*s2Z!=l_&=1WYszzDSSpg0^F-79jCI$mHW~}hw4jVhH4r%qZ5?xc8R%q3t+zA z{QY*dX49wEq@?bLPA>POhhiY2cn`|15SaBk|F^(6JRzg;dVX%-ZIpV>nj>TbsG*IN zfK&(YCS9s!72VffjJH{#qV)KPAUs)Rk_|k#T)DN)Hb6Q6KVMZj6gFvMYi8+#L#}e? zQp!W9HRCarIg25LM<kWs><8W-UOK-{1^N4p;tN3<@T>Ge%95!X#B$pjXlW=>@v-@9 zshJlkF=#o3cC=!*jn;n6(B{fDFpH7UFYN(udp|v>e-NA@&AEs|-FIYq|DzyreDkg= z>y}+?^I@l%KcLzs?xn(4q8>?}&Ob!bcEpa8@)500S+^Dohjwl1&IM$DU5Geu1m;i~ z*`6&%gUey%6cIOC!~i{QCOC*>jV&J<h!}7vxe)w_;085DSwtMnOJRHbc^jI&7@Giv z)}d^gt_{JZI&oT+;qk=!R`qiIFgwE1(qrA@uKHRWh$QPr_GRdSjX1}PcEBAEHBXkD zst74z;vhF1{V<vhr3&r*aISYX98#vEE(4S|2=5CscccChA-z+Kg}2V!2i|xTK%f`X zxHCtYRD@Dzqf+CkwzP`{Rv`GOjBK}UIcmD`AfN;dk5G20)V{Bq{%Wk|5soTh`(T!5 zl0K9$gThtv$cvH7dQ%(<Bn!pv@6}fRhh58_!&YCmX6B0;A~${*uFsaZ!v9<Z_fO)1 zR;QoMQoAAd=8_p8;L!i1@8k|rQW`4oi^`5dS+cXb9xVUnlkYfA&Aw#@iK5TV3-#^_ z(eqt@)^V^4e7*Aa0&JUnP_bex_f3-+@ja(YG{H@wg)0Zx)n+Ph<DI%1bXI?$y0Fy^ zN)9a&#EHBzO?kDxyR6r~gptn{nP~?A!p)8-`{z0pO2g=wt2InPfLMynmdh>6Ii2gJ z+v$KTR=!0=9o`iiQ`Ia(2`g#*><3>97<LRTv1%XtC`Kl)8T*q*9+i!WV;hb09KOEc zPGVl@Cz-BL=PfYoD1YX*Kr%7AhU^1?q|i|Tb-%7buFNUsz!+pOrSgNwR*!1zw8qO7 z+A6I)Id5}X`X(IkYTH%oq$osCgbR89KEPgou(PHGGW6CP!?!&#cU7WX57=T~K{Tek zL3XECO4a{YX=<Ryd_W#uFkx{XVTjO)ruQRHhhdt5no5Tx<mcmG;FI*N3ikMN4W8G$ zmWtc#KccMNQcSND@Rspos69Bz<yu53e=GAjRI8+_*SH?49TxtxehOD@dzh;gRvO3V z%DO`K{bX?{+M(+z?Eup2v&20<5d_3qn$zJjI^Bz+u#CL5H^+Wvi7^tAgno}|!7&PD z#lJ~_>4T=h`^;L_@GFy&A2QOudIa44Kgz?V5%LKw6#AkjPER0O;yJm9``JL7yryqj z@#Xe&XuQ0z%Ky0jxu^eMb%4WIcTn0=6e{l|#QcrwosCl-O(mx9kQC!^Bbnm0PwN;# z%MLB@j6Cgiu1fomx({T>?T_qM^=K1>acGZSK3apA1@3aB3XgY=g+z)}zoNvj&1DvH zt`G{M<NFeXJxFJj$ZBr>?UpyiO?Ezy45N4YEOZud|8)zc(6T%>a$F>K`r=cjlQ9dE z+CDu==bR6HcmYtIWNp7<Vk!AT03<ck2KAUEN63-+#l8r6?#<5(@EDqugZ1^u6oz2n zD9RPB0iz%Nblr+~$Uz>3)>Q`q6<8ZlI~YOa1Y)?WLLQ(v*f3yFpI;`q?~><WH{+Dd zc5P#d8R!Pd{HqZ|zbO1I?PalX$lASFAdkyJKWh?E7>=BIaWG?pOjR28e3to-#iU42 z=6pm`Q_O;k7$F4qPy9bE2`gEp-+}C>@*=kimcu_<4)sjkosWfe+4jF8Z*|r_3}#)j znp!lo1%L8X9z{1`kS8NEg)liYM^I;euG#fevYK`l!0a(bswNuq2UH}!r>lXuCvFC6 zi?tTMx2b*(Fx}VkLCBbO5KHRGoXAhX2Y~V^kw`lx>rEqjCipEj5`u(c0B}Y$F<#Z@ zwrnr|qid9ayze!_N;zTPD@o*xHu3C8`90i7d%@oKyW3SyWoDX}q|H%C^hurg!aEu_ zOIsav=QcA9L;70Qr8+sl#w)|qRG~EORqb1OL+%LcciRP7DBoW>(Dj<b+SF6jvp4I< zK{3~;^iaFA(=M>_n-(r01K5ck49E_BD8#G;shBEqEFhYCd_d*eK|o)3SdP?_>_D!J zLTvVO5K>Gqa&oxc;-W2Sw#J(`f<>>Ssck=DWm&kKd+4LHd%=8>t#HrWH?ewEg2?%H zHZjxeoJD9o(I+CYzHMa|=gXxkJPQ-%pBn+-GrHO{-jv6nRgXg+#)!Q*m&;cxJpp-O zr0d}&YS<nJ>lu=2i#&uH>Lhl4;^o%Jd7oq_5Y~oN^JBu&5C84;^b;GEs!SYt!xG6u zusAo{0SwV9Ejl@m);+GTiEjbm1cgSA2kfqLx72nwh_((oiaIJTsq8rh^5o|fy4P5i ztd#hm`pJX-MXXnYf`GlVt}d=2ygw7XLHOauwW|&g^tN;WXR`fwcCV}}3|{{n%ok01 zV3G171z|gaa(G8wczYYWn>4-2z7gjAKQ#j{(w=QV6$c0?k6sZMkFy#R<fk;q0tO02 zc`X`aKnO)b_%!7U&p!+x8#a?yc!3-|`OQDYj#&`&{VUjGQoPe60)H<pB$be7c2fCB zz93l`zQEk1tGvDP3#bw-UPT@uIY^%q^59tY5PzF<n8!K$KMlEITe>E3oBoB3Jr;!j zU=+R4@T}0bTJ6_daf5_s6Bn)m)HiI6;<AAt>nM9_9AJbt{IQwIyc0gi6Q>ugfVr*9 z$`T){TT=b0fLt6w#Zf+c)8BVr0HhwK57eekKI!^Go!pMf;e9r4sc<(VdJ0($%g6{Q zLn3wFf{Mg^;zk}0p5yLV1lbP4C6>%wO}<4R^|c9W&h$(a_}<m?8R#2BV|aRl9LhHE z&T)cwfo`I`8)<Wij?9;4+U)!qAUD1z2-dZC)vlXGT3||pL_2fH5lE4zPj<WU2Y=`H z`#8ocmBw74CdC_`G_yB=>>sKHOvb|(;Um(4G4pI}(CDNq;sF_{nU%i#BumqvO!)`w zz}#z4%zgR86XKmw49-i90J|!M?Qb&HeuA-b_f_xn8*~|ps!vtao7JSg<D5pjj8nE* zz^k*DEXtnTgovk-Ln$#Th-i@Fl41-@dR7JS^Xg$RlDlJ`aPo*<RCjPB$NTA6Z<Rr! zc#*t9#zkg4WX#X=J!#&#OTysnS12nL(cuS3bz*?C_jbv*4w~oMkK{P1&qR$?G$<eZ zI5Uf>(hG$+M!A>HSH<+$+h^=kR$dgTFv-=iot`<AF|#On?mYHw(a`Y9Of@rMfME|w zIOeC8kin$*%!gGHb9aI0^CZGf_H2L*o+bGmB#P9#rRtB4P-s@{J>s{z=YE)3_QDx( zE<$wm9+i%$DJH894!Do0I3^vIW1)DUI6nD!fR#|-gI<nB&V<uoQv^GuEHA>C_Ke1V z(|ID&5kyyk-_<4*#{~i!VS5^LFiSoMzEjKMgn#a;84pVDtmv<$?|GFFd0$LUUeBNc zEAFc(Fz|JG1Hd(tPDqwB6f3-f(k~R0q{zb1IZ@6(@D&Tt1Og`!DCBcD84(%pu-KU3 z^}5iG<GIZ;kFxrzbjM0Nql8;_`6qJOplHZ1PHp}!I@EtPdjM8kCM;b)xjkK?6<$IM ze78Zt3YFBFleye~JdOV)%<yg}nO3qS4<x8=P(xor{&mK@VQW}T<C^+2&e#!ZDu@Ht zj{TsryGYo%{-RzAoCVtHee3xwg2^p<g2tNMulp`)W~yPw@l3PF=Prm(9I9z?BD#z~ zY9{#ekI_n(EL!BPkViAvzg|ltd3J_{&Cm48DdiA@zc}K5TQ>}7Cj&x4R!{O11k4yK z!`dM1INq@f+#wmRKY`z4fO2Taq|Vp{GquufdgMb3Ds$yx0AS7Oq&vY#;d`6h*mimT zG478Ap4GDJP*mJHDIdo|Pefl{4lDn_=^YFd4evm6WOqzgleG=dWBsIiK(i#tJ(H=+ zi_mDe(#+reaZ`$52XVu$^7NnPhK!A2ld*J@+F*n4r{Wd+*q9KA1f%~N<K8u5yRh*Z zTdg%tKrJ}C``qY{Yj>!xMcWq>Ei!AsZ1EMA^Ht%oBjk*2cfgxH!Dx}bJ<%hJ|1ya$ zzq1D-beH;;#a6T`no6@&5kcN8=f(rd@wHsi#fm%uzwPO$kh0<iPEY5u^X0e9G@}|d z!GsP^$?FSf(wuKcWSFSk`MH2|^0SNEKLUMu?u1U0x;ulhovSL$FPjF9AiQo_hzp$K z69OV2xovR@%t~6k)Suhn2146%mORiTa&YX8VZk0NQa<y#aI!{r;X{ADi$C%JYEi$L z5v+j4ijKuNV-&t$e*lclM~y51eV}d-jQP1c-3}8`a{B}*dV70O^jO=B31&i9yCqfu zQjwSPWpwi33aDYlZ9dgkguHllFl?LawR$cwpdn9}Rh!QcB38;OAjztnb1KI29C9f~ z@LAFv=0`PpuRH!skKML;y8|T<*dps}B#CP$7fED%)vZR|fv0|B2H#s-IaT^BcCN2Y z-TgDvil$p7Zn#6Yy(w_(OQrIJ_3WG^Gd-uQ?xrF|l}5!uat9G|C_QbSDRiT%QV>mJ zsy{X=sgBTn6WN@PS`ck#gAb^uyMuF3O2w)OOr45(L%P&Nhec94b(<JT8Zu)-FOQ3< zF?$^#MsX|2(H^q8&}}R-Ni$tad1FHERbrG;ZmNN#>RlJMC<#{5nv7@Vhw;7|?3{i$ z6+#S9je}#SR{CvQ%qj#ZBrf!o+IibITDde*%=TIlf;zFZlKe?(sxKF(y-2Yavk|)s z8cT?o+46Kle-4-8=}dHwEvZS2Kw$DceV7h;74)FmnEZn_WcS6e<s;F@_}cF8N&lz9 zyA1N;!J<-J4&v2?dzS<!S1SA(pFGTm7M+o=R4%=wQ{KhM=E-P?5yO`#P$i46nmv}# zzxYfO(g%8ng!Jjn6P9UPy6sRa*PuV%gjxTNF{&<xMz5hRpI?t<FKk7PMmfg2^+%ud zW@&tB<9W*zw|10hec@O${l>?}za8rxPy*bmRqM_3b#lrfh~u2>{mRUJJGQI{D&S~A z^}yv^f<#D0O*?_Ioe%n%YswQfi68A|cC-^a$t}Ze2$VCV=)c!5CPK@2yZ?clbHq9y za^Jj>0vomhmf>Te{j>+L&cM6{zzFsf5TL6`6A#-IIhd){+EU~sfE;89@`TbLQTO46 z#R7{V%*v*GV)YDk<J~stF)pm&$?s#5w7S>;SA^1nvL#PzTnPzB*A6*);-oZM3i$*I z54P!Gbo>re>Ed3FEgUFj_fa$?{A(byT|2*gP?vCmQjuk_fTIxJ-G23gxE~unjfi#- zYTYR*C<|@@c6M{z)S!JrM>DN4NvDZ;CBKf1e>XsmmTU{9rgO6zX2RKJFMdx#pUnM& zq$=fn0)k8B1l0tN0CRlmE^%#Lf2ILL=R+q6CW4(mVUN-~D_$c+dx&w&1hC-PXD>j( zM<#^R62yQF6lvsK_e+?I6`B?zdG_GIcnUJui=%PqqVVh{sT{%$ah~`hfiwRDdkH^A z7L^Q0<fEVdUiYnvW@*~rB#*{T?*r|XwYp35e1EMK7eyT%S_kL%B6K7*nH$)1iT+n! zJ3R`?a5i^Pz*O*lJW_fZfto;id2%@bU=ywZWH}X%a4jmz2PC3gDF5^7{v##)T2%20 zJgyqH&55|O47Oa6t~DeQ;6vN~hWA-I(=EFlU4r3^d{Je5fv4ZyUy80*;>mp0RH9){ zJu@YGbpdDOjJR)zT=Md@&12QgAqsm-&TSFO+5oI=<Lnxa9=1Y?k|GzWX`A~nP)IRZ zf6C2swl4)B0l&Oi6T$5Mz?kFWxp$6Pb_S|z)7TF@PdV36IUKpdB>ZUrdxvuF=Mtz2 z!efBp%z-%prIARfWOb$S`XLBx3&fCyF;8*H*2_nVGHWi$M;wVFdTprQ^k{_!3CRTA z`C&mS%~!L#^=p2}?p9f1o{Dv*pn*>njDwM!Q>}trEioKY`@dPpDx|_!K_Q!^dfqzJ zLBh03PwH3w+BmfHD|^stb~byHA%fRHdqWN5p#fuQK7Ofyy7-BT1(xC?Uy00>k|<Wm zG!f;%PdE0~?q{W7+23$Fea2kn93ehu%~6^Oq-C!k+Wwg?*!NJjifIs5xL=LdfM%q( zH@AuC30lrDR9CWQ$19$&uj!{&r`$7Ra<8tujfm!jLLOy@obK#Y>yOJ}zMG|xllj9t zVn(1~9_R3u%URE&0CYru?gB!KK^+%cvFd4PqI;&DPfQmM5`-&;(&){Zi>1oDeZqI` zt}D^<88GziqIsm%{*Ubu_>oL7!jT{C6(ZHNe#gTVl`Fy4Fs{*MZgk^EZ6q!igLu5K zdePy`Ibn3pALiud%)iUyPXzhLbLikng0Mri1z)&B4}6Hn%UV~sVZ<UwD#HG-gS386 z^?QtPQ|b$%{BYL~Y9LWMG`AszLY|7E9Hu<B0JUvO!{3Fj+Cc~Lz_Lo-u7?^65*3Vs z4r(t$E2tt~=LO`?V$Qem>x-!5(8pCROgz1U$BmX}HjAfKxojmJLViHGP;9^GD&k(X z+hMQPuK{y|LLA=Y)%3o_uMT{JK)>8knts1%i*gFe0w{KlivUSQ5(mPIBcwD4Y^5a6 z+(XtGLTQgEpZ)bf%EQb82=7mZkzw|%bN^x%m@a{yPIA`n8W{uopQ4KBF%=@gUT%{p zEf2tp4n(VZCWbba<&cUE>JH%jQP;W)1gmF@9s-eiU@wO_KD_?_bVmmd1~w??CWilt zioyR<j9Ka5Ye4uirfoIvnKKy)?0FkRLc1C&^O~EMFg31K*R7hctOMs{X!SPx{w(00 z>MV09W-=%l)+t)p^b>08b9sqse&RmF2rN~{@6ZtLRzT-JkuOvzVs3^ItCOf4=H}oJ zeU)x|g!;9h1qPm`Y{9>Ax;cagAK29KgEqI?or#ALs(^sf4sOC3ryj$<S=gHCS4?I@ zC44Z5h1I1D_VLymvW){5QpUDT>O+<T!A%V)k!vhr@U7Y6KRai|e_(SPPIYje&qSJI zp1xf*!XMk_C6lKtQ!mO>VBuidR0oF@6^iP_^SwA1h*C~QaZ@8{XVwV2IL2$&7@a{b zt|Aeg4mLK+jRBK+#Uch++CX2*ZS`Obn2XiJ4a@lJr%QX5laDVBu&IlxXcZ=I+aKme z5i>ovNPj=&vSy&r(ZmfAE!QAR#r&YJ#7YZ)u4`v2Vdy_?p2Yk)sErt+L7WGEVR8Oo zmFuSr6e`hPS==`qWqxC)V&48+O;s@o2Uc{S*ooW*=iCsc71?`I^_0-=QdluST$0&i zY>)n%*~yf$z_n%o*LCR}scC@MeDU$z<T=G2Q7{3O>rt6jQpn+a8Y?;IG|Ts>py&;8 zXV?Eg!m|o=OYB3iU2`l&+Vlc;x)0I{PWL`K%Xz3eOcX1&Ejm;KL<&njfV`!D2D_-u zI$ATDD9bmh4^<z53P?>Vv;acDnRwV6^R&7|y1SuoeVqHwff*W4Y;^n7QI!=5a93~Z z?~G)bt5l_2n@WTeq&T6lU<{PcN-EE!6Q+Uy@)MdUdFgBM)ae~#498tf&1K;_e?JDT z*GUn<SfSY0s$Yu1Xi+aaK>~uZ%dUp{Do?{-yJuI*W_lr<Pg0Aoa9{jyvqIp-$|LZE z&+o?tbtM$g=_~A<Bp7k}H#9`fbrfxYm=6U(!ub(k=c1Ej-5-W|QP_Hjmmcl&sfoz# zh%95XCa9MOei!986v*m;2k}yhR0R#d7Jykigb@#);M{J7PlyFFlBd?=gCw1(gs0Xq zj9aUeL|!oUtG20nJd8srjV6HBeA?sgAYK@3?av-4HY4*ZppTogqs(?11>M=$Q}}`D z0hc%rwmrTr;i2~&@Z)wtVgU1-rux_HhoiiRu;WUnp?7F3dX3Jxe2GK%b**0ois7XI zlLErhIwEcNJhIX!L;)d47lOVCQq>hgk}1~AUFC{4Ho26@kTRXHZ*@~aOSJBbwfPir zJV_Lzeo(A`P*HBDch(2287iYvhS!)%t<`AXn~~DuCi)8y-2`=hhRu4A?Gb0Q&&D_l zV7{?*k>IAC<pB#K9)<#$$+-&e?I$M5hpKqNJy#yB?Tnj3XLyW}c{SNop9`9;yoW!h z1^&}eF|V95DYD}N$1sXKb@C#6YZz?@a6ayRQHig>1tgI8f*^!6+Tr5_d0ZZC$xqps z8gI332LJ{~PyI44JK>oK3t*<tg8xcn+E21ik#<fPT4_x1{e{|EfjSnS_*~NC7~#tc z*&e^Bh9<oiC4$@;s3mg>KNMnTS~>>!=x2yxA_*`@>Nv$t;TzZQNDlW>DBuivyyF1X zgX{^FOm2*~^{T7WUu#{@28AUh_L+Z5EC%@J^lf+bP_LJCt@+#r(%^@m)g98p2zv5V zZdwSYAw~HWfnAM_Qvq2{8S}}l${n$`+5>eHP=UebBczhW<E-33Qu}8-^fA)tuek+U zncP+0a&MmW7D6#FlC4J)Bbz{Qj(=8+mCl<>v-9l!Wx#iUvh(dAPmg!2)d;Jnl^are ze_i3`qjLcYO(i=Phz&dGM_A%kFTj2DCj?2saJz6m;wkxgl;s>ofN%Vy{kWwq*G4Y? zO$EJ*CXJrqYz|uKr<1=!6A#g-A8D1UvfxydYk^L#y)F4SnZ!&j2|Rh9dM`J@8b?w) z@#YGd2u+1MAlO(}cDRRuwl60UI1c(^FUddFf8#gPlYKJJ?}C9NhoeV2CkC6EmMbj$ zKKPjj*kL@biTuw*3%EeVcmw}WH{$;(|AjgIlx!HiTKRd-1uywYqBwzkgKfvrqCByN zk`1#K!pS=1u~v)^XqCGJ)Tkfy09K}G?v}qL4H2A`kzb@@YFU*KmShBJwuY0XXBt?8 z{l(Pm{5|3ltoE?Ve+9Fr+CF#XRO+P@E^74D-s`QWHK9xTPSWMWd%g8BeXx4|XKj5x z<3Nr>8R`e0FAtt`SqX;Gi}7i~-RTzY76Ajs)c2f6X_?bUiV@Q}+u|aBU%0x8;9&<> zL)-`=LtH2+n})fm9=4>iS_Vl{W+o~jgpkLsOH9k{f>4wQb$MfS1i_^JT-AxLSXu46 zt7|z`w?uvg<Yb9ue;Oq;bBR20nWP$Nz4IaZPyjmh4?y`O4>z%kGYSj|wZmGjbP^vD znlJUCaDEQN*$pYi4k*GVC9CA<(^X#5&k?D_4&N-43+>{TcPxuc!qWs1`C`&oo}<Pa zDouJgo+<9???;4+1<F@E0-TmpC|<*QP&59^>41!(=?B;N=@$bRNu8fUaYXz0VEG~~ zFkv|%ILOmb#T?W(C3qe=RvNCTSC2;Y)g0g*2ylm}6_8LTnA6kP16r#$J@zeHi#G9x zKd;fHdv`d-NFLn;az%~jQ&KF-Pre+jTFmD;vRCoLd42U#H}Icc=M$q;{MjHpFcYsK zMf<qmU0~k2pX#WE_HV#k%(4Qx)HGxW3D2Q?WsXOaTW~iDb&$?K;sTj0?krwrpY*Tp zEZq9_-u4;7sxF(?XSAf@B}bgqW60!O^t4*Kgu-8_h|x%XzW1Ftz=oD_P-4coQ@`I( z03WU|<wUG~yunS6eVgMA7@3u-TvIeTprn#K24NF$(D8Wzr%ch(y!o0nb-fp!hD&iy z!5ak=x@w^7sX@z4{#5vPg_opmcI_ZA-!;x6>5j}r$0+}M)@LIFq+Pq8>EoA@!8#CH z@D%zrKVwgYrm6apQX--wE5QY}0^MRI$u1aq>U1~F1T|W%9&Mf4IhLw`C);Ca{0Dtl z`)N2n`-V`FP>O$aKi<MGGM-UEVl-BSMtRtBo^pc!cYvNHr!-KRP=(RaMI#ndf?jTJ zk$a6L7B4-XV@VH<8tg!*n9)4TjAv1)fME>ta^-eW2uO(WLI~+o2|;-6o*~Mhp`ozH z&mBO%OYCT!nN=e~tjF=T!3<jG8)XJ7Y2JwOd1VZkJH18e<)Q`P@(zj-ts$_<NwCM8 zD5r4CHoij`BbQdq#?0|X!k6@#{IfdTl^n0M{J9Dm|9iq28!T>!rdU6Xcjv+R6;t$> zcgufNHZm*OQ`7TwbWRv<6i96W-#*5T-5XJ_qcElAtsmel+NfZ3s4kkp(-TK3BFoQO zsK*XO@?zUuHA!><Utb>_$QS%B6JKFi6c`_E?;N63#nK5Y1Lz#Nx;}*{Gw!99!G=AW zLNZ09sV!5|G9y!ixIg+YIwDc-$G@4z+aVv|E*GJ#mVS$#?gMVVG&(x+oh2BCs@#Yr zI!`jLuZdKs=(e6E-vI@(kw&W-o#|=VjoASF+e(Wjm9q!3jy`s};a{MS6{nnLm(W=3 z^Q@SPu&gEqwN#8(6h0_Dd%N!y`u$ArAinAH!7NGczPpCY0+k^_7_lW&`WeT~b7uO# zbz(v#ogJtKysXu)w}aLgzRC~pRBvsF>}mk@89cALfX}949X|NoEKs6o5MJXZY}=H# z8sm-acIzQ+*m~j^hX?s&mGTM(;Is;!+*qn^ek+gHKNZ;ZTfTn^R{@mOmb0;pZSv}^ zk?Bg?5h_H^;jAeZpXZ*cEoo#Jy3;cMyc4%XLag8FwT-2)rltgO#9Q${SXYG^Q9HsF zP4l{fnaAQ7_==D;{agZR1|G1sOviTlM!x|Woz~S83y`1-sru+36WdI@qDZ81s!%Vc zV@*ZHftJav!miIVISzO#S<=#Nl1md6YPx9D(RC~K8uMBv8JR+GMZWH=ZUC6Q^&&Kp zEDwWTph-kpELOrU%_r|DgzK@hI!Z-B>KzW`ugqJoTq(y(R3TwvQBq*o|3|tBRcjA^ zD7lwU6w&TC<!IhSrR0T5?p`;VIFJKCEO|3g?}24;u&t@FFhUd=P6tLyAb7bhAzK+N zG3&W6tY3y|*rE9N;U)pR{2BHGI<kt#8LzRdDCoOuxVU4V8vq4lzI`U8*U)oLMIN^r zs&&0#gGi5tUXiWPJ4Fj0dlpx<G?N_|sZ;1+-x+;I@JG1-rClMH(r<d{U@_zcaK5T3 zQmXwrf8FjUBZ=P)q7qhK6uGIQg>}3>wY0?(QT(^v)xXNAhK1m*Gu>|Kd6WH8G-WkX zGH*tUa0B0X3FV<`3ja&NRdqm{tow$S3*UYfo{ucrMe7=e!!Xqm8Z{-dyCkQN))vu! zHS7f1@(inHUW&jLCsh?Bdf!_=s-NB9#5W61-J+7p)jU7F_1b6`GNYhAuZu4Mp^x%2 zm|3{KKVH^r0E+LZrF@JAoK76WBZWVOSEo>~2t8&2R5tq+RfJ<-B>(;*!3$gd|Ljqg zwPt;&302z!-oe7_+9m2VkmN!#mTn&*3%KUH8HKiHMAak$Q9Uoa>jK!HYH|_XvDNmT z8#NLSYuG&B#S~l>AZ_J|z4tP&k+j9tBfSV62Cea(_SyqRiIn1ncxGrTd4dy$Xl71R zAoqn<y4<i@MF|ASxlsSv*iZSOTBE5j0-E*|bTvcWR1a7kVcp>5oAis-Cfl>uVr~)V z)oo-Who3M73Z|AeM`N!3kaFIgJ`u^)+(J>{`xG1#g!_~3MjL^Be=gJXXkE;8jX$(A zFm*tj0#jubuyu$WcL>Nm@At~)JHB+C0I2N@-cu<ZY2{R&uqnUNJ*W_AfVmBZnv6=I z4cp-!vZYU_P5%MD6E5hQo1W~fw0HE1Bp=Q7I}C?1(lACn$uoeHTV!8INRFA(#XF-5 zz+S!4=1(2<d?&P;Bilu^pfKzIgJx}n)DyB=2}O9~UQ%qNAB^_wY<iCYVTk=XOTOav zILn7*@;}=n{m!y-a@&E*Lfi}#jvdksJ>+h~LSm1Y?4!rockpNMbsGXFEuT1@T*m>f zyfClj?#znF3u|k(Q|Sl=SGdTAcod$q|1GJ!C;3kWWECX<rBt-->F;p0i%}3S+WQbS zQyI5!0tX~lU>%>od10=06-%AjO}4_^gd=ohG7CGklHKD`B^pJ3Nc9tAFKzzT;<2OL zwi>ZknW(aF2j<Zk3K^j%t~~V*OnyuoiI5_N?xD<~Dcj_s_YfKtL`I0U3D^(llrVR~ ztWP5thPwHOEfU!f-Rlq#fcwL5D*ZZ9(DWGni7hjKNnZ$CS?2jzlwN!@?qV~XwVL>@ z4Tp1&ay@%~iJ<zD&>;H(VI99?QZOmWW)WaE+0E8cf5TX-mov_*F*WVU_og+SEm4bv zhD36Cs_0s!?-9VKr9WF7ikpmK)vfXi$m*Ym^5SbIj1CL#=H0+Ci&U5b%4SM7Pvp>% zIW&v#sCSW@i#phJZ3P73;B+zISK|%Ik+gV9AdXR+Q;qL-1u|sC3FS5AYZQ4^?mZ;o zpD{L4zJF7{?Gw~<^n(8&ZHjBp*t6$U4okp%LVx<n#Ej}q`e4Cu>X2c(tImnP*|Dc6 zr_uSKPGM`qUcxYKV3Plly_*T;&qE-y|M~Lg*X$d$cy?JYNbCSm1FG!IS?LX5m>S69 zAQ`8uzO?E`;gRZ;!^~tH)v?AG8`oa;6}ttEhapR-nPr&`R9}F5Pz7ogPgVjg1gj5} zhehlNU0&XDN1zvvr8_uZGi{u-3JvS+Fn(ys*f~Ji>%k-rkoQbwe1+PL671U5V37W; z0dwpCQYJfoKiBMjh&OS%Rzy1Ke6RSm8Ut9#S<*zhfRnU`y{Az;<a`WP9c9i#nV)yN z_{n)T-pZhPpSdBcqpwO-qW6FNt`Exf(JT{kqe*m-v7lD%eA3KyT_VO16yHEFQPGi) zqgypGjQaS`+%DyPtx9;juwlZ1!E3^r2w-F$)c)mWhc{Z%riorfH^tj$HHVYA5qABT zh58kf?qDd1(_RN;ZV`wv6_Gn^vtT%@I!Mg1AFH4C)bQ!KTlhi-nh6Hr6snuy2@S&T z9wM$|e|Vez*vR+%z_W~v1`FnC8)moUVJxd*snspUdW$|V3zs_=$n`Zlv@|m%H!enF zj}Jr(=s2(xiHHmutidUk+LBo)#TsMt$WTq;KJ9*qFEIv)`~v9=qh}p(D=xUD4H!{d zsH;nvL(pX*IQSg@^foU+RSd&o+MP7ds)q>!lDg;B{L?Z+lZB{ILZku7DJNOKPayfZ ztDiOOmt849z(~+8LeR#aW5IjV`8sQW?Yc~CH1kLZLu|h6tt`G1%D_!E`9AuHD)zG~ z!!c=UZP=1pIpMG|I9u|h4CjqDNZ)?VHAH|NepV94zDSpf$?t4PH(y;!lCEM$PUX$m zS}S6ECAZe9d{7eZ(FS?Mm*{E-I3#YB+(j;^P2&6OYkL4@nt5EUDGi1bEXI+qd2p~H zwtGkVS8LC$H`K4`(+ncfBlW`u>yVG--kJ_);|b9}8A)xvw1q8ReUf;_Ek>5Q&Gi76 zs#mg71<w~cXTNQuf;M!_A$NI!x9KO3Vk`pM3ic2@6-!II!O|e`!Qv2a%aHx3xK!o# z_M6=FM7b{!Z8jOm)&Z}~I|?HX?~^PBwBGFOhP<$IG4MZae&Q*$MXfWOC5AQzBQhIH z4@iokaGj5!Vk>f=&5j<w{!6<(Rhtz|1iXBeY@(;QAHuJEv``-|mQojI2+8YiwPpxJ ztR04ePe_S{1j1GNxfAJonZpf|(fRN6V0B$hvr1j^Y^Vc<kG59QSX^q4kV<0#AoJub zN;Vd=z{z9W@-75m(~;zX{h(-H{NfHzS0d9~@!V^sHPlZc@@;WVK3Oh8%-<~O7&1Z# zRaDw<_x(ztmpyn#4#+bTQ!luKb4nS|$sM0-%>epya;HE>$^L~8*;=NxN|)VZ(J@%S z=fdA&Qeo<PMr6VBovXj!g4YEt=A5<vjso%s=S;zrnYzt-K@c^v^b^k7_ypq(Ytdcw zT?*{_i*!N7^VZS3xC^;HWMb9AcwHJ%T{8$|>)Xy~boIG47X)gdWf*DrYcXiUzuJ%# zg?_b)gU6yCp?9pE#l<S|AdFyDw%H514Cy9Ph$-gO^*$JD1*+C=T05okgXYSeJk%eF z$m?e89i4HF;KKl!hf4&ACzo?!+<o%v)@GYBqL(TTkgmP?E?f~24jz0Y71?(-Zh}WT zAiYJ`5K>(%EW(WDSDtU{t@c6{8KqhzZmZQk=_v`;b;`j`zhlY(QF-^IHn46Uw0av# z0E94<t=vJ_%@n(5pYDsz&9$ln@XhTapz!+yJ#&YcO2gO5PJS#nMS5y-08`Vd9Uq^- zFcE_JQBb-6hi9xYBgX5Ip_)NGDEO_u24_zZ%Q!}K7xV-p;NhH2xGgdGp2@slRznM_ zCCnfE*yGWLO8Z1%4EF8871E%|09{ncC|T*V-B6E|CX>XP%VJLB0Q(@lb84)gdV9mR zq_5fv0pOynD(ro!j7weYLZ;gdXwvE|j&i!_)*wjIX5Q!TRYH3MK5+v{Lud;Of$S>o zOAJ=9gT~MVO8?Px*ctLTeS?9%Sdywez~EuD0ix@<QG+|AV@6JQWQ_CZMaBRmLAQw4 zpB(V-jvvZlqc`x0Pp*WQYD8PM;~hS<##=u4!V~#D$N+~&*+Iq~=Z#%ByMGE<Zuc>> z7sW#{gD80qd$b5iuXz2_@kU-jyq=`AeoW-zpJ;C{ecegrI`7Yl+<WU*d&WMA!Fr;d z2C7T1$T%4uJjt(~q{D;LFiI{&Y7lB9H|7fqrW{qfGo(L2Cu1*(qn`*g<Knp9(5ga! zyyJh}3a4%8$snevujl&M*^E3OCTujRsUz&qruX^pI=BI>&)uG(*g7QB)JjLo@*cgL z8;uf>ykp*P)mG~^15Z29NxU2lRrnBo{I0>d<q(f@eoCTRR9vcBnCzz7B-Qma+02&? zgnN_JMG^@Y{kXSZ#f!`W5w5gN#6%rdO@>`TUnc(liuEe4g3i0B+%YZsfo}D$*-&0c zZAtDeo~yFjNm5{W*?UwsxeQq+H$1sSnNg*R;znxb?&y95k)r%`p{3<#E;mtw?=ieZ zizhTtbcF%2<itvLtBxi%_>l?g$;p-tnbs0ftz17aSvnQ6q(&tGC%ENKu`s|=$TEm^ z)@fDReqO#RVM{nwuPODj=9Jj==-Tz&+1_#0C<+l#|FsUdR?P;(El5#1S?bMPBk?9@ z^yd7~@BJYl{tXBI`{^Od7SR+9#>hBGiOam7!F33_%t@YdU)FK=B3g=<NR$jgNjYvT z)N$aj{3AQn_kofX?YGdx;T3|U(>d!$PcS@$mYfrYt~G*4E*ik;!drY3-XjUQ!tDMc zA|@K5ucf6*zs@wAdL8eRB~=n5noN2gp*h!QTWs3u2%+udrVqn1zmh~E$VT>x@iLDn zVa59BczhyaC{2E`+0!eeu~Fble1MYZ8kM-7>fxW0535Pb74s9fA`@PEC!)m4LjK&= z_jd;kk4EDdmFXU8QxUi+LxYpsu}TqRE@Bl^Uj_t&tD-DZag2aBUnlBrsyl&b=dO0Z zi`i?2`vd1|{ZtSexrPo5^Oh1G^>_+{*mRs0#Ojb5yvQQ~!ff0%K_JiWp+e0eFva4m z{+eiS82dejX8^bF%|b}Gqzr_EA3R9g$>tT^vrTu%4<r$=gkO{m4gOXYXGrT?hL>LL z={WV2CP(rA7M3sxU5-D%-xF%c$4cN2f5da31^WDKuPAg*298__8av=M4EBe1T>PhB zd2LEjSHW+Vzcse#$iVT-$vW`dd8QDaTik{>{cmS>H_e2o;BIF0=YKeCxOP0gPWuI` znt%#Z>pem6)k^*tsHC3$tC!6}v;~58sfJf?A_0h^5bUJzM~rZfTrn8J6*nb%#n;!q z7J^Z?$wuY}9xoMAeLPrm;p(zxY^!f;{Mu=BXjc1ad<9CCEWs>RXaQa(c`jiVGut1p zp*Ry?EdAG@0QLNER~n}cm=zWBeK5JMMo2nLzBpscs}lN2q|YE%ibCdO8E_QICYQv{ z<kVXqu}2o!tdt{2&{&Y&%!+*Ylmk^;qX|gs?9CQLY><lMPG_e+jO~^TwdZhy88IU_ zrrS2(vgzmS%nq{k*B{`H=jt7Wk#pG@OSdt`38(*fvd-1qy7lSTd>5I&<mjpBv2aKk zy9lxp1hgoaifBJ}KEr|_CZE^4jrIVXHtDx@<!7wu@VgLPI3#OxXbP>W&xb#zM3#bc z__#yjh?-T#eJnZ_n)U&mZHXIc92+FFI40&37g{?MeM?jXCiiy-@fiFBo{!hd1KTy^ z5Y!mz#9clBi#Q4L{vFeC-y33N(p0*$v-_NBW9s1=b*FC>{qXlcw8i1|zoyeppZ1es zxAcVcp5A;Pvw;&JDJeBP;e)nMGNKE%d^U2#&UpB@+*tD0!Qc&Y;HQj<78&Y(fb*1C z1IJv655A)5LKmp2O_-=C_SOLgeR6u_n=_2k;CQzb0U?GrJqaNeS*<iFtT>hP%1$ZU zi1RSH{xo=DAv9e*&k5hv6dy#HhJEZX&Gfm9QA=A@Mv|8Uyc?4mRaWKNx`b1?8qswS zUp7r(16lZyuCj!Y<lm^u6OWyi%c4774fbpBIu*o8%Q!<;b#I=VfPOxr$UI53KtDsu zQq>RdFza(Asff=0B^_lPMs;_k_g1HhJgmCKaFS_x)OBcd6?kt9wDRZ}VO9wy(tCus zk=M+~Mi6G|M+L|%gpT<JRMN|JH(<|X(v%XZh@aEB)H@>}HURL+`TaL(5P&C$Vp|e6 zR(i(<aVNINsk6~z<3d^iEyNvw>3e|g;wQguk6q9>#Y!W_u7ph;>gw?VIlg@+=QK2M zEEm;?J4@i*RHYW9EBD4UUh>T3W`sDOyWT`S%PkcX>xyvZ8yw#J`LE|`BDlNwfUxce zQ*+9<<%z8+H%JzkaTNKB{5<RS>NQ7^3GSeyh0eW66hve)s6v@4CUEVoG$<fw7(spa zE*%N_!U%vK2tzYt$u?j`-e!q3n;9PeB_MCH;Cj%ai-u=9$gN+{d%<<Uoh;Wj@WS~k zW+Cl<0o%v%*1P??85GF7hVXHHrtb_&LJEzR@<<NFe`=>?MdKYeawJM@{ERAe$MpqS zvfu1Ztqj%JyH7Z$L?~gP8h1wNi1%)C6vUogJ#A5$jN)dM<Cb44+<O3u_7XcJ_&c7q zde*?4OhEg#>Fz$Vm<w^z<3{JIzcs)5JmLt<TC&~^R?$seE_XX!_fBLc=4%{}>HnOK z#Bc72i6=bv3Y#U*^<kMOK`7CC-#5)D=&K!$cMiJeuF8Vo%5T(bwmRM9##^}JMfN^8 z26~gz*Pc`81p?_e-^zLz-i0=rdqs;}PbUyoPnKB&i;h3zVk1OKpvG|n{Z8rP6!KGn zwVfR^EF+b@gBLXI2T;GPX3?C0DS5>m2&rc2^C48U2VkO_T+2;ACO@wT`MW$-{R4dJ zCG?*y7L5n9m<2KX;UMYe3v8NV96NS>ISE%np7BH`m$TLJK7aK~gU4WFGMrM6dX*`Q zaV0Zj8;{`Oc|T}3h_|hZzLU;NC*ezCb?Kg80a(osO56SxBW}_!^&y@z_q@Hi<JC68 z-6-92e`d-C@PMnAAN$x{zZW6IXD+0JFi#m-CH7m8+Xy)D?ZSv3w5(W~_P3Z3;+`Ul ztG4QkHP@7eCSGR`?_AaB0%zZO^Mj?^0l>vre^4DukkUJtl0F0;P&_il*UQ$hCd*Eu zdRBHpcBy@0>0d<i*AamnVNtc-Iz@GkzQ`F&aQ=e59N>{evR4*w8a6d`*!E3+{xnN! zwnT7*k%>v5gA=;4^`FLh{oG}OZA)YS_9|_|)AEB1(B=o$JWUk2Z!(-GWz7YOSXgWq zIjY6>TcQ!Xp`y$ca9Uxtx(SUdBPu?=cpE<D*5{E<G+C^cJFY7+sXb!Oi@@qDuK!Kz zW^R%0MvqeZ$`<3hZo|QBRCRr#$+So2gfs=$0n70lqzJMzZxnRR<{Q=+Si<XFqJzFB zKmi<~(@A1L2q-*^^(*SiJ6y{5$T`TGMRYbMVN(l+Xw;8Rh8?ezg%*k&@X6x`*p?Tl zy{h@HDHADJcTO-E$gCxnzh6bAHA#W+R0=_4?s`Q?P*>ahc^%kGlj|p7VEHI``s>O^ zVLP^>_bZv538U^{2iR|6=8WaY+e}O#{zE>fKj#X1xg_r1>paGNJl5ZwN1BV7m^9=a z?<jNj>NGxdr>s=LY#;L*2?P_p_qTXN>Dv^J%#Z>>`^mLxKzR1jXx>jtss4*O@Rbr0 zuM~f<cu@v?5!!#XfcGV{5D@LfWVl{AqbIo0#xm#a1yq%nrDz!eJQJ%!C`!eRL9+JH zx(U<5>V;uTSq-E?-6|CRXC`c?6QFK?#1>8iWaFbIWfAx>e?%DuVcdBNS?ps$S_`RG zQ=m!h#%#d$5tmb-!+U!t4IF{BI@UwqWE0uwd|Xg3n_6R0KNquK&c=J+MsY<wUq00` zb)=+)>nF>pa3fO~XSdN}vkjI#3sfV%2TdCK$1!B3Exsk<K+Rd)+|b47@#<0>g0_5^ zqCcX@XYZ2dC5F+fl`E`KQj$>ntyG0Lo2-ZCM~kUzHXtft8N*rQs_9Z7I4Md)XSGZo z>5R18a~`m?KkL(gvgqbA>!g{-s5f_{`{}Q+m&@2LlMsvCIXAO8Vnw^)=XZzD0cyO& zsSU%R2@B!>169~n|H>En9$P9z*-KZSylCnmy3MYbd61(8&w|D|6s~idDOA#|0Epo; zC(H^XMOQlVzOkv?*kRb{y)!5F&fYyb?6%&|iL7|M5R6@8c{An!t^QrBbt+s9(8l2O zms8NhL-;4X3mQE6P0lmc6*Uj(*?rZr1Bby>+5whxExzMYOW~`}$31fxcY;f#qm1H{ zzbttn$}@$e>YD4epQ=5u`p|qcan2<m>I$U{w`u@ye<uy@5LYqSC2s9EUV0(baw>e` z2rZo+)j^FbsJ;X$aAfRQctCmD$J?^@2J^wYaf0_!UtWGJ(Sg3bVy2^<=&+NGCE>_e z!G6ucXvMa^7;74yjy61MW?QZ}>MV#az2G9Bn1H}Trs^1^#fZZQZSc?t52npAbL}!2 z{;D{(Nu})N9ofc++}I8^VHmu<3^wQOE&x0D#9E&_1q_6X)MM{Ev;P@^P-7f7%cxk0 ziMu(g>b;6H1nDWx3Re7P%!~PWHTv&Y&BweP$!sx0`o$oWJ-E2K>@nWE9CKpY&h7;z znav`52M{u(QIk9;eryww>l=qqu>NQBbe&)S?gE8#;u#LHiYhgC?|ClRmAC8oPywgF zrz{z@aFyto5PZ1C!d3t)AwyPVw&pSEz^fDsj+EGsPW|%GuZ~9X=)^m6^N21iuN|i) zSO%nWyi(bF$y_^n6yr{CUiwa4<Joy5M>hKY`$xHBQSz_&=MFK_<i`%wA*-p)?GqH( zb(&Z585NEbgPh(^xT3lDPVeeHNi!|=lkI->ocUP!-zzzq%C9aE+ZAW-7U$OB$8G2m zNOg>L3AM$whBV!N)ZLzmk*l(yh)3UR=HBElEKD7wMh&tn=8x%A4I_)1ytHq$R@Qdk z4ip?D);p<@@gs0pMv4+<?O(-tc5^LZXJJ}+<N0m0KLgqg;QBCJvs~@vddOP7t`AQf zbXxn=;|COgPr;Ej3vewB0!Jl!hqYf2`_y~{IUr0z({zzkbR7!+*q=)C3>L}x(}Ui? z8ms+Ex0NXS=0K+G8nIOch=zF_2!?L>i+U)$1w6Zb$cvQqa>h?-Apzb;kp`QeLP0z# zEE-u#gJ<oxwAo_98JV4ib1#SE?PlA&@7kL;BY;h8cj8zttYBA;@-|F$@#;z+IkEl2 zHZd8;pYDWyCF69o%Rl?yEP_12<FBM~-Xs{vP=VCgMCLaSR+K<^3l9`;;Xi&H1tZUi zbF0~NmN`Q0W$ucU;x+mvR0Lxuo`X7lCdnh=v~widN4n2Sf|z8laEUT=rJ5x^=O+Ou zD)lfEr78;Nm6NzrMxSi++n3l+PLUb^ZOITrag%+S$riF9eWO+;ljL0&Kkm~)`%Ui9 z#=M3&c6rv2T+7eTFp^EM)=W15XmIvM0gLIzvWTp8*S=WfV;GeRPuyP4A742x>V5+h z<QWawlPeZdgCcW_5>!?FZ0out2ZH9?y;6h^?6<QJ?3j8>YF?-(GM$zOK)(Q-2V_IU z!A$$pmA8djeC2u(8{Ym~&1K|ijq>XteCV+s9G2f_HWq+RKW*0=fF!GE*cTc?uu|}R z+~hol?hT`;)uWZp@(5)HG;;t~+D>jLKgU6F_sihNLm~p9N7@FvAVWno3~-F!W!!_Y zAU)MfyKDd_K-j<HnlXA#NhM+It(}aagj^T;87qFlJ?IyyEX&8feK{m&1WJm1&z6F0 zh(`H~6udkXkQ`UO8s<UuLGKK05x(~QU98D26JFdR4Rk+94}cFxl}#hpN;($}OL@Da zsyy9uNRN30LHQ5vf=^G2<j0D9)oyY@3u+7u+M{!;H%4Djj`!%r#~EQUrn>jh#OCD| zWrbBhq_`Duvw<7>#1vsv-NO2*Y?*PYYMg9;xJ1M9bOWc*J5DZa7+}HYI4!g=H|zy6 z>3JoP3wSdg=0iF})3Y%o#w(Kl#mx_F+p)LfdaB)wBRLIp0j7c|LvnxAWU2h5gSUj0 zoReh_-yjD(tdQ6FH!TH`q+JrHU?dhrtj7SUU(>4ytcQa@*k<%0`z*;i_0nGz+HoX? zxM$0@h|c!@9N8-*$W7VF%6kd#62cEG`aE;!;EedhZ=^C7hp6*(t0t9Q(2IN++TVP9 z-~bRxFumJ@7Z_ySlbSZa9r3y-2b)Pi-uTv@R!2TKh`*vef}yJkWLYw`BudG^$nW_r zp_g!b(eNb6Z{`VqPo`Y+2{PtQy`mh)Eu-1EpGN-)gVgWkhX>l5?YDUU$yt704t6Al zB&cwIp_h;Y%h}c=luP(d=U?D<XwmPa$M&l{d<yiZ6pmH<-INYjoL$udJte;^<?kjc zxPE^kGQ4hCYXHV@StaihZGw<)A_n(XY9<2-`Y-)a>7&H)b2(5>51udHHGaQPj>y%M zHYB4EU=kYpi51_MER{h+z67Xj{7oGAmA$mEo>*IzPGQTR9cfI59bI$v1V6lT=F)G4 zPWS8wD7wS^pR)d8gDTfHdTha@ly1!LvcuUqeXZbzfYHllznkdygY0<Cy-1GsV<f#1 zKvMkO=4c%bTYs06DKg<r2bBybj=vuER0op?Xcwo2O`I^;@nIacS1?Y`b&7q8Q@{I( zv-Tl-n)OU^xu?<fy=+V@(C@YqrOc%h^eSX)aD^R_i;ow*xa7BX&*fUhnf~l%%u|RS zZAI+Ef|oiTraqN6Ai#o_TflUDXsv~1@tZTGq<&8qANzQIc?LU91D8CEd(*xlELQ;o zsqL`0r2<RvLN#j%Z7#?(Sxm@L=3cwGfowtX!Zw=$Kv}D}Gn!uhzc>SO{6if%xRpc7 zU{H@WJ&hoDV-pwV^2mdhD{t`$_sfZ-N;n^Vp3Vzx>TQ~)AHtJSS}`F}ZFrDKJLnv^ zk_csjV+iZo)JVwrxM`b#*JgghkaP{~)AuzIs^NBOX0xIEqb*yy9R%&m2ok98PE!yZ zqI=SKW2)F(;ao*xRU6|TgWkWkDtqD*_W!m3Vx+G2;v8dAGjPFfpW0KtX){`dHNWPS zdX5W8$&K(HNY+jLhkg_ibFbTp%trr`#q~*!dur|4-P<ohV!7Ka=QTO|{bi+^c{~-u z=N73;);s-ghu$7eCd&Pz+h$g9>XV#mg02(Jjj)6bXOZWZG}QnF^2pnz9(f5&aVfHj z^oVHgbz0~5xG?b#bS|c*b!H{_-0z;zzL~^eZ0&5mzz+0}|KF2S2kcV|aZbM48iKEn zFPhn-;T1(Orpt&#N0WhWb`ao}1&FLxsc?7x3{hM(WWYU|3Mf&en!y*rkdn~oTa7|X z>(FJYtpY{2`v;uc7IkYU;A_X__P!5c73M%MjxM>y94LSrJ7%3yNY@RW;O3ku_##m9 zX6bj&e}4*5HN*3io&kG3EFYh=Mv=KZmY5>2x{7bfGotazA%1{L`gs8Yy<ui*MwMUz z*NPf^+v$>J7$dRJnDNfzJ+$+2022Lqe%a@fq{fwc`LV4D^ndL3Xl~Ua_vi{)$H`w) z*8@#kO9|udY!JoWEJNZHT(>U?a26YAQpt)$yc!=L36%_$DNfiKp<gg(u`Pfx73UJd z9xtxDKvEdej$YWVY~k^)wKc8jthJTk09muPr=@_bMydMDI&a%x>|=leR*+s~sDW)$ zJ9kF7{Bli-v&cLO!<G|jMK0xGHUKBL-RYm8oZ0|pMr+UcmNvkym(*dSAzc(3fDgXA zI$;iVQ<QNdgyzWtSOhUknQ`qUL`etxg*s|(8XX1<*9JSV>jb~jA?Plep~=9RaX5x0 z9cV+8-nGQ-dP<6aH{<H=6wQ3Eqd&*{*^2v3^~h`FNSm)r*k-xP(+eisctI-xx@QLN z*-exfmoUU0EM)YO*MZFLeL^J9_*O~`5Y3<Tc*dS8{$O(Zc~<%AYDn_N(5ol#Q+qG9 zFRbU$kP=n2Uci>aZRlOvR#d<B<2y0=i~Iw6?xl9jl57uC@ZJf|j#<6t%mOiQ<}ejl zFd6&6hypWRVJu8U`;t#ppT8=^1RY>thr?F2cVidw%`%4z-}Mq03ycCQnWdDzlWW4i zNnny7NCGWB0)=X$xew%9mI3p(7#b6Ts2w?bPA;g?-DM^DF~46_%g=HK?omkWY^_|1 zj-eDG^rY1CRcttjwEzDcC~e}kk$mDj74ZfZJp^&ZQpgZ{u<oX98K@U3Oq$XoK$%5o z-xB{lH+h3MANI5e^cYlrpN}=<6P0-aQQ({z7=h(4m%)_HXE5Et_3Yu;1OC^0%Hoqj z3gW^D-Qued50Vx-uY~r3N6L$2j9!x%uF{D(iv9}eIl{CNbV4pEpCp*GtfZAzas2)M z^}AZi4P%3@Zl(=P_xESGjN;fITP&OZycjwi%AA$~ONUJM{8e=6k(<KFGH4N8v4RO% z_N9Hp4+F(Q?S|CsG9d_l&gVbv)3Ng0>Y+Q&pklGG8idDE))Ci8M^I#lG&q9kyElBg z-td&ZL8`dL2XleYV&nF04txE8S@%$84rvx!wxA|8jD8l(;2-scfkm(AcoYHEJPja{ zz*TDrK7nDS3}9lC=L7-5oN=2EJ~9XsrV+s>m>OIuj1(Ou7VZXh^=P|zDYRv+lB&hQ zcvHFnj|i>`VZp98f@Q{#e4=cdSEK%(-ljS9mTmFJe`V1&y+vhOh7Y>HEYVK!k*f#7 zDU4k#FY`s1!?)h=ib8q|O#<w)#-ffnPjuy<BkbTQH1?Y6&|<z$qEAWT8S{y=F59xh zkF(H(-+=Kecl}XlTl2g=F?>;U7Gz2OI#APPP4<%S_1~&`B1ixSl*!F%14UMfL5EpA zC9xYC@ksl!#iP2a#!n%BMz@OG0mXZP+7pSxos>RdUurUpyqLs}4i#4+ivLsXr2>-O zxdJ3wa!e;^YkF@(YZGue!-ds>>ppMOJ~@)beFt?v;$Z1of|@Kj#%k{F^)JMDKzJ+R zB}gv`vz8uA$l#7=Byr=!)j(o>hO5EtiHgI-3CZ0wJRA97izvYw&26pbE62j>2vhCy zX>bkS_E7FU{&+9I=Ai(>i#$Zx#{l;&Gr2#_EAaTK51dvulEdMD&4@c<V2XL=)Eab2 z>g;KR&bBUBn+_Q-avYmh#FkVK7NqaFJv##GOn`~k2e18p&*~o?SS4xeA;{<+P}!8t z&YR?&dpP%e<HpOzha7p^%}Oo<VE!_3>lj6aU!F}ck5i~dZLm?^kk3SQ+_R$2UbO~D z1XH<1Zm1AYDf)}hD@Tw$aX_QMmHVJYmwy3?hGuE8Dp1HC`ifQmqmq3^MT@!Lwd?py znME$G8XHuZ*~`<cF^m+)09hiY*t}KQ%ZHBOjg6TWHmT(`u&)jU$g7~lZ%U3$JO-F6 zw}IQTMSLZv1s3N{%J#UqDSvojMC4AM`vJU)PD5ey{6soj?HH=UN4?HUEI?_&KgSMx zeZP`l6y{vqHK6_%izAULgVfW%E?1i|-S58WkCd^{f(f}2ZaJNtF?c59YS_@8b>`<o zh0c4iC{2`P0@C5;djkCh$VTewj8pK<Y?A4F8rPBVoG6MIyfd38+>O1^bfW<y+Q_<$ zd?%=zuXMDu*W%KoTsub!w9N?Hq?8}zP{Olo^>$=xSHyIfVO3tqV@CH>(obkcH^>nx zO3-h_;qGxzqj4n7cBCt5nB=S@H(d@a5Oc^yB$;`=!gN>%sy12{{B6~>clf-Ueg~>% zl7~4Fukrf$hcuc*bpnHoC%U2>hW^%X)ld@!PFb>(Pt!UTnwWR%@&7&cawwJ~=}Kk{ zr(Un}!=`lmI{$ft_-4t#G?|=nQ9dztiI58t7aDL(&B${7_M55}ca`d773He|5C~)n z<;^E>7!mNrfEH($bix6R-8-T;{c@Kj+<#dMKGWvh*=G)hxX>OrMsJas_iY<z9eYRt z)wvDvFD_j&9gU5YJV)?k%!oB~2;BEZyviH5I6XUb{09eG<!}`B{lZ?Aa)>d7fDX>D zS-8)v0cNmjAwg?_mpU~6vnB@5kNTBPis_?N@kwds>XSJLf=eUj-mhq?Hi$2bjXPmv zpkpZhAj%=8r8uMjW*O`}Q_~)d>Q@pxUWnU?sfqTuc*_`$12Vd8Bi6hDoW>;zN(Zy* z%v=%JPp1z}SA_d##(S{0NkXA^6<d%N31pkC=QqQiV+67)iu1~$&#w2yrd`=rpY8c+ zDi=`ke-$+4w%veU)-0S=t=T>OIfxWWGLoWo&SIXleBo&rQwII>g0L)YVBn<wRu0A` zGqbkNNTesOdJ+87;cTJ;>Z|s)$sgLyzRe9F+~&#=oA(c7?gli4ZNZ@3)oD#Y%@gxn ziWB`>%@p~f%Iz`PFAyG3Fvbr3Bs|$yC8j3dL&uvv(9+8xt&sLw8_0_7n%7IZQ_Q|% zs4RPiN^S0Awp{8YwEHgq4tnR%*TJW4?^}My4Vh|M%xwOp^`aK~{6HYUn0bbF4soyS z0qS~D6LDqA<cFaX!#af&Qnq%}f9oaEjqX+6J>>q}oFeOUBQEiW((G-SaK6L$P1N+- z2w|-c!MD*9_+hH(&-{EkfIi0VruEO)?_#|+S1sg96s>Vfz(QjKN2}%QzYP29_9M8X z;XRl_9DpTMT^B$xs;?N1hCfX7zN>9TJBgr~)7(>(d=T+Zc*5P*%no)j5)U<pA5`d3 z217lUjJT>A1<+>BK{mPEv)w#)kgs2W)AKPTO=%Y9T+S#bm;h>>_ct?!e1HJ>&q4e6 z$y%VDp)!jY{U3&;oxZ9Hd8ZCLqS?9)V@&iIPZ6o2O@(ZX4yZ?YV-ypQB0Ot%eJtf} zL@4EahB~eq?1*6pvma{g=4Ip;U=zR}P7>$7nmp+HK+^p+JL)=3W+VeeekFyRpQ*M$ z0?PGxp|&ag2#9GK!f4IDH5xO(BR+lIL_e;IO6x`${n5278LFLM;4&!$OK)jDc&jzy z`gNhHuD=?{-2)M|r;xk}D4qD4nd8BvS!~u7n_v#z;RZ2^s?)Mwz;aBR%&YH^u3CwE zIYRXzQ_oTWh13JL2I-?*9c?wjfqk0LrxjsA$j*}P<V9X%uW(ZWJh+=aJ9S_2>>mr; z6gQAIB@DRiY{L9<eI^}v10sjE$_r};en)f{8wQIO6m7st4oLZ1OMTH0S+`ffcFn?| zn5It0zmrG7?Qabr_}P|Awc6;U*=WUbR&;&D<}~hEj!o&SN|56?qzw=}RR3u`;k@*7 z3mFP)Tb@b=pmHd>u?^B8vy22)^Wz$$OHwL+(9@X6W5)P33%IVyUqiEHL+zG%5K*q- z<{#j8+j55|%ew{^$~gA6XxSssz2xf|RkX|2KwrWN+O0ksfY7NjI7Upa9`-WbarhQ3 z53A{r5CpnE?5Z{ko;<rn2L0>U5EbsuT<Kk5P{SRCQiGI5VyI!^-GL=jWB@Mw6?Lw2 z8dC+$n(0&BG&I)~>6l@t`~z?XiW-sMUH4UH6MPfyFF{=MreD~vbpH**DC-!b+2;=X z{y@iVeY~-6+Ogv2N<s55Kp%XBgraudVM^4y<B;B=H10-rJf}A*17Kr7POpKrp(wkE zG;15~^Hn`BcW;P$(xNEbZ64hw<VqVO)mt*SVA%41`<Y5b>&0S@v#)o?qqs<bYlG-q zQns^9D%0+$oV3u5QB=#HK*O&iKfEDMWHHjlb@hU()jwX&`gVR`!<W?pCIC-Wysz08 zp$Whq=q&8Dk=mTh0|6+|03R@>+XrpwoQh9mq5qnp6cYm-uL@=hdGy<Ht|0}F$oX8A z0)7T^BZl_L?6iSKsHsdVwNo?hD0}&T#OC29GB8<GKDU}#9%1o~zf#fF`W`Ue(Y!V` zq<p7jXgpd<XoZKS$U5K<S`Xm@a*D9qw81mbK}NJV>o^8r!-;}lG53>thfOBp_+Pm2 zw+<ulE=(0FN^R2F>7m(FO(_eNZ@^KUthb{TNdORr!0YPAO0RcUyTgHpB6nw_=s+4V z?g|5ft7v=p2p=IK%_oNoHtzLC?)<#>Q!b?Y$3pI%rM>S=I&Qq%VOVjIQVyCS><~0S zBau+c2T#1-T%XJB?Us{qK=|Bj74nHS0dQ$VSGM|zdXI*%nl>WhiEgI0KsytYCjts- z1r4O?FtGiNOu`Au&i|V<tn5QZX!JklyO|gyLy?u>Wtv<=Cy7rb>7rSW6)7@Fytf<_ zYzr-H9YUfmWL(EA00*E;(P>p+@1AKKpp<tY5pE4L9O<D2Q9N(1u{4PAr`qEu*u>eO zPOm)DdxoE|>8*-tdB2%vBi1{z3{NCSFC#c5NfMEHIt){Ho~3uS$*4NYa()W#$0XZf z%*pDKO7NWs>QZf3aO|0h9}hOU@`$6lgMFQ${0fa^AM+$CP-og*IUpVUkqomS>M9T8 zhh5I?J&k(Rx$+}opIC*@J6sIM`7kv#0Lxe%Ns2(^0~JZAzp92g0PnvijYFc*n4^mi zTlf#u_f7CN$!1v5cIT6orMMCb`)mKsv)_dWtKhn2h$24tXJFPGVl|*@m1h{Syp&rV z-!8Qe-2ejU8Uo+J6gJ9?xJx2v?U{xw;Dn~}=LjZ2H5&EGarkNx*|GCa6ocTZ<}+`Q z_gq5U+eOc@9B&+Qd#jQ(^hg;}QI(mD*bTFFWw1|`sk#-x*?rh?FXdxlO`uw_r@nP3 zezOxkyhu`@nGjQ*UcfQs8LZ*5O+}dIrU6qnvhad7euR-H|F!1^#60Re^5nt?UQ;iX z@lC<W>aGw;*4yykkA1AvZ0%FdgB8U9Omy`W;FW1tn=J3|;hn1TY@DrfUZN)U@2OzP z^iNi(B*n_s3f?m(SG@%b#dNlywiI?3H#X@x-4k06+nHlN1B5T(2oy~RdJ>kgo~4rn zaif<PMQKjHoJA)}BQL$R9MG8iCAM`PB}=u`R3r9zpC?vR78N~+OA#_7nO9k|lD!;t zU0HQW4?Xzc{G9_gepl2MK}(G1pBIt4N2S~hy^ikAJu0_r5*3S=oJkq4sU=7ftA@$F zv2Mm{LAPhRG6>8Vh(Zmvq?p%oxr-=oPH(&htjF`q(}}XWzpKwbW28zg*GB*dOf)wl z!!J6GK5Pn0YR;D-6%($7<=qgO1Zib?P!@;_+U?Mg90Fz2)UN9W-N32ym+B_*T;3Z^ z9N1*9dE^+Cv~Yu;eO|pNc|BMhE_g}ht+?iVONA4T_c`q08m<^5l#%4f)32!*^=e&g z_=mTfd@|sKb75+l(lFRY<GtQ8{KaF=C&3h|^Oa5No`klIH&r^(qt}BsW|pb${56xo zIZNSx+fGNBQ7rmB`J4(}(_Gsx6z=cbG7Q#eRvgMued9mp<*pVRNjku*s#^5k!A z%_vl@a(#ze86UPSY+zV52k9~8aPVv`>C!aoFeF(a8p|+(C3vwiHv*D?z+0>?BFEl< zAIsQ21*_%+V&=Sb>7FHXZU_dg<0_p?*j%VWfBb2L&Im0flxz_-CG{DCMWa;1#T#OX zS@uI+cfx<D#OrL5r__6tQj=@)t+@GwwLIa*U4X>T+<z5YnRJBCxTGLFRG51pvYD$W z@lfDts-3)wRK_^1b|AhMLQbcuu5HRr8bYa7O--@or#nSHoKqe3Hl5zz=ChGLq)hvI zA?GdlzSY0t6YKz)(?gh*z$HgDx1$7LiTQcMz3gQ9p$a*m7%>_eX*VOA>zUDAJ`ebD zVrk7ucI#8P?DEyKPYPl=EAR~74AVZFKirW_`+U#@R+EUodqf#UEIe;9{(fJ|zEo;9 z-OsaB!+_VL+}!N6J~-_E?#Ilu;dij4K&sl%I>zY~(`aNwdR9u);XvuM*-#f+vuBP9 ze_rhkrb`Xs+RWhD=!WIq3Qc@NN)Vs;qUk{6=+?a^3KRQZp*G04SoGK=oODB<sxS_2 z_1qgbX%z1cO2CkSQfM#I#!Nz0S7wI!Kw_=}v&c@ex=<w&g-KUFY%hE5c8Py#<^kD; z8+5TJMKs0uI8tZbkHNc<8OL?IboV-lc<g=z&YFM*XF)YP7f_%tFLXaj63eX!;ZTyv zbrn-=1RkoaoD%%l94;)bTZ&b-x3g1?EIwa-?SYug#Omi-iv{YGtpuK6T{5S|P3Qc5 z2l-03nf3>7PW8{oCSX$w_-TMA0}1x$*zoLKj#2MQ+WtDp?o560X+Q2$a2E5L`>0Y6 zIo|bi_3N#XPy94_UnV|DOA-?F&tNgwRcD4*)JRUS6R?<RPR45a51Gt@#r`37yNc@L z#ldu!>8!GRSYQke*IIXv_8hx1K7BA~P5UU}@$~8B#rF?bM3cG)r_$3KO+Cq}u5d*U zJGNu|U|Xa#7DJI8&n5E@=_0FW>?qH4?z4i^8VZG`PH~DYLjhr%<2n9#T;I`!2TQ;p zs}_dFKMKi&I62}--!whgNQIAd^<er7yZT)7@F(vZUDq)$r?ho;9V$q?$BVU(-@b4u z!KaD9Maq^yFbb4ZvX_@1RI#v6V==7uknE#XA7bG&Y}+>3;QI5HDX2|-hmHYnH%J_S zZ$+ph8{Z0KfE+)l<LVb&W1y7?TbZpmoRR6db2=*-5uh*4&svT(vB8o+Na5=6em`&H zG9xpmpRblB(EUz)X304WpjcD+p;6}A7K&h(GuJjHzf35aq!AaI=VXW4+Nw3^-T^4_ z3XW@dmC=M{K+=&8)(T)jP=1Xe|KRpgk=C}2MMUY0c%;MZ4;BVRUl%M$pyCM#ZQJnZ zr!t6e(jyEPkMQvxy<g<f%uM2dp(TLzF)d#$owWV?A;^?$n!&(i?Um5}T{b~+&o5gI z!m9mbxLtsAH!Jf6MyNCJjL%`N6BP@N?pZXs*y5wgT!|U`y4YuHK+581f)?&IDVSQ% zGE{Ayh=wrPYjmm-0Sc$@a<<S<*!&3I%5E<!L9z?P3?JFB2DEu-h}Rv5(3Al`_nn7s z;aA0w3M4D_JFr-@OI;yM9B4+6(u)o&9nMJ&lfo`^->e-?Di-BfhCVedE>aY5AgV%$ zvDUK7e%`9K>;x1Xj5)~XO#Gg17?Kk;8e+YE>2epfijDI{i8*IRyVirv`V0Kr#?46E zg&JSg+h_@p|2dW5DbXldADR;^j^ZA%vApJNa4#nm3m*9W^HsP8t@;7El#jRf%AYL4 zY0Ic{2oSys5XLY7kt<=}p6Xi@EN(SK=nvUVg^iZ#pHke6Ef;<<zg?n{!Q|=94X9xj z2;<RqKfADyvGQ60(T%HS4ufOtVdICN>iZ8E`o0;ftMgHu@eZMd%e2pw*b`3<Q^U4A z-|ptg{m<uP|7jPi{sDY8E5UZ7XiHBcjaP99RYJ|<bY0;Aa5HfPwE!O=Yod3JQYk)< zJRH3omy9pd!r8Q-t_9preMG`+=dOq}=TQnw3Km>Pwq)%>ZB@}^>4zR?XhmBO4yMlR zy7>%&16*+^WQ1}*7!01_U%m@JrV(351F-j}0Ea43E~Z<7(>we9U53_2&X2bk{MJ_2 zRi9xi3OQ+4PTwMwqOtR#Uo~k0pWNfmwrC{>Pj;o?CKlWyzIWanO==3>jYn{_H4h5y zR!ktHvfvU2pmcM2y$}GHHEQp}<9<7q9OjGQG{^st!8x&D`r-`4$b=Ijbmdp2>=~3L z<^j0UMqeiOMQ}#J)9{bq2kR4khsCQZ)BG&$y*T5_*_7&vX=?bpv06(aB_Qk6Ftg_^ z;J|;7hwzz)XV`*`M>S~sSXgkLgpE<_vjFT?t(<-}3bI^xY=BT{^9j->RtzZ7U+XBo zwyUOmw03xY(BJ31oCbQAvrE&qh)0_XN^jC*go)7eRWtpOaB7yB>$`jc)mj5ejm8o} zPhqF|!_UsEG!h;_4@O4bgm9^}#vC%Th)u|;FTB>0`R+*qiIm_XG{I_&;8^CSu-M+B z4mAFMsAHyKX8sH?5Qu<v;-md*)Q%jpuO>Bn3H#pmyV@5#<W92`%aoWv&_Ip7QtMOo z%c}re;G+Z3r6ZIpfJK@}M*PNqR{D*P^Enf)k5<sr=!iw>?WdLD13IthQ<UhZEH+WH zcea=}vCboMF3H%NvE5tDt#h~zJ~Qnd24T$#9Ng1fN7C4wKFxRph5VUAb+9aoS#Qq| z(WSWbdqx?(^2q#43g}#O6Pn<8<6b{l44mec`URwb%APb;E)?uv-0JiX;ld)SBj5)? z0R~#aNd4A~PHn!6L8g5=`&Fp?htiM&Zmzz@B#35@wN~QWH6l1KM-$Nm87r3*LayVH z;TNc0vCsqiM$wYhfiu@Pc0?X4JJd3hYvHx*V4xF8Mc_9Z{PUh-*z%_Y5a*ct7?29P zZZ{?Y6Ni=jlH$VaLk-8$MyBg5mhuT0S7q#W^<uLFm)0!iy3z>TMp%Z<1H9D40H_t& z^rz|df}kA@8@J>y>|_14zc=mZ?ip>y)7p7w)S3lS0Ix%0`-@SE!WDp>Vp{-qC&(^x zOz~e|OYjf4*Ob~!pPqz%>#?$aes>4q&?0~LJItCnXzL8w588QZN%7r4ZM{1t<!#YZ z{FjDUV&2$%z5Q|nj0QpP<ce@(!IdAAY%YJ@K~j#XOJ^&h_P2rS-St1y0aQ+7$rd(X zPKE+UQ*$?&O`qCVgF}u83iDBNB3t9N72wMNfbU8D@W$|hi^N)A`#3>q{~zv**We!a zpBrzcSekf)pYL6_B&Zkg(!y6~5%X&3f0RtSC+|E?);!e8<2ivRHHp)>z|Lg9gn$1x zk!+O9*a_twyKTZgv0;jyO2Rijo9bk@6ycu+r%Y6xkMoA<NO&BF4v*L>+#yN9NR)@w zgs{fRG0VR`#Nh(Q#ev(jtt7TMUzl^Q0(hAr&?w+O8K)Cj%1kZ_*+FA*uwO~SPjVY& z+*ZQe%Xr#GOt%DBWrm@y3EbXh!4Fr%3@Q3%CC`m<tTQ6RBc2ER04)!sJTcF*Vket> z90)1QcPmz+uA9<X{1dNmgm&3gpAuIk3n^X|se36~?hCei4EqH{qG=%c4ge@0)!Gzg zW#65u0bSv8fqr@3zJxxp3wl$?<zz&pfCLk?Ma=1YWg4t4%tyISL}z!kBs+?4a^&wr zgWvFUNeLdO`zueL;Fi`2h~A&?$%6n1;J=l3et))7M{AQi$hsZ>o)mq1Y=HDBCQVze z^ABJ>;F;>og_LCCPErPqhm>|d6W~PBq2fj|n#i>7%?PpP(?Mrp14-8|L^ACmRJarC zje~M*yer>XETiBxfYkeTmjdw=cE=88S;YEE*(hx4pdhAHsBO`oD0`zi9WVrlc(ZTx zb;eZUNYfupW+6+6?L~HEJ{YRQW~4MCKc}wI*SEbm4JtveL^0Q=2STxr`kV0G0f>f# zl`n#J_mv5_6|RyzVtzgGh9BF;OT%5HsuYpi)Vs|8teqC=RRWZ?vVGr1<h<UTtsAhz z85KnQb%z8zHZD`9`V#PJIke9d3ba&&EobKLTCpKGPdu4sw#GMS;dFzA_D6O$t?vkT zspztd2t;f5u&VM$%JkKbRGF-bvl*tZ;aZnG9CI6(p8F(o925*bwrytVJv17<UHFiV zS?6*LeE*ZYp5avfnHiT1x@YP@-b>qp^!FJ}mLcc7p+F_U73t@?T5897W9NRd&vn}! z$-1w4vNO=iybqENh=^z<<sn5n@OUCd0c&MTy3NKhEtXoGFfr_Co`eXqo^^}6Pd2b- zhWKz2T7$JYNn3|Tk{EiBpPTzxPrMW28C88BgXv(O3f3;<q$r_zN0Nen;XrNZxx?6Y zZ-);ai^oJLoS)LgdqJN<?Vg#dCWGn>ZW6&x6%}*5ud-3eUGm|5&V<>VG*qld*&~Ke zf$yJ}q^{fXXw9e4F5$a3-YcYMBiab~;@LL6j|Xk33N&D}FjH#X2mqYa-u0;&O{RDY zu#J@Q8|<;GJ<;A!3rS(v+9``s>Jb+k_i8K3r)B_a@~17bW{@6~%`-EqZu?xh0Okdc zkjYj9FzmFI*CU*?3-?HC#a$oQd?foPpJsZilw1r_bnULNZqA1!<xY80?{iMnbtagz z*u(RSl@~0$ZY3HsR_o3oHz=;D7zgk=rN)!{4$-nH5zQ}edj+2qb4SkjP25k;&-TcY zWeOFMJSVx)m{GM+t?{w#BSE;RmyCsB8xrMGSVtcrJjUXeh%Ig(0#0;BJh^wll+Lfu z9qQnnhsE58rxZ2-h`&^uwr+wUE7fa^#Tu{4NZL!t{))R98!!#@IrHR+qh|qj1p-{c z59Kr{lod|^;<<LvCGZZ`4_QveS2P`E)(g|2KefIzlBeob*A5#A3Z=GxJbLY9!qf|6 zdU1MgEp87a_-`eA^TiVy2d#>6^7EiFtYyh#9;gm5!lFPtQ0@!A>q#3$du@Ijx$9%E zVjwxz;uW4_AplvF3-j|Nedk4TA~iM_+)Q*EteOWX8F@0Yi#pf9s0>nPOjebx>1|bK zIB5OWnH4Hz2iCjGL`#ZepnqQet<BGPsRWA)5z~PzkXib&(ZoMEK=d4M0pI@LW2~gS z5WIsMhDq=&%%@W>kYQ1N8n5RD{9<U+BZ%e{RFK6~9>CkYDB_}J_I{9{_s}T1PQVgW zjBa-54zugHyZ3NR9{rtveICyYkwxU*A{NDnZ&}1m?*03CrOp5N?QTCFg);SUNI#|C zdDlSFU;+h(%)tobKc1~c<L)x}uMg<c12dd3t^W~DAAOoI3lymy$@v<+cFa2SRbG~Z z7xL!iAN8MiHIwahq%<hN_RH)cND$i94c_(#7=!r=i&XsuP4)vq)}W&9mGtNsH&14X zVs#5`@-~}joQd2jYC1>BtS`=+$&)y61Z-v)De&LuxySk)tYXOC?hen5n}xL)w7ca) z)d{ppRatgOiPGpKEn9|L4^9!NC{WqcC`ltmB=DGdwMxoBZU9D+!f7Zah4x1*%5;T8 zc5{8rks<dLdT1>)Z+{V(5G9B{kaKfXU*;sDmpPmC4g2vmI)FQWAObB}G_Whz8tiq} z=Z|ZH$qHprjIU&({aplz=pmlWDFkU^-eV3<=vy(V&kr6L0vAeCb-QCDC955QBYtOp zB5~U{8lyxeFeNzX=fc%I>|n><RlI!UA>NiK)7_0jI{P|t6iRU|z6$4-0u+9{obOQE z@ytCUP+QxaSIA|uHY1!moiz_D-u{Pe!I{nh`^+R~(Ry+xZBZE#Kb$*r!UxeCM%#2+ zno;Q^84*N`U!BD%y6by2amtgv6#R@?PZ?-#;&HdzSqpD^{$2pcgL78@&CMoybb6U3 ziY-NJ=mI~xF=d1d>M}~u^i%c9Xibky>6L-7oN17)+yo9n5|SS&xFhfC<cxk-HWeg| zyctPl)?rEw1K`*P{`r)3LJfX~ecn@!yVpYLMILx+&aIqv@TKBmE~<gAuC@nIl~^@Q z_p{AOCisAUQ)*ITdH)&1hf->Xxf;^5T5>Z5E<BPJN$*9h2nELGO{9=8uCxh?LKz1* z^7Y60-D~+A5g<C^8rNoXvv;AnvC8au^Adfy3;p1ix8@%{%%)e_a32J`I<tmXY#@@? zWx3Br`TI`fdep7vk3H`J!l!8k@tiOK=}BDh^Q}3bvZ}^5tk2MrT!5QKhFShFx2mvJ z8p^w94~7>7E{;%;9~E4iUSG{qBmiAHP_p)D!Z{;)18uJ$2%l*vxn8UinDecpH<<NM z=NriTNEhG#E7)hekW%=Lu&M$q!}_atixod3+P$JrPQD*XK5M?*-MdxYw&F5fF7r-Y zAZ|?0#;uXk_pWk?D3yd^LHA+zmb8cOdcbby9Uz*s)wdbVrXpeItnkOcX*^U)R2Y1E z0r#pTFHd+23fRfigJA1rbdxQ3wK($uWB?c7oG97>(`m7C(zmABJ1aQwfXc7R=9hr@ zkRFnc$*dX084XzzLQ#_aRr}(2?N_cFE6WD$>&iHWx*5s0(xtlG?+nvN62CJhg{AKF zS@F*MD<x)Ex13h-V=8;X48UDuHyZkH43CUHK#0se4YT|v#g<p>W<X*|*yvs4{sBQN z7oW2lP1hRc>Yn(u?WfS#P4ho5Nf`4XO5=K0Pm%@1(E?pbvS{GxXW*IWe#923e%_n0 zQu#%HRqH#dK?;|;I)zqeMLw|M;av!H$)cEw&1@oF7gow-Z8R(^WEw;XZ#l;pfmZoq zapiLzhQ*w0E&(~*$-xRYb!UxT?e8)UmfjqVUTc>+q~3uVtpoDF2G5dE<XN@mES_0& zWi0jxc&=;r`dy<#T)kbra7PlCyKDOq&k&-0&2;w6?$~q5{tb)wg-@mmW-DnaF2nfW zMTHgQaT~Tl;&?ZTKhg0X!FWX8Q&7*2#wTkV*Wg%5CM1|jT~}O2v6n7pMiuw=!_m2+ zex^ms1SL%tp#y@5-<3@(otoN9t5e6-OLkj^TUT0jPsL)q<LUdQs3@*^mV;=8OZi@O zF5z)D(yeQWXEtVx5wGI2v|Gua^EV(!<nfDLbUI9{>g;eIzw{3P`oVm|VnU4_p`J2c zwbH-o4@ES8=(<3-Pvw|PfUj~i-F<FpycQoCLNLhGiKh?cR9GANk)kowZGVT=zq{Eg zh@vC7Y-7|{)Lx~pJElz4kZOa+s#edhOe!TPg`Gf54r4=`kMPQ_4ZZMFxiXORIoRsc zY#lLP0(iF6=mn6Rgdmlgd>XtaJ#Xdzo!t*swJEmdhAaLSQ(~=lEQ20^rYWI-n3)q7 z{c!Ds_$Ev^-#SYr*fTOPGigJhe)|r%OO;9atzy47_U4i=0<H%8v2(A~&;T-a7W>oj zGLiMQ)JBc;b+*aV=nW=KqSYo=F}yVxv>*0yQlx;ur|^$K!g7dG1%6c9b~0QVg$c6d z>?NeS(5$CZGCLqlWJVg|vz)PY6v{P;0o3WY3wwrgMwEmTpUGEaF@WE4G2hn0rAs)w zj?U_s7YF8)-EWHLEo=x_&jr=e5g;Cz5ncKme!jE}(fKg-2oi7X%Y}sS-V6r9hB<@6 zNaC~SvMe6Ix0ZILLKRF`ZS%(WiZim%!!9TVUlE1UP`Aq*G9$$0J$QE{WMH4*zcNj| z8KS<aoI|r5d4kAEfA#y=Gf4+W*#gKONo%`%?MkLrXB4BOp2BPGt>FY)xvC-Ue$5U6 zI?&1!`WPDahSuPeMEMkR+;a}=kfro8|CM}=F7Wba$g@8t{+08NOsrZFph{y!**avv z*L2O5K_T3jZ~<bS2%$$B9StO+TTH;no<2EXXpD-L=UktN>@gT8&{msmr?555thO++ zu|nDC#5wp2iQS;XjApX!Ux)z~mo`72-Br_#&&d>-E-_i`YuUR0d#<yC?lN?nBNGD< z>5MCIpWlh27(xM{|Giv1RyR$yEQDv6I4V1l>z$|u_g`?C1F;a;Aj9(+e*`ohw+S9+ zDHk^WZ=g_x#nI<TPG2>Sy$2o17I+n>5{yT(qOyv{1!rC^9zxDKW56rx+c#)#L6kI3 zXY8V1(UKjGMOtZFA&O|mWH{x~NNFE}yj=hj$QOWrI+mbPGHN);MgG!l@BiR#&+@42 z^)+v?L0@htl<t9r-M(1SOrvtc9Js;mR=yRI9mKm=$53+#sOEVaVn$>uyY%!Nb^X}v zptKnFB_ALbq@`<A+d+g!Z&Ztb0YdG{y=T`xIU``_0A{xATjV6-c0C4jvJ#=HP#5a- zbSe3tzDxt39+q%I(}Xfl&p7d?Hjz4?U(z%lfAJzvXl=vjN*Mwyl#GM9R}oVkQC?Q@ zF8HO>_D*z}dEc7c=9iZ9w76ZNJwIrhXC0eq>(mEcN&p}VEQG0io%5VbcVT1|_$=>r z)x6Z@IKxkE9mdg%Bu?hJSVz?<{sQh=f{`;pSHBsPs}=<pWMtQn=~M<hmc-8^h$3#b zXJm7>psn$Clgu0l+p**WQ48;41YQZH5&gocl~5|cu~Q@{zWee~evc(){6enndfXzY zJ4W|S24#P?*R<iTHfRzVf$z|V>dLJuh1-B%-2LS%uaRyvvLF4l7iAF(SVu-XPvQPs zFmK*1-E6m-Ab>1dolrQSL27vXSsz_Q-BrU{7$!5^<=QkdKNg(wY@jFc!K&`;r!DJp zk1uI(bj+vj`!D$qTViv&$zTAT_KR?2lSE=o!*l~<gdn7Fh9^=J$(k}`4vi)OvU~Xf zk*56!vIs15J;A&&MW7_3Ig;f>#u#8u1N&XUY#S(Tw%N4dnRVW^LM`G1;FZ{nq|La$ zQz#8)LD5{}e;tbwzD6qxW(0dB)1_#V*a-WJ;uRqw5PbS-UNIy<zFz50m=Ty%ND^^2 zl8ryI+s$JO8#yxM1$0iUuc~{0SRv2miro6`1?HXM@ZTKAS>w+XXXv(%nl;2*zQwI_ zK?P@MJACl0Rh5?`W~R$msT`4_U85WGgxIW6?p079)`tCm?WmG4cfzI|xweQH<m4r; z+VW1QBhoTSB3KI-tU%jqw@mb#=r09^L;G+wh_{ZyvZR_a!d$WR&3lvZb6`W2u9J9a zO=ie|?@g#gMFHI;9hD6$um@@6xD&yacO5b?zz0k|x!{&#PLH(P*_B&T&aaiC`U`s2 z?hhk}l%Y0)6!VPET5UArh_i}+kY(r4+-W;>4;jJ(TE6k${#a65f;0pu`K7Q?F&M%Y zAuDdYh#eyt66vu7`CsuH*PzkRDge6v$=n)dt7wR$2?l{9QJf!7Iqcl;Fxy6u?yY2D zBY6FBOi=7aH6<+V-TJ&ItS;DWkU-?pGdFLJrjIDbG|sB79?uWfg(8E$d_KQzp?^+c zkV-={CI8o;w1a;!CMdilZc%wpnU~1U5|jwb_`HJ`G4ebPEAqzK^jD)%V!&EaJ)kL( z8gX(Hga72DtEqE4Dk&s-xbG;Cx5fp|)8@H=&H$MK>c)x<ZRD-bP1=XMJl}MznzW1? z{xEl|*6Pu?By!Fi-5dO}0{aQrN`il+Bp_)1)xIq>h+*&phoei-b4fQa=2MCdODpM< z+!7&c9`8)`wL+<NsoM^YsdlMTT?e#-0?H(k)*LYkcjiYzsByHShby%FgK+{W3k+D) z^|SGZDJ5O>$Y1eFdda!MShjbV8n5!R3Lv+z@Yo)NP2*w61~;ht>Z1|nm@_Ku`mAyo z;}!Ugs6`zBua5#r9JIa@fgYB9Tx)ppW;vtxakil*Ikq+mN(N-4G=F)8#YEiy-bdn= zkl$iGK>r$dAGb!)7TMYAE|&up?q|jrq4oY_r<#v99T}GMzaCa<ZU+ZQGV266rU}B! zEivIL<Gd^?VF7{3^i-7elLMa3>`7ZD4VQ=*eylsjhVG>FUJo-06quAcex8KI?a7rY z*Y2aLxmjmnWMQ+Qw?%-)v%g>)TjvET38GhUZAak$&t8nyoi7p^$g&{tg0{tNE!6k$ z{)L_~7l&Bsi&}_h1^cif`|>#?Hy2JKfi8bqZMV3uqV|~oc&(DI7aUGuBe|2HLM;4{ zs_^`Af29|u*TYw9%;3CKP8ym!Gi&nQf1;L`7-G`BCU3n*5Z7uJb{CF6)w|k;kIa(6 zl#|3FWvI)ok^2T0wUPtplF(ip*E|x-U&~62?}z#)yt5nJX9U6NC`-IYI}}?)_=@S9 zz)PG@h!zFxRB{wwiBKyM#IhaBq@F+Gc~F!%=r^^JgL*}(geumNTd#iY0h&UJ3nt)R zS7V%6)i}*#AXdXYsnlQ<{-+b@N_;{fByOku%H7ssFg{-ficcT*3$w<T2bwk0*=Nnp zRfIDTW*hu>REZTnZ~pd1RX8v-#AAME-04~@QoQ<>Tn@lDMZxd%%_bapA>wjIAkf%H zTLGXXcuMiqZj%GJ$aC$+2-z|whnb62FkPxLBhBez0oPmO2vs$C+wVXT3NOGwF=$3f zB{vZ{=we1vez;PdWLZ^FC!fuhqG9(pYa6pDzf_u%ZiFC9*Z@HLP_ia6yp+X06<^Ze zP6H2y37pQyD|Mav-?VJpIhveqTDaXBe5UbrzNLyQEJ~mO?@!Qe?4O>W^jySxc<aO@ z9VpqZDAI!8o&6@nD?VQy7zKcHJf;&^K(_rxoKqBs;d#%*C$Ubt?dc|3!<B~dI!Xp! zZWnBledPM<qUw;0jYBBA+K*Bvm^mN<FtX%I={SFz&7rtxHf~zaevDx#P(`eF)UWc; zP<#)NcgXC_eM<Ah#8f=@Y79KjvMiUYx7F=I@D@@^IS0yw2JaEzhsoJbEa-2cNn}d| zJ?W;E8g_GB1v_QDk}1n{*trs`2G28?cHb|`<COEAZ#9}Y+uWGzrQn2)J4gtQgJ*b| z0*cy{mp?{>#p)Lc;3{zdR3uXS6ppX%xP@6?Y1aL7b$CR|l=u|Zl;#df<_M<WZK})e zz!l6_0=Z&mm14VjHWLmK!Hm=~*(=9rI5YAvBqLcQ;LjfRbF7u5MXtFLHa(miSM4CF zUsdLcR7x^`jwhM#(@OQc{!&M{O^7gxc=;{p1}gnPr#?U!B3^{}6d~xH{IxHh**0*m zc2l?;eSy-pHqAYy)i5LumGKCYNO%Z#FfhkeHRpZAcNh#x7OnEMdIRB_ik^#%hox3a z%|%B+hhWBhERK2KO<-zaNv#{2@n{ugQc1b657|>8W(ij+I7P-;eXSs}Yl_&Ji^AaZ z*$3q=#d5e{RZk=y1AF{p%yu#oFI(XE*<HmFT><w6IINK5!LnEG`7vg{;Saz)J}eS3 zDtGx06VgUleo6ayFP|v59ah!r#)2DfWD(8qx>WWtgWCg$fP?`|sds+;ZJ4$r>q~kx zDuEj~4EO(bCz#@_;tQ-gH$(hz(!3q5q#4p$eLG-CYU5uP57B}f=$q8f^2bFf#Kd#5 z@)>o`|8obH1;z3SKLPF*DXT>i#(2CHfAkFLD_GvNOE`x=U0!<A#YVr<uGEWl5-vz8 zsT{$vjE~fqDE$+;@n5$#Fmby6o^FL%yrN3Z3JpJt30&?W3;S0_&fUxo8j-Pp`(iUO zt;N3La+S`r6#jF%X|V81QzolBcmVVr-EKYzxG(M0mwkm;+pgLI=Llgac@R?*X11Yr zPxB~Z8Y(0TR>%$0<Fyz5*@ytex?xu_mjIFrpHKm?*3S<N|08?sk$S0pEhK&=Y{^vR z3?@wuQ!B){|L1I@KnNYAc35pkn_}rg3yN!Ug~yp*;o{@rGdz*tbc$6)-pPF)l*Gp2 z2+CM$YEBmzM`cs4o4)Yq>6j03%7~+MjtBL`6U-=($AT48l7XW<yqgfmcBu&>1F$o3 z`PUDYa_x-GvW#nco|GQ6+C+zl#6EWJ!HGZP46O#c{=2_uNsL5sA$1P)55+IZ*rtu7 z8FRx!IKf2;Sc}%LFOfcQi#Da@KTB|f)(pQk0p-wD53WA;P??afwOsk*!5+gn<aUmL zRIH|1tIK<k6ZpN55ZvKD|1@i70rhkR6ehkcFdL^YQnlo%V!oUCu~gT=#}?xm%WisU zTTRCYk;P+T63)8`1N>N0CqjNv1;HPD&vmp+$2LFj&4yFknh(Oe@i@fu`*iO+jJM!a zQ^mAr+hmqL-9TM2+u0yu5h2Lb300KI(ri<1i;ml{fbEUhQT@}WG}$w#(w=W#U$%0s zQv;H3oQ^NvOG?C{MZm@npDd%1-)6tT@nl`YCr#c#I;xa)Q6m!jGZl-%qBXTI?r?fZ zFK`Lyz6-HfUJ$#v=?QYiGn=M{$0W1k9HUYd%*Ic~Kbp@v7VnI-OfL@o7;Hhlq|WI( zMT1tXhTN$}oKI{LjUkAFBbpdN`0;8ftt)6ldn>5XopfYIEZ&6;iEc3z-&fZGxd=t0 zQ%i$M3d}Z{R`D&=hgho5>gUZ!{&{ot)TyNt=cR%SV69o-b`q68?+Mj%T(vU|R}?nk z_R%I6ggy6w4dNlU@_>v;diF=OVPZV(t3%D9k=}B=rebChxjfiik?nh;2#E6p6W$T5 z5iPP-W(h!cN|YN|Hvp7su*OWJL>-<rhf?(6SwQpR>`|2L*dKVH)5oI(mz_g&+z_A5 zWh+K&qhui<{h~e~UWacJ(21@IR<_H8T4dn9+Tl+otgwr!HgLBtoJLXV)SwpkfaO@5 zwXlBJBEL5t<0XjDZQdrxlNML^CM)kTskRZtQ>cLUc)?IY(-i{c%6c9bJmCJ@wG6HR z=dr!W9qmkfzQ@+EZc}rT_ue$(%F6)>rAfNlXG`tO5Vurn_Ign=kSOQJCPrlK&eD?l zpmJ7xZeV#=Pq!pK|K(ertAtXub~@0PETc_BE6TKSwUT~RxXg?c)=$E{cI93<`vE_U z!Z_fHE@B}2lIVYfPBh#4A4V}O|IjDs&c`q(<ri(GHvBSkI=POY5ne=K4T?u+`tg@> z`vzrkssSPUA=F87{ZBt{Gmx|aVw9!fv=_yz7m8j%x4ABqlI4^yaoI7Uk!d{SsQ|(J zrG0gm6_WLYB(cWgpiOWf5l7^{psm>2G+BF_Y`#_RRHxJ5j%XKBr4hL;`vR}{z^9NK zKfa2-+ER!U;m%v2CAB4uHH$7eY=+^fGwDabJz0Fy&T(BxT}#L{WvP?wu{tL|vX5>v z7<Cq)<d;oQOB~LV67?`Ho+fWXX1mY0fBc=S?`!H5NJQ_?4}M3$cqflLCpF~Xk1o2| z;|@mnC}M*V=!9aBPiWt`tU!7P9}+U(L;}}L@3^<&Iwmesu5)D;*?jhs7*^%KDfFjt zdekk-nw-OG8(QZ(_*`i2BT-st15EW-m-#wi!4TQKM<eEXN%0<_v5x!PqkXmG2B3ju z*8UAGtJ9ksDPm8Jg)Jo>#nm9`>?!DYaaW#p%>Mi7Z$FFbQLsymrH~#CN^5=0hitOg zfkwq#+jV}{om;?lkP>nFQZ?qOWyHbY=~iJW(l`$ySFJs&cE{HEfXn>Mp@-my;vMit za6fYdUR&hkK-_Yy5+67R`h=*K`~McA&Mb#^aMvyY{CVXpGQ4VV<N-L3hG)LAREyU= z1V==WHKY32oHg2#uOB+c<=bUL{19v2uaalgpmi!TV=#td>R^Q7bif28-}o-R`30-* zE>yaSk8}<9YPq4pFe*Qab4i2*l$C;yIqBG>-6%G(Pc5yk``hTVNZ}h6iDB1`;}gWP z?`?(W1Wk%X3`rM!wnyqLUL7qtQ|{G|e(=g2mIF4h@`mPz_GYNv@zFBc=+}n~k&G>p z%WzN1h%IJB_Trq9d<2)5rc0o2^5y3SwN2z;p1V=(w_<xnZg}wdmbISe`dRx{(iXpp z5{#mw)LbR*!~R-!mI18fxvHT^#uzCbgBE;Kcx64|)WYA-U3u3)=yW+2k8SqQgYbWR zB9u6<;kz`B@@kf#8{?cML<U%gJA99O`Euo|Jzoc7&ED!)e9xsZJnQOz=U`U^(1mgq zN<8hH>pv3;06>#Ox(g*-q-7pqQ6i6q7O`E-5@XSpcgS1T3L%f0M|q@}jG5+93Y+K1 zuca}Kq|s2xJSH_3X;!Oy@Bh))^YQ%7=Tp69eghXr|N1WG+1AXWBCz&jKfE1`i_~D6 z7tTz~jA?CWR5pjSE6~1Lo_X>iM#GVZ>h;}ipbd$VWrLz0H74P<x;=WzVaK|@)`Duz zDmYf{K!!C+`;9q|!7U&J>7+|;(A}5YbmHv*#w~3*ZPX-*$s0cQbnieu95eK7r7LbC z)#Or~S~5CtgC(Elp$3D$2VgBahn*t2IEiDq7k4WF<QebFK}Vgt+eEjWGI7)`eMvk7 z6jfb3e=*_c0%W_M$#a$WoeIji8EP+;3TMr7z{3uKEQc)h@HZnO-{p<Y)ov~_D=(_M zUwTEWsTclW>#Xv%%uPLTaFPd~^F3ql)RADz+)(cXGW|RiB54<+Eq&6W^9QktR-lJr zP8k7@kKZi?oS{J61t%A2@Gv`KWVH4Dn(Q@fVuBOVhkR@&zeU5QVDt#Ye`Denn`0!r zL>&*{i5O^M0?ly$EtZuc7q3OlmdePYH3AQIN%I#+EYh?@ribQ7z*2{iib3B`_kznp zb;Ijl^e)LvhUu3yScBtaht~XJOU&biJ6GJir*CW-I2H|?viJsvQha&pJ!c^St`u8L zmG)Hr0lU~bO3Rbd<vrK&Kau?&@fzW(<~?URU)1o#>1t{0L4y(V1GeN+Z};3iy5}?5 z&G|UHz(eXlcOL<=b)EdcA9k)&7?{}KJG#uw%Rfx2lfXQ8$R!S+KQ+|sv%26k#ETwP zXrkXpVM4DuuBi64d~vQ@dd06&z5fMLWRX(T;u@__NO^d8!ED~;76jJ3DY%JL{_8vC zV@iRW&hH;?DwTey!N>qZ#P!eL`gox<#A>XvvUpBFbiKD3sdrF@4D2nbojdEbE{Aax z&MnxeUWjbS;R&L?#?g0~p6JkQe$wth7ldYIDj0lnu3oBFtmyE>WS}dJbe%>gtIEm` z8ecEHFi!)g?&{H95?iQzk2h8_Np&Jf-zJ`?;h1qorsRT@g?(j3!k@O?{@5VV-2LY@ zlI2el<C!s+)f;_ozFdsjHrN<azHDw6bojrm_EblNJXt8FnZ28*kGYKVn4&emqZbg6 zwHfj_%q=6^p!fhVUcJ@GRt{tssLn`E7Fns--wr2Q>6aVMYF<9R9m$rP;H8UC<jFSs zu-<yIATLVRF}Ni?N<)(SVBbFpqRoo;5enyayIvRWFRlwihb2EMT)Fz8%wyoH9b<~m z=VrHq<~l9r)*f(w7y+KM#$|StTh`t6e<ZQY-5d!XKUYUiufkrn#jt}@FZlshfT!LS zM92sVJQf)?cP~meO9j*RmG?s0GYCmaPbbDr_o||DoIM(Y52$<Mcbc8}`<(6T{nm-7 zmAz)RU?rVF+6+{C4301K@7kkJ(oEJXX_GlCl%_suWzp*0DJV*|{cz8b3t5bhdOIIq zd)1$NEI4S|tpSuBrp}{>cjTRp!9WcT@$pxJ_*xyxE6ynwLzpGppLZNW0l}&^h>ja1 z&WJ=)$Qi{ZbO9Kmjq(x`)P{?fHEupiq=hH9$m*bgiZMzV#Fz%lKxsO>Dzcssfx~P( z2X<#Q`C$AinDIITF2ElhhrGr@Z*zKZ<4?V;bBawWYeZEhZ!L&~><Y0A9@N>_0pSj% z+LS@7w=G*wvSu8CO}_~C`RssLF?|~QYb<k8eQB2TvK7F#F^TGm|D|v92HnK<_FFfs z0rj{bR;$xz!80nFi^{N~#Rs~1u+M}NA<<eNFNtj-28>?ITg)jYaM!<cVOm>*kSt z1C#W@8d7piME(7*mkDq0Wa=f>hbs58Qhsj~PjmGi28IUN3Cs4?DH4WjC5_BGUX&KL zj3s_6XVt*6oqyPQF{k!sb)&?iVF<JP@Q1}16bBJ|CGS~lV^ys;qn3n4$jXTT=0^=^ zMC#A-HRJ+Z)ejS?Xl}Yii7N0xv(}$^z2PzK*VE_F)IaQxga13I2i__S7d5RKIT$Yl O`8UXkHQMY#LjDCS|0B)- diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.build-manifest b/wiki/src/torrents/files/tails-amd64-5.17.build-manifest similarity index 98% rename from wiki/src/torrents/files/tails-amd64-5.16.1.build-manifest rename to wiki/src/torrents/files/tails-amd64-5.17.build-manifest index 6522070e23b..8e671f0b974 100644 --- a/wiki/src/torrents/files/tails-amd64-5.16.1.build-manifest +++ b/wiki/src/torrents/files/tails-amd64-5.17.build-manifest @@ -3,7 +3,7 @@ origin_references: debian: reference: '2023070701' debian-security: - reference: '2023081402' + reference: '2023090401' torproject: reference: '2023011801' packages: @@ -217,7 +217,7 @@ packages: version: 3.0pl1-137 - arch: amd64 package: cryptsetup-bin - version: 2:2.3.7-1+deb11u1 + version: 2:2.6.1-5~deb11u1 - arch: all package: culmus version: 0.133-1 @@ -272,6 +272,9 @@ packages: - arch: amd64 package: dbus version: 1.12.24-0+deb11u1 + - arch: amd64 + package: dc + version: 1.07.1-2+b2 - arch: amd64 package: dconf-cli version: 0.38.0-2 @@ -688,7 +691,7 @@ packages: version: 20.09.0-3.1+deb11u1 - arch: amd64 package: gir1.2-rsvg-2.0 - version: 2.50.3+dfsg-1 + version: 2.50.3+dfsg-1+deb11u1 - arch: amd64 package: gir1.2-soup-2.4 version: 2.72.0-2 @@ -1661,6 +1664,9 @@ packages: - arch: amd64 package: libcryptsetup12 version: 2:2.3.7-1+deb11u1 + - arch: amd64 + package: libcryptsetup12 + version: 2:2.6.1-5~deb11u1 - arch: amd64 package: libctf-nobfd0 version: 2.35.2-2 @@ -2651,6 +2657,9 @@ packages: - arch: all package: libjs-jquery version: 3.5.1+dfsg+~3.5.5-7 + - arch: amd64 + package: libjson-c5 + version: 0.15-2+deb11u1 - arch: amd64 package: libjson-c5 version: 0.15-2 @@ -2936,6 +2945,9 @@ packages: - arch: amd64 package: liblcms2-2 version: 2.12~rc1-2 + - arch: amd64 + package: liblcms2-utils + version: 2.12~rc1-2 - arch: amd64 package: libldap-2.4-2 version: 2.4.57+dfsg-3+deb11u1 @@ -3937,10 +3949,10 @@ packages: version: 2.002004-1 - arch: amd64 package: librsvg2-2 - version: 2.50.3+dfsg-1 + version: 2.50.3+dfsg-1+deb11u1 - arch: amd64 package: librsvg2-common - version: 2.50.3+dfsg-1 + version: 2.50.3+dfsg-1+deb11u1 - arch: amd64 package: librtmp1 version: 2.4+20151223.gitfa8646d.1-2+b2 @@ -4891,7 +4903,7 @@ packages: version: 6.1.38-4 - arch: amd64 package: linux-libc-dev - version: 5.10.179-5 + version: 6.1.38-4 - arch: all package: live-boot-initramfs-tools version: 1:20170112 @@ -5222,18 +5234,72 @@ packages: - arch: amd64 package: pppoe version: 3.12-1.2 + - arch: all + package: printer-driver-all-enforce + version: '0.20200223' + - arch: amd64 + package: printer-driver-brlaser + version: 6-1 + - arch: amd64 + package: printer-driver-c2050 + version: 0.3b-8 + - arch: amd64 + package: printer-driver-c2esp + version: 27-8 + - arch: amd64 + package: printer-driver-cjet + version: 0.8.9-8 + - arch: amd64 + package: printer-driver-dymo + version: 1.4.0-9 - arch: amd64 package: printer-driver-escpr version: 1.7.8-1 + - arch: all + package: printer-driver-foo2zjs-common + version: 20200505dfsg0-1 + - arch: amd64 + package: printer-driver-foo2zjs + version: 20200505dfsg0-1 + - arch: amd64 + package: printer-driver-fujixerox + version: 1.1.0+ds-3 - arch: amd64 package: printer-driver-gutenprint version: 5.3.3-5 - arch: amd64 package: printer-driver-hpcups version: 3.21.2+dfsg1-2 + - arch: amd64 + package: printer-driver-indexbraille + version: 1.2.3-2 + - arch: amd64 + package: printer-driver-m2300w + version: 0.51-14 + - arch: amd64 + package: printer-driver-min12xxw + version: 0.0.9-11 + - arch: all + package: printer-driver-oki + version: 1.0.1-1.1 + - arch: amd64 + package: printer-driver-pnm2ppa + version: 1.13-10 - arch: amd64 package: printer-driver-postscript-hp version: 3.21.2+dfsg1-2 + - arch: amd64 + package: printer-driver-ptouch + version: 1.5.1-2 + - arch: amd64 + package: printer-driver-pxljr + version: 1.4+repack0-5 + - arch: all + package: printer-driver-sag-gdi + version: 0.1-7 + - arch: amd64 + package: printer-driver-splix + version: 2.0.0+svn315-7 - arch: amd64 package: procps version: 2:3.3.17-5 @@ -5674,37 +5740,37 @@ packages: version: 4.1.1-2.1 - arch: all package: thunderbird-l10n-ar - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-de - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-es-es - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-fr - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-id - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-it - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-pt-br - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-ru - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-tr - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: thunderbird-l10n-zh-cn - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: amd64 package: thunderbird - version: 1:102.14.0-1~deb11u1 + version: 1:102.15.0-1~deb11u1 - arch: all package: timgm6mb-soundfont version: 1.3-5 diff --git a/wiki/src/torrents/files/tails-amd64-5.17.img.sig b/wiki/src/torrents/files/tails-amd64-5.17.img.sig new file mode 100644 index 00000000000..72323c86049 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-5.17.img.sig @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPWsfgAKCRCQsrS9eu0j +X5pPAP9LXj+RWqUF6CzX9M8tMjQgvLQJYmM3lXx9gEUNNVsnwQD/Txa/6eZ/vWHT +wg86aO/QfblXXqI3I67Svt0jSimFzgc= +=2Plv +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-5.17.img.torrent b/wiki/src/torrents/files/tails-amd64-5.17.img.torrent new file mode 100644 index 0000000000000000000000000000000000000000..5bab558f6bed26058a53187fecd549f7579422f2 GIT binary patch literal 101605 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 literal 0 HcmV?d00001 diff --git a/wiki/src/torrents/files/tails-amd64-5.17.iso.sig b/wiki/src/torrents/files/tails-amd64-5.17.iso.sig new file mode 100644 index 00000000000..1c355e86754 --- /dev/null +++ b/wiki/src/torrents/files/tails-amd64-5.17.iso.sig @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- + +iHUEABYKAB0WIQTNTUNRr6aTP1dKmvuQsrS9eu0jXwUCZPWsZAAKCRCQsrS9eu0j +XxfJAPsFBuGRq3/tkBkG6Juv8h4vH8zIH6HwmdYw0ztoDN5q2QD/QAbvZ7o8w5gn +B+7uBSJ0Wb7itFasQBPrOUw8Fm4JRgw= +=+XVM +-----END PGP SIGNATURE----- diff --git a/wiki/src/torrents/files/tails-amd64-5.17.iso.torrent b/wiki/src/torrents/files/tails-amd64-5.17.iso.torrent new file mode 100644 index 0000000000000000000000000000000000000000..b104317e5075eb23fe1f5ba738f261c219ca167e GIT binary patch literal 100805 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≥p85`<p@Jw~^_4yzz0uV(GRdGLZD> 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 C`Ry(M literal 0 HcmV?d00001 diff --git a/wiki/src/torrents/files/tails-amd64-5.16.1.packages b/wiki/src/torrents/files/tails-amd64-5.17.packages similarity index 97% rename from wiki/src/torrents/files/tails-amd64-5.16.1.packages rename to wiki/src/torrents/files/tails-amd64-5.17.packages index de9dceab247..7dfe8a669a6 100644 --- a/wiki/src/torrents/files/tails-amd64-5.16.1.packages +++ b/wiki/src/torrents/files/tails-amd64-5.17.packages @@ -58,7 +58,7 @@ cpp-10 10.2.1-6 cracklib-runtime 2.9.6-3.4 crda 4.14+git20191112.9856751-1 cron 3.0pl1-137 -cryptsetup-bin 2:2.3.7-1+deb11u1 +cryptsetup-bin 2:2.6.1-5~deb11u1 culmus 0.133-1 cups 2.3.3op2-3+deb11u2 cups-browsed 1.28.7-1+deb11u2 @@ -77,6 +77,7 @@ dash 0.5.11+git20200708+dd9ef66-5 dbus 1.12.24-0+deb11u1 dbus-user-session 1.12.24-0+deb11u1 dbus-x11 1.12.24-0+deb11u1 +dc 1.07.1-2+b2 dconf-cli 0.38.0-2 dconf-gsettings-backend:amd64 0.38.0-2 dconf-service 0.38.0-2 @@ -203,7 +204,7 @@ gir1.2-pango-1.0:amd64 1.46.2-3 gir1.2-peas-1.0:amd64 1.28.0-2+b1 gir1.2-polkit-1.0 0.105-31+deb11u1 gir1.2-poppler-0.18:amd64 20.09.0-3.1+deb11u1 -gir1.2-rsvg-2.0:amd64 2.50.3+dfsg-1 +gir1.2-rsvg-2.0:amd64 2.50.3+dfsg-1+deb11u1 gir1.2-soup-2.4:amd64 2.72.0-2 gir1.2-totem-1.0:amd64 3.38.0-2 gir1.2-totemplparser-1.0:amd64 3.26.5-5 @@ -501,7 +502,7 @@ libconfig-tiny-perl 2.26-1 libcpanel-json-xs-perl 4.25-1+b1 libcrack2:amd64 2.9.6-3.4 libcrypt1:amd64 1:4.4.18-4 -libcryptsetup12:amd64 2:2.3.7-1+deb11u1 +libcryptsetup12:amd64 2:2.6.1-5~deb11u1 libcue2:amd64 2.2.1-3 libcups2:amd64 2.3.3op2-3+deb11u2 libcupsfilters1:amd64 1.28.7-1+deb11u2 @@ -812,7 +813,7 @@ libjbig2dec0:amd64 0.19-2 libjim0.79:amd64 0.79+dfsg0-2 libjpeg62-turbo:amd64 1:2.0.6-4 libjs-jquery 3.5.1+dfsg+~3.5.5-7 -libjson-c5:amd64 0.15-2 +libjson-c5:amd64 0.15-2+deb11u1 libjson-glib-1.0-0:amd64 1.6.2-1 libjson-glib-1.0-common 1.6.2-1 libjson-maybexs-perl 1.004003-1 @@ -906,6 +907,7 @@ liblangtag-common 0.6.3-2 liblangtag1:amd64 0.6.3-2 liblapack3:amd64 3.9.0-3 liblcms2-2:amd64 2.12~rc1-2 +liblcms2-utils 2.12~rc1-2 libldap-2.4-2:amd64 2.4.57+dfsg-3+deb11u1 libldb2:amd64 2:2.2.3-2~deb11u2 liblept5:amd64 1.79.0-1.1+deb11u1 @@ -1203,8 +1205,8 @@ libresid-builder0c2a 2.1.1-15+b1 librest-0.7-0:amd64 0.8.1-1.1 librevenge-0.0-0:amd64 0.0.4-6+b1 librole-tiny-perl 2.002004-1 -librsvg2-2:amd64 2.50.3+dfsg-1 -librsvg2-common:amd64 2.50.3+dfsg-1 +librsvg2-2:amd64 2.50.3+dfsg-1+deb11u1 +librsvg2-common:amd64 2.50.3+dfsg-1+deb11u1 librtmp1:amd64 2.4+20151223.gitfa8646d.1-2+b2 librubberband2:amd64 1.9.0-1 libsamplerate0:amd64 0.2.1+ds0-1 @@ -1600,10 +1602,28 @@ poppler-utils 20.09.0-3.1+deb11u1 powermgmt-base 1.36 ppp 2.4.9-1+1 pppoe 3.12-1.2 +printer-driver-all-enforce 0.20200223 +printer-driver-brlaser 6-1 +printer-driver-c2050 0.3b-8 +printer-driver-c2esp 27-8 +printer-driver-cjet 0.8.9-8 +printer-driver-dymo 1.4.0-9 printer-driver-escpr 1.7.8-1 +printer-driver-foo2zjs 20200505dfsg0-1 +printer-driver-foo2zjs-common 20200505dfsg0-1 +printer-driver-fujixerox 1.1.0+ds-3 printer-driver-gutenprint 5.3.3-5 printer-driver-hpcups 3.21.2+dfsg1-2 +printer-driver-indexbraille 1.2.3-2 +printer-driver-m2300w 0.51-14 +printer-driver-min12xxw 0.0.9-11 +printer-driver-oki 1.0.1-1.1 +printer-driver-pnm2ppa 1.13-10 printer-driver-postscript-hp 3.21.2+dfsg1-2 +printer-driver-ptouch 1.5.1-2 +printer-driver-pxljr 1.4+repack0-5 +printer-driver-sag-gdi 0.1-7 +printer-driver-splix 2.0.0+svn315-7 procps 2:3.3.17-5 psmisc 23.4-2 pulseaudio 14.2-2 @@ -1744,17 +1764,17 @@ tegaki-zinnia-japanese 0.3-1.1 tesseract-ocr 4.1.1-2.1 tesseract-ocr-eng 1:4.00~git30-7274cfa-1.1 tesseract-ocr-osd 1:4.00~git30-7274cfa-1.1 -thunderbird 1:102.14.0-1~deb11u1 -thunderbird-l10n-ar 1:102.14.0-1~deb11u1 -thunderbird-l10n-de 1:102.14.0-1~deb11u1 -thunderbird-l10n-es-es 1:102.14.0-1~deb11u1 -thunderbird-l10n-fr 1:102.14.0-1~deb11u1 -thunderbird-l10n-id 1:102.14.0-1~deb11u1 -thunderbird-l10n-it 1:102.14.0-1~deb11u1 -thunderbird-l10n-pt-br 1:102.14.0-1~deb11u1 -thunderbird-l10n-ru 1:102.14.0-1~deb11u1 -thunderbird-l10n-tr 1:102.14.0-1~deb11u1 -thunderbird-l10n-zh-cn 1:102.14.0-1~deb11u1 +thunderbird 1:102.15.0-1~deb11u1 +thunderbird-l10n-ar 1:102.15.0-1~deb11u1 +thunderbird-l10n-de 1:102.15.0-1~deb11u1 +thunderbird-l10n-es-es 1:102.15.0-1~deb11u1 +thunderbird-l10n-fr 1:102.15.0-1~deb11u1 +thunderbird-l10n-id 1:102.15.0-1~deb11u1 +thunderbird-l10n-it 1:102.15.0-1~deb11u1 +thunderbird-l10n-pt-br 1:102.15.0-1~deb11u1 +thunderbird-l10n-ru 1:102.15.0-1~deb11u1 +thunderbird-l10n-tr 1:102.15.0-1~deb11u1 +thunderbird-l10n-zh-cn 1:102.15.0-1~deb11u1 timgm6mb-soundfont 1.3-5 tor 0.4.7.13-1~d11.bullseye+1 tor-geoipdb 0.4.7.13-1~d11.bullseye+1 -- GitLab From 383ed350a6c25f34d571262494aea7553344216b Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 5 Sep 2023 07:47:41 +0000 Subject: [PATCH 115/119] Fix release date --- wiki/src/news/version_5.17.mdwn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiki/src/news/version_5.17.mdwn b/wiki/src/news/version_5.17.mdwn index a256d7bdd2e..6abd90969ff 100644 --- a/wiki/src/news/version_5.17.mdwn +++ b/wiki/src/news/version_5.17.mdwn @@ -1,5 +1,5 @@ [[!meta title="Tails 5.17"]] -[[!meta date="Tue, 04 Sep 2023 12:34:56 +0000"]] +[[!meta date="Tue, 05 Sep 2023 12:34:56 +0000"]] [[!pagetemplate template="news.tmpl"]] [[!tag announce]] -- GitLab From 0399c1796dfdf7a04183762bf5f691e014daab43 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 5 Sep 2023 07:50:43 +0000 Subject: [PATCH 116/119] Releasing version 5.17 --- wiki/src/news/version_5.17.de.po | 211 ++++++++++++++++++ wiki/src/news/version_5.17.es.po | 211 ++++++++++++++++++ wiki/src/news/version_5.17.fr.po | 211 ++++++++++++++++++ wiki/src/news/version_5.17.it.po | 211 ++++++++++++++++++ wiki/src/news/version_5.17.pt.po | 211 ++++++++++++++++++ wiki/src/news/version_5.17.ru.po | 211 ++++++++++++++++++ ...wn_security_vulnerabilities_in_5.16.1.mdwn | 18 ++ 7 files changed, 1284 insertions(+) create mode 100644 wiki/src/news/version_5.17.de.po create mode 100644 wiki/src/news/version_5.17.es.po create mode 100644 wiki/src/news/version_5.17.fr.po create mode 100644 wiki/src/news/version_5.17.it.po create mode 100644 wiki/src/news/version_5.17.pt.po create mode 100644 wiki/src/news/version_5.17.ru.po create mode 100644 wiki/src/security/known_security_vulnerabilities_in_5.16.1.mdwn diff --git a/wiki/src/news/version_5.17.de.po b/wiki/src/news/version_5.17.de.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.de.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/news/version_5.17.es.po b/wiki/src/news/version_5.17.es.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.es.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/news/version_5.17.fr.po b/wiki/src/news/version_5.17.fr.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.fr.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/news/version_5.17.it.po b/wiki/src/news/version_5.17.it.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.it.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/news/version_5.17.pt.po b/wiki/src/news/version_5.17.pt.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.pt.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/news/version_5.17.ru.po b/wiki/src/news/version_5.17.ru.po new file mode 100644 index 00000000000..42112f7d39d --- /dev/null +++ b/wiki/src/news/version_5.17.ru.po @@ -0,0 +1,211 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2023-09-05 09:49+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta title=\"Tails 5.17\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!meta date=\"Tue, 05 Sep 2023 12:34:56 +0000\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!pagetemplate template=\"news.tmpl\"]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "[[!tag announce]]\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"changes\">Changes and updates</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Rename *Tails Installer* as *Tails Cloner*. ([[!tails_ticket 16907]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Install more printer drivers and enable all printers automatically. " +"([[!tails_ticket 18254]])" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Tor Browser* to " +"[12.5.3](https://blog.torproject.org/new-release-tor-browser-1253)." +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"Update *Thunderbird* to " +"[102.15.0](https://www.thunderbird.net/en-US/thunderbird/102.15.0/releasenotes/)." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"fixes\">Fixed problems</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"- Fix some failures while unlocking the Persistent Storage. ([[!tails_ticket " +"19728]])" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Sometimes, *upgrading* the cryptographic parameters of the Persistent " +"Storage\n" +" was taking too long and made *unlocking* the Persistent Storage fail. We\n" +" allowed the *upgrade* to take more time before reporting a failure.\n" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" Please keep reporting errors using\n" +" [[*WhisperBack*|doc/first_steps/bug_reporting]] if you have problems\n" +" unlocking your Persistent Storage.\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"For more details, read our [[!tails_gitweb debian/changelog " +"desc=\"changelog\"]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"issues\">Known issues</h1>\n" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "None specific to this release." +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "See the list of [[long-standing issues|support/known_issues]]." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "<h1 id=\"get\">Get Tails 5.17</h1>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To upgrade your Tails USB stick and keep your persistent storage" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "- Automatic upgrades are available from Tails 5.0 or later to 5.17." +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +" You can [[reduce the size of the download|doc/upgrade#reduce]] of future\n" +" automatic upgrades by doing a manual upgrade to the latest version.\n" +msgstr "" + +#. type: Bullet: '- ' +#, markdown-text +msgid "" +"If you cannot do an automatic upgrade or if Tails fails to start after an " +"automatic upgrade, please try to do a [[manual " +"upgrade|doc/upgrade/#manual]]." +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To install Tails on a new USB stick" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "Follow our installation instructions:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Windows|install/windows]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from macOS|install/mac]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[Install from Linux|install/linux]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "" +"[[Install from Debian or Ubuntu using the command line and " +"GnuPG|install/expert]]" +msgstr "" + +#. type: Plain text +#, markdown-text, no-wrap +msgid "" +"<div class=\"caution\"><p>The Persistent Storage on the USB stick will be " +"lost if\n" +"you install instead of upgrading.</p></div>\n" +msgstr "" + +#. type: Title ## +#, markdown-text, no-wrap +msgid "To download only" +msgstr "" + +#. type: Plain text +#, markdown-text +msgid "" +"If you don't need installation or upgrade instructions, you can download " +"Tails 5.17 directly:" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For USB sticks (USB image)|install/download]]" +msgstr "" + +#. type: Bullet: ' - ' +#, markdown-text +msgid "[[For DVDs and virtual machines (ISO image)|install/download-iso]]" +msgstr "" diff --git a/wiki/src/security/known_security_vulnerabilities_in_5.16.1.mdwn b/wiki/src/security/known_security_vulnerabilities_in_5.16.1.mdwn new file mode 100644 index 00000000000..ae052c5acef --- /dev/null +++ b/wiki/src/security/known_security_vulnerabilities_in_5.16.1.mdwn @@ -0,0 +1,18 @@ +[[!meta date="Sat, 02 Sep 2023 11:10:16 -0000"]] +[[!meta title="Known security vulnerabilities in Tails 5.16.1"]] +[[!pagetemplate template="news.tmpl"]] + +[[!tag security/fixed]] + +Tails 5.17 fixes known security +vulnerabilities in 5.16.1. You should upgrade as soon as possible. + +If you are interested in learning more about the security vulnerabilities fixed +in this release, you can refer to: + +- The release notes of *Tor Browser* and other applications linked from + the [[release notes of Tails 5.17|news/version_5.17]]. + +- The list of recent [Debian security + advisories](https://www.debian.org/security/) published since Tails + 5.16.1. -- GitLab From 1e25fb77bd7771e3b94fea0a31e3eecd5f249ea9 Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 5 Sep 2023 08:25:49 +0000 Subject: [PATCH 117/119] Test suite: relax our expectations, again Same reasoning as 7b0ce8eb4f8bcadfb1af1f1d57b5d395621e8c82: we don't need 100% coverage to verify that this feature works. --- features/emergency_shutdown.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/emergency_shutdown.feature b/features/emergency_shutdown.feature index 509ccbcb375..07a8958fd0b 100644 --- a/features/emergency_shutdown.feature +++ b/features/emergency_shutdown.feature @@ -48,7 +48,7 @@ Feature: Emergency shutdown Given I have started Tails without network from a USB drive with a persistent partition enabled and logged in And I prepare Tails for memory erasure tests And I fill a 128 MiB file with a known pattern on the persistent filesystem - And patterns cover at least 110 MiB in the guest's memory + And patterns cover at least 100 MiB in the guest's memory When I eject the boot medium And I wait for Tails to finish wiping the memory Then I find very few patterns in the guest's memory -- GitLab From 1a9f4235ee0b866261dd5042fdb61b97d031800a Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 5 Sep 2023 11:27:45 +0200 Subject: [PATCH 118/119] Remove UDFs for versions we'll never release --- .../v2/Tails/5.16.2/amd64/alpha/upgrades.yml | 5 ----- .../v2/Tails/5.16.2/amd64/alpha/upgrades.yml.pgp | 16 ---------------- .../v2/Tails/5.16.2/amd64/stable/upgrades.yml | 5 ----- .../Tails/5.16.2/amd64/stable/upgrades.yml.pgp | 16 ---------------- 4 files changed, 42 deletions(-) delete mode 100644 wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml delete mode 100644 wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml.pgp delete mode 100644 wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml delete mode 100644 wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml.pgp diff --git a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml deleted file mode 100644 index a81b7943191..00000000000 --- a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -build-target: amd64 -channel: alpha -initial-install-version: 5.16.2 -product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml.pgp deleted file mode 100644 index 42dabcb042a..00000000000 --- a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/alpha/upgrades.yml.pgp +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYtsACgkQe/vSuQLu -E9CxXBAAvdRmKTapFosut+hEZBPOfF9tZPndaQl8mInt3lDumMeEWaulQz4xys+r -sq3JFmZU171UBbMg8Ep7slZl/QJ3Wcif7xpBjor72sI1DMO6XNu8yLnNp6TYFDC5 -j3pogX3u2beYYflGs1kMieYSaNtsyhli2e4ya0gy+nmzZzYJjJM15smhToq7dby3 -2WXC96K0jEHzur1IxaOGWk5MZymw6X6fUZe7twgMYqcWGRXfLyQJsCbDE73ZNSG/ -ijAlevXDk8KHM+Z9HeQObX4gcMx6K7u0p/xtMvHKJgzRABzOhdXRiMoXcnti1WTO -AuXwAWBfnWvs8mdekBRvM1NdwEHmoj+RwlKShlvZ9n7F2nFzJot3Z7eyo1D+I/+g -Bk0NWb7/Yu/iHMSiejDXMHjleJlsUsEyAjK/mzUwsWoSU87gUswBIQdVdCcl2p7L -GF3g595EKbfvr+vQbCKGDLwFxowAESlyv8lRNYXFR+fGI1kST6OtqYz19TiQgZPl -NoCYKGKscizSWVo4j4hlot9VYqtluLFbX218wPB2MqsamszyYJZiXsiEcLatTDkM -FfTshDUoQN8Q9xRIEDGD5SI/Xz1C0b5hHScMZ5LwFG6YZlgkgL32/VytaXf1rD/e -MGTjcxHJYfbIF4ZB6OGRInYr6+UdkOgMfCHdzQCHMuJahdDsYf0= -=Lkf7 ------END PGP SIGNATURE----- diff --git a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml b/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml deleted file mode 100644 index eb928b6a2ce..00000000000 --- a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -build-target: amd64 -channel: stable -initial-install-version: 5.16.2 -product-name: Tails diff --git a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml.pgp b/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml.pgp deleted file mode 100644 index f8216df4825..00000000000 --- a/wiki/src/upgrade/v2/Tails/5.16.2/amd64/stable/upgrades.yml.pgp +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN PGP SIGNATURE----- - -iQIzBAABCgAdFiEEdT+QE3ejCfJzH6M/e/vSuQLuE9AFAmTaYtgACgkQe/vSuQLu -E9AGIg//a/jRp3Y9jsA/93If7plf/WaYmb/nMP/JZMddbUYNbyhjbYXFVYAkvlnL -+VnqQSOBuwWJZOM5w71awuQXdV61lf7iwQpaDg9+dq2LYH/dmY1OMozjHPgJyUVl -y3hfj8N9DTv1iJ3oGwlPwwI3oAJJerzu1zZOnzEo1WnRDvhR+1L/CMiukoPrLx1Q -BYBICY6tlkjW4xsBppG5TQH1aYJtrF2SxkZLd+qLgClLVJJixG616ZhsNqF4jAwO -jENabtApreUVJSqz9DtuYU+nzD4oo8cnY8Q+zP5jpYOBDTzYqUBCgT4VTEYEhxvy -U79KOZryRxexolUzV91wahLynyoEAacfilmb6W0VKybcgXeJABJSCw6E5GMR/BhI -8gFSc1oes8SED2nc5NyxN+4SAV8AdpYA9UTdxBly+5+zRIkwTW71hqkf+qPmBWHJ -Tv4wcuJvd2rvfqFL7Ct3914CTlkrnVRPJyq25Iwa5F5R5/8ua8AUYf5yj0Yh3DJQ -MQA5NJQcJGN8gyaH9AsfhcBN9K9aw3M9WPfiqqrJpFKrYWvQzf0eXDNQPyWfzhvV -4xBrefKz93wZY9L7OUWiaCey8zYP1KYqTqFQBsSTGfCaOPEeC5COztxr15F1ONFV -MQlChynQuxZm/Nrp3XMq46lhK0jvtkUSbDiSlul65KHpxwZ+t6s= -=VktT ------END PGP SIGNATURE----- -- GitLab From 1772416036088b7e6cc971139a81605cffd917af Mon Sep 17 00:00:00 2001 From: intrigeri <intrigeri@boum.org> Date: Tue, 5 Sep 2023 09:28:09 +0000 Subject: [PATCH 119/119] Add dummy changelog entry for 5.18. --- debian/changelog | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 7439890a839..7b9cb0a5885 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +tails (5.18) UNRELEASED; urgency=medium + + * Dummy entry for next release. + + -- intrigeri <intrigeri@debian.org> Tue, 05 Sep 2023 09:28:09 +0000 + tails (5.17) unstable; urgency=medium * Upgrade Thunderbird to 1:102.15.0-1~deb11u1 -- GitLab