diff --git a/wiki/src/blueprint/veracrypt.mdwn b/wiki/src/blueprint/veracrypt.mdwn index a1070f0fb9ea4c3f7d3c2c2b02e7aaa373ecbe76..35e502492717e1cd1fa5229b2579c8282a9137c9 100644 --- a/wiki/src/blueprint/veracrypt.mdwn +++ b/wiki/src/blueprint/veracrypt.mdwn @@ -470,10 +470,6 @@ integration code: - GNOME Files cannot automatically identify and flag file containers as such. -- The integration in the sidebar of GNOME Files of opened file - containers will require to patch the GTK library which was not - expected initially. - - Displaying the file name of the containers when unlocking it through GVfs will require an additional patch upstream. diff --git a/wiki/src/contribute/reports/SponsorT.mdwn b/wiki/src/contribute/reports/SponsorT.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..b02515226c8dea7a4b6b101ee80f840a10b18780 --- /dev/null +++ b/wiki/src/contribute/reports/SponsorT.mdwn @@ -0,0 +1 @@ +[[!map pages="contribute/reports/SponsorT/*"]] diff --git a/wiki/src/contribute/reports/SponsorT/final.mdwn b/wiki/src/contribute/reports/SponsorT/final.mdwn new file mode 100644 index 0000000000000000000000000000000000000000..646f863205c7103c81e9b22f7104e7beb5817647 --- /dev/null +++ b/wiki/src/contribute/reports/SponsorT/final.mdwn @@ -0,0 +1,244 @@ +[[!meta title="Tails final report on reproducible builds"]] + +[[!toc levels=2]] + +This is the final report about making Tails reproducible as part of the +Mozilla Open Source Support award (MOSS). + +# Current status + +In March 2017 we first [[reported|news/report_2017_03]] that we had +finally seen an ISO image build reproducibly on several machines. Since +then we kept working on this front, and solved one after the other every +non-deterministic element of the build process. + +As of January 2018, Tails ISO images are fully reproducible. +[[!tails_ticket 14933]] was our last blocker and has been resolved. +We've released a reproducible Tails ISO image this month (Tails 3.4). + +We are also proud to announce that we went even further and managed to +make our automatic upgrades (IUKs or Incremental Upgrade Kits) +reproducible as well! + +We think that reproducible Tails ISO images preventively improve the +resilience to backdoors by making it much riskier to either compromise +our infrastructure or pressure our developers. + +# Technical details + +## Reproducible website build + +As we include a copy of our website, which serves as our documentation for +users, into our ISO images, we ought to make our website software, ''ikiwiki'', +as well as the translations of this documentation, build reproducibly. In +March 2017 we've made great progress to get the website build reproducibly. +Later on, we realized that ''ikiwiki'' resized some images of our website which +sometimes contained timestamped metadata, thus making the ISO image build +non-reproducibly again. We have worked around this on our side ([[!tails_ticket +12566]]) and then we have contributed upstream a fix for the root cause of this +problem in ''ikiwiki'' ([[!tails_ticket 12625]]); this was merged upstream. + +We also fixed how ikiwiki handles dates in our blog posts [[!tails_ticket +12726]] and fixed incorrect metadata in old blog posts and their +translations ([[!tails_ticket 11966]] – who would have guessed this +affected build determinism? :) + +## Translations + +We fixed our script that refreshes the website's translation files so +that it won't update PO files unless something other than POT-Creation-Date +has changed ([[!tails_ticket 11967]]). We later encountered and fixed +more problems with comments in POT files ([[!tails_ticket 12641]]). + +## A serious blocker: fontconfig + +The cloud which was hiding the blue skies and the sun in the reproducible +builds solar system for several weeks was ''fontconfig'': We ship a cache for +fonts in Tails. However, this cache was not generated in a reproducible +manner. In March we tried moving its generation out of the ISO, however, it +makes Tails start slower and resulted in too many unreliable test failures. +Thus, we decided to move it back into the ISO image and to try and fix the root +cause of the problem instead. We filed [[!debbug 863427]], but we already know +that our patch is not yet enough to fix the problem, although it greatly +reduces the number of differences from 75 to 5 ([[!tails_ticket 12567]]). At +the beginning of June, we finally solved this last blocker, and are upstreaming +our patches to Debian, so that other projects may profit from these +improvements. + +## Automatic upgrades + +Our automatic upgrades are now reproducible ([[!tails_ticket 12630]]). + +When we generate the ISO image using isohybrid, we pass it an ID. We +tried setting this ID to `$SOURCE_DATE_EPOCH` which resulted in a +reproducible, but non-hybrid, ISO because `$SOURCE_DATE_EPOCH` is an +invalid value for that ID. Thus, we decided to pass a fixed and valid ID +instead: [[!tails_ticket 12453]]. + +## User documentation + +Reproducible builds fill the critical gap between the free source code and the +distributed binaries. Thus, the political objective of free software to reclaim +the power to control our software and computing is not limited anymore to the +minority of people building their own binaries. + +For those of our users who want to verify their own ISO builds against ours, +we documented how to do that ([[!tails_ticket 12630]]). + +In November 2017, we published a blog post to explain to our users [[what +reproducible builds are|news/reproducible_Tails]]) +in a non-technical manner, by using the recipe cooking analogy. + +### How does one verify that a self-built ISO image is indeed reproducible? + +By making the Tails ISO images build reproducibly, we have achieved our goal to +improve user security by making it possible to verify the binary that we are +distributing. + +It's pretty simple: With each ISO image we release, and from now on, we'll +release images that we've already tested upon reproducibility (except +in rare, exceptional emergency cases and only if the root cause for +non-reproducibly has been proven to be harmless); we also release +a PGP signature. Users who build their own ISO images can, from now on, download +this signature and simply verify it against their own ISO image. It should +match. + +We've published [[the verification procedure in +detail|contribute/build/reproducible/#verify-iso]]. + +## Build infrastructure + +We planned to describe and publish our build environments in order to make +our infrastructure and distribution processes more transparent. Thus, the +possibility of public scrutiny and trust in our software development and +release process finds itself greatly increased. + +After a long discussion, we [[!tails_ticket 12409 desc="decided"]] not +to publish any Vagrant basebox at all: the key argument in favour of +this major design change was to remove one huge binary blob from the +list of trusted inputs needed for building a Tails ISO image. +This will substantially increase the value of Tails ISO images +building reproducibly. This decision has a few nice side effects, +including: + + * the properties of the basebox required to build a given state of our + code base are entirely encoded in the corresponding Git commit; + * changes in the ISO build box definition don't require building and + uploading a new basebox. + +Then we made enough progress to migrate our Continuous Integration +platform to the build system used by developers. This is now running +in production. For details, see [[!tails_ticket 11972]], +[[!tails_ticket 11979]], [[!tails_ticket 11980]], +[[!tails_ticket 11981]], [[!tails_ticket 12017]], and +[[!tails_ticket 11006]]. + +Then we had to deal with a number of issues that we were not in +a position to identify before submitting this brand new system to +a real-world workload. Most of them were fixed already +([[!tails_ticket 12530]], [[!tails_ticket 12578]], +[[!tails_ticket 12565]], [[!tails_ticket 12541]], +[[!tails_ticket 12529]], [[!tails_ticket 12575]], +[[!tails_ticket 12606]]). Work is still in progress on some other +problems: they are our Continuous Integration engineers' top priority, +and should be fully resolved in the next couple of months. + +We documented this and publish a design documentation in October 2017 +[[!tails_ticket 12616]]. + +Our [[build instructions|contribute/build]] have +been updated and this will make it easier for people who want to build +and verify Tails ISO images to do exactly that. + +## Test infrastructure + +Our QA and testing processes have been greatly improved as the build of our +development branches is now more deterministic, and the automated tests that we +perform on these branches as we dvelop new features have been updated to match +this fact. Because they now include the output of ''diffoscope'', we can always +verify that no new feature or new software package introduces a regression on +reproducibility. + +In order to test if an ISO image is indeed reproducible, we vary our test +environment. The build environment variations we've tested include: build +system clock (last month, next month, next year), number of +CPU cores, CPU brand and model, building in Vagrant or not. + +Our automatic build infrastructure now always builds two ISO images, both from +the same commit, this means, that both builds use identical input, and then +compares them using ''diffoscope''. + +This way, we ensure that we'll identify build reproducibility issues +as early as possible in our development process. Furthermore, this +also makes it possible for +each developer to build an ISO image locally on their machine and to compare +this image with the one build either by other developers, or by our +ISO builders. + +Besides these modifications which were necessary, we also worked on improving +the tools we use for testing and comparing ISOs. For example, we made +''diffoscope'' *way* faster when comparing SquashFS'es. This work was done +directly upstream. + +Finally, we have [[!tails_ticket 12579 desc="set up"]] automated tests for the +reproducibility of our ISO image. Obviously, the results of these tests [are +publicly +available](https://nightly.tails.boum.org/reproducibly_build_Tails_ISO_devel/builds/). + +## How does one read these tests? + +Every attempt to reproducibly rebuild an ISO generates a second ISO image, as +well as a number of files, which help +identify the build environment and its' variables. These files are the so +called "build artifacts". If the two ISO images are not identical, one will find the output +of diffoscope, a comparison tool, in the build_artifacts. If this file is not +present, there are not differences detected by our test environment, and thus, +a build is reproducible. These successful reproduction attempts are [found +here](https://nightly.tails.boum.org/reproducibly_build_Tails_ISO_devel/builds/lastSuccessfulBuild/). + +## Release process documentation + +We are still working on documenting how we've modified our release +process to ensure the ISO images we publish are reproducible +([[!tails_ticket 12628]], [[!tails_ticket 12629]]). The documentation +will be published when Tails 3.5 is out (January 2018). + +# Working with the broader free software community + +## Upstream contributions + +All the code that we wrote during this project has either been published in +our Git tree, or, when improvements were made to upstream software or +projects, has been upstreamed. This is the case for our changes in +''fontconfig'', ''ikiwiki'', ''squashfs'' and ''diffoscope'', for example. +We certainly hope that this will help other projects to rely on our +improvements. + +For example: + + * APT auto-removal file ([[!tails_ticket 11986]]): patch submitted and accepted + upstream, backported in Tails + * Switched to the new squashfs-tools upstream, that builds SquashFS + in a reproducible manner ([[!tails_ticket 12032]]). + * Various non-determinism issues in the mtimes of the files included + in our SquashFS, that made not only the SquashFS non-reproducible, + but also made the initrd non-reproducible despite the patches we + sent upstream for initramfs-tools ([[!tails_ticket 12330]]). + +## Explanations for the Reproducible Builds community + +In October we also published [[a technical report on how we made Tails +images +reproducible|blueprint/reproducible_builds/report_to_RB_community/]] +and sent it to the [Reproducible Builds general +mailinglist](https://lists.reproducible-builds.org/pipermail/rb-general/2017-October/000656.html) + +During the third Reproducible Builds World summit, which took place in November +2017 in Berlin, we generalized this report and contributed everything we +know about making system images reproducible to the [Reproducible Builds +documentation](https://reproducible-builds.org/docs/system-images/). + +# Conclusion + +Working on making Tails reproducible was a fun endeavor and we are very +happy to having been supported by MOSS! Thank you. diff --git a/wiki/src/doc/first_steps/startup_options.de.po b/wiki/src/doc/first_steps/startup_options.de.po index 2470274521206f0dc01517ee9b279b00e5871ba8..2ef82b0af0885d0f5e1d02bd28b962cd745e52d1 100644 --- a/wiki/src/doc/first_steps/startup_options.de.po +++ b/wiki/src/doc/first_steps/startup_options.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-12-26 21:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2017-11-12 19:38+0100\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -158,8 +158,9 @@ msgstr "" "So sieht der erste Bildschirm des Tails Greeter aus:\n" #. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Willkommen bei Tails!\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options.fa.po b/wiki/src/doc/first_steps/startup_options.fa.po index 6b314048a021cd9cbd1fd89b39e7c0ab71dc7466..97bc110692dd4e3a6782b13404d67f74fb03d329 100644 --- a/wiki/src/doc/first_steps/startup_options.fa.po +++ b/wiki/src/doc/first_steps/startup_options.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: tails-l10n@boum.org\n" -"POT-Creation-Date: 2017-12-26 21:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2015-10-10 06:50+0000\n" "Last-Translator: sprint5 \n" "Language-Team: Persian \n" "Language-Team: Tails translators \n" @@ -151,8 +151,9 @@ msgstr "" "bureau GNOME :\n" #. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Bienvenue dans Tails !\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options.it.po b/wiki/src/doc/first_steps/startup_options.it.po index 7a9c4f9b0b5b3b17c214726f90dff79e5cb9a0bf..d64f129cab40a68e816b32dd1a1ac58f140c92b7 100644 --- a/wiki/src/doc/first_steps/startup_options.it.po +++ b/wiki/src/doc/first_steps/startup_options.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails italiano\n" -"POT-Creation-Date: 2017-12-26 21:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2017-05-30 18:09+0200\n" "Last-Translator: Zeyev \n" "Language-Team: ita \n" @@ -156,8 +156,9 @@ msgstr "" # Più opzioni? Pulsante Si/No e Login #. type: Plain text -#, no-wrap -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +#, fuzzy, no-wrap +#| msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" msgstr "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Benvenuto su Tails.\"]]\n" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options.mdwn b/wiki/src/doc/first_steps/startup_options.mdwn index 926b78736ddde08a28aa8e9f1f3a7b1d1e07a019..64ebb248f6109227b7ca791000116c980bb7c53a 100644 --- a/wiki/src/doc/first_steps/startup_options.mdwn +++ b/wiki/src/doc/first_steps/startup_options.mdwn @@ -49,7 +49,7 @@ Using Tails Greeter appears after the Boot Loader Menu, but before the GNOME Desktop: -[[!img tails-greeter-welcome-to-tails.png link=no alt="Welcome to Tails!"]] +[[!img tails-greeter-welcome-to-tails.png link=no alt="Tails Greeter: Welcome to Tails!"]] You can activate assistive technologies, like a screen reader or large text, from the universal access menu (the diff --git a/wiki/src/doc/first_steps/startup_options.pt.po b/wiki/src/doc/first_steps/startup_options.pt.po index 8f22216a1715ed063a4d7b49e6efd52cd5f8a363..1997d1c335f32dbc0e9a24675a7dc503a9365e4e 100644 --- a/wiki/src/doc/first_steps/startup_options.pt.po +++ b/wiki/src/doc/first_steps/startup_options.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-12-26 21:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2014-06-17 21:42-0300\n" "Last-Translator: Tails Developers \n" "Language-Team: LANGUAGE \n" @@ -176,7 +176,7 @@ msgstr "" #| msgid "" #| "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails. More\n" #| "options? Yes, and No toggle button, and Login button.\"]]\n" -msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Welcome to Tails!\"]]\n" +msgid "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Tails Greeter: Welcome to Tails!\"]]\n" msgstr "" "[[!img tails-greeter-welcome-to-tails.png link=no alt=\"Bem vindo/a ao Tails. Mais\n" "opções? Botão Sim e Não, e botão de Login.\"]]\n" diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.de.po b/wiki/src/doc/first_steps/startup_options/administration_password.de.po index f6b207cef93f8f0660a2274f953af11f8774eb18..567fbbbcd5779c2327f21f9e56a1ed01999a309d 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.de.po +++ b/wiki/src/doc/first_steps/startup_options/administration_password.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-01-28 15:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2016-07-17 04:40+0200\n" "Last-Translator: Tails translators \n" "Language-Team: Tails Translators \n" @@ -81,11 +81,16 @@ msgstr "" "Greeters|startup_options#tails_greeter]] ein Administrationspasswort setzen.\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Beim Erscheinen des Tails Greeters wählen " "Sie bitte im Willkommen bei Tails Fenster " @@ -94,10 +99,21 @@ msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Administration password section, " -"specify a password of your choice in both the Password and Verify Password text " -"boxes." +"When the Additional Settings dialog appears, " +"click on Administration Password." +msgstr "" + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the Administration password section, " +#| "specify a password of your choice in both the Password and Verify Password " +#| "text boxes." +msgid "" +"Specify a password of your choice in both the Administration Password and Confirm text boxes then click Add." msgstr "" "In dem Bereich Administrationspasswort " "können Sie ein Passwort Ihrer Wahl in den Feldern \n" "Language-Team: Persian Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "وقتی خوشامدگوی تیلز بالا می‌آید، در پنجرهٔ " "به تیلز خوش آمدید روی دکمهٔ Administration password section, " -"specify a password of your choice in both the Password and Verify Password text " -"boxes." +"When the Additional Settings dialog appears, " +"click on Administration Password." +msgstr "" + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the Administration password section, " +#| "specify a password of your choice in both the Password and Verify Password " +#| "text boxes." +msgid "" +"Specify a password of your choice in both the Administration Password and Confirm text boxes then click Add." msgstr "" "در بخش گذرواژهٔ مدیریتی گذرواژه‌ای به انتخاب " "خود در هر دو بخش گذرواژه و \n" "Language-Team: Tails translators \n" @@ -76,11 +76,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Lorsque Tails Greeter apparaît, dans la " "fenêtre Bienvenue dans Tails, cliquez sur le " @@ -89,10 +94,21 @@ msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Administration password section, " -"specify a password of your choice in both the Password and Verify Password text " -"boxes." +"When the Additional Settings dialog appears, " +"click on Administration Password." +msgstr "" + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the Administration password section, " +#| "specify a password of your choice in both the Password and Verify Password " +#| "text boxes." +msgid "" +"Specify a password of your choice in both the Administration Password and Confirm text boxes then click Add." msgstr "" "Dans la partie Mot de passe d'administration, saisissez un mot de passe de votre choix dans les deux champs \n" @@ -76,11 +76,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Quando appare Tails Greeter, nella\n" "finestra Benvenuto su Tails, clicca sul " @@ -88,12 +93,17 @@ msgstr "" "Avanti." #. type: Bullet: '2. ' +msgid "" +"When the Additional Settings dialog appears, " +"click on Administration Password." +msgstr "" + +#. type: Bullet: '3. ' #, fuzzy msgid "" -"In the Administration password section, " -"specify a password of your choice in both the Password and Verify Password text " -"boxes." +"Specify a password of your choice in both the Administration Password and Confirm text boxes then click Add." msgstr "" "Nella sezione Password da amministratore\n" "inserire una password di tua scelta sia nella casella di testo Tails Greeter|startup_options#tails_greeter]]. -1. When Tails Greeter appears, in the - Welcome to Tails window, click on the - Yes button. Then click on the - Forward button. - -2. In the Administration password section, specify - a password of your choice in both the Password - and Verify Password text boxes. +1. When Tails Greeter appears, click on the + [[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]] button. + +2. When the Additional Settings dialog appears, + click on Administration Password. + +3. Specify a password of your choice in both the + Administration Password and + Confirm text boxes then click + Add. diff --git a/wiki/src/doc/first_steps/startup_options/administration_password.pt.po b/wiki/src/doc/first_steps/startup_options/administration_password.pt.po index 0f1c739ffb8698ca149634090a1f27ca5df01e0c..503c589136b615d9faf3caff9cb315802bf2ac18 100644 --- a/wiki/src/doc/first_steps/startup_options/administration_password.pt.po +++ b/wiki/src/doc/first_steps/startup_options/administration_password.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-01-28 15:18+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2014-06-21 19:15-0300\n" "Last-Translator: Tails Developers \n" "Language-Team: LANGUAGE \n" @@ -76,11 +76,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]].\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Quando o Tails Greeter aparecer, na " "janela Bem vindo/a ao Tails, clique no botão " @@ -89,10 +94,21 @@ msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Administration password section, " -"specify a password of your choice in both the Password and Verify Password text " -"boxes." +"When the Additional Settings dialog appears, " +"click on Administration Password." +msgstr "" + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the Administration password section, " +#| "specify a password of your choice in both the Password and Verify Password " +#| "text boxes." +msgid "" +"Specify a password of your choice in both the Administration Password and Confirm text boxes then click Add." msgstr "" "Na seção de Senha de administração, " "especifique uma senha de sua escolha nas caixas \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,16 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Wenn der Tails Greeter erscheint, klicken " "Sie im Willkommen bei Tails Fenster auf " @@ -30,13 +35,15 @@ msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Network configuration section, select " -"the following option: This computer's Internet " -"connection is censored, filtered, or proxied." +"When the Additional Settings dialog appears, " +"click on Network Configuration." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Configure a Tor bridge or local proxy option." msgstr "" -"In Bereich Netzwerkkonfiguration wählen Sie " -"bitte folgende Option aus: Die Internetverbindung " -"dieses Rechners ist zensiert, gefiltert oder vermittelt." #. type: Plain text msgid "" @@ -45,3 +52,13 @@ msgid "" msgstr "" "Nachdem die Arbeitsumgebung geladen und eine Netzwerkverbindung hergestellt " "wurde, wird Sie ein Assistent durch die Konfiguration von Tor führen." + +#~ msgid "" +#~ "In the Network configuration section, " +#~ "select the following option: This computer's " +#~ "Internet connection is censored, filtered, or proxied." +#~ msgstr "" +#~ "In Bereich Netzwerkkonfiguration wählen " +#~ "Sie bitte folgende Option aus: Die " +#~ "Internetverbindung dieses Rechners ist zensiert, gefiltert oder " +#~ "vermittelt." diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po index d35c505a7c635f280961287e528bfb6cc11dd145..935321ac0df138701057c4d2f71140a6d4ede204 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-03-14 17:22+0000\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,17 +18,21 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Network configuration section, select " -"the following option: This computer's Internet " -"connection is censored, filtered, or proxied." +"When the Additional Settings dialog appears, " +"click on Network Configuration." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Configure a Tor bridge or local proxy option." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po index 62cdc28e05325a2cd4b2bc6fda27a8f728d520f6..7e7b33a4da79da5be17d4245b6572dd35876893a 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2016-03-14 17:22+0000\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2016-07-05 23:28+0100\n" "Last-Translator: AtomiKe \n" "Language-Team: Tails translators \n" @@ -17,11 +17,16 @@ msgstr "" "X-Generator: Poedit 1.6.10\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Quand le Tails Greeter apparaît, dans la " "fenêtre Bienvenue dans Tails, cliquez sur le " @@ -30,14 +35,15 @@ msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Network configuration section, select " -"the following option: This computer's Internet " -"connection is censored, filtered, or proxied." +"When the Additional Settings dialog appears, " +"click on Network Configuration." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Configure a Tor bridge or local proxy option." msgstr "" -"Dans la section Configuration réseau, " -"sélectionnez l'option suivante : La connexion " -"Internet de cet ordinateur est censurée, filtrée ou passe par un proxy." #. type: Plain text msgid "" @@ -46,3 +52,13 @@ msgid "" msgstr "" "Puis, après le démarrage de la session et la connexion au réseau, " "l'assistant va vous guider dans la configuration de Tor." + +#~ msgid "" +#~ "In the Network configuration section, " +#~ "select the following option: This computer's " +#~ "Internet connection is censored, filtered, or proxied." +#~ msgstr "" +#~ "Dans la section Configuration réseau, " +#~ "sélectionnez l'option suivante : La connexion " +#~ "Internet de cet ordinateur est censurée, filtrée ou passe par un proxy." diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po index 5e614bba992db319ff89eaf71c9c465148db9f07..1f447500196a3593e991affa78dea6ec1f629fa1 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-05-17 09:40+0200\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: ita \n" @@ -18,17 +18,21 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Network configuration section, select " -"the following option: This computer's Internet " -"connection is censored, filtered, or proxied." +"When the Additional Settings dialog appears, " +"click on Network Configuration." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Configure a Tor bridge or local proxy option." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn index c4d3e2237b647b44b9deed681ddff43cf014404d..a35bbc17c5ea17521bea6497500ea6ac00a7f48a 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.mdwn @@ -1,11 +1,10 @@ -1. When Tails Greeter appears, in the - Welcome to Tails window, click on the - Yes button. Then click on the - Forward button. +1. When Tails Greeter appears, click on the + [[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]] button. -2. In the Network configuration section, select - the following option: This computer's Internet - connection is censored, filtered, or proxied. +2. When the Additional Settings dialog appears, + click on Network Configuration. + +3. Select the Configure a Tor bridge or local proxy option. Then, after starting the working session and connecting to the network, an assistant will guide you through the configuration of Tor. diff --git a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po index d35c505a7c635f280961287e528bfb6cc11dd145..935321ac0df138701057c4d2f71140a6d4ede204 100644 --- a/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po +++ b/wiki/src/doc/first_steps/startup_options/bridge_mode.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2016-03-14 17:22+0000\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,17 +18,21 @@ msgstr "" #. type: Bullet: '1. ' msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" #. type: Bullet: '2. ' msgid "" -"In the Network configuration section, select " -"the following option: This computer's Internet " -"connection is censored, filtered, or proxied." +"When the Additional Settings dialog appears, " +"click on Network Configuration." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Configure a Tor bridge or local proxy option." msgstr "" #. type: Plain text diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po b/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po index 2b191b22b4bea9bbdef784dbcf7baccd85382744..8d836a4f16933ae69428b758b9f80526238e6cfc 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po +++ b/wiki/src/doc/first_steps/startup_options/mac_spoofing.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2015-02-22 12:54+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2015-01-16 19:01-0000\n" "Last-Translator: Tails developers \n" "Language-Team: LANGUAGE \n" @@ -295,11 +295,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]] deaktivieren:\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Wenn Tails Greeter erscheint, klicken Sie " "im Welcome to Tails-Fenster auf Forward." #. type: Bullet: '2. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." msgid "" -"In the MAC address spoofing section, " -"deselect the Spoof all MAC addresses option." +"When the Additional Settings dialog appears, " +"click on MAC Address Spoofing." +msgstr "" +"Im Bereich MAC address spoofing deaktivieren " +"Sie bitte die Option Spoof all MAC addresses." + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." +msgid "" +"Select the Don't spoof MAC addresses option." msgstr "" "Im Bereich MAC address spoofing deaktivieren " "Sie bitte die Option Spoof all MAC addresses." diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po b/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po index bb8c90d2bafa92d5af0c68c6e116c1e4ee502d19..1d6cc77026464bb824fe2d3bff264b83dcc916a5 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po +++ b/wiki/src/doc/first_steps/startup_options/mac_spoofing.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2015-07-28 09:53+0200\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -52,8 +52,7 @@ msgstr "" #, no-wrap msgid "" "1. If you use your laptop to connect to several Wi-Fi networks, the\n" -"same MAC address of your Wi-Fi interface is used on all those local " -"networks. Someone\n" +"same MAC address of your Wi-Fi interface is used on all those local networks. Someone\n" "observing those networks can recognize your MAC address and **track your\n" "geographical location**.\n" msgstr "" @@ -62,10 +61,8 @@ msgstr "" #, no-wrap msgid "" "2. As explained in our documentation on [[network\n" -"fingerprint|about/fingerprint]], someone observing the traffic coming out " -"of\n" -"your computer on the local network can probably see that you are using " -"Tails. In\n" +"fingerprint|about/fingerprint]], someone observing the traffic coming out of\n" +"your computer on the local network can probably see that you are using Tails. In\n" "that case, your MAC address can **identify you as a Tails user**.\n" msgstr "" @@ -99,10 +96,8 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"**MAC address spoofing is enabled by default for all network interfaces.** " -"This is\n" -"usually beneficial, even if you don't want to hide your geographical " -"location.\n" +"**MAC address spoofing is enabled by default for all network interfaces.** This is\n" +"usually beneficial, even if you don't want to hide your geographical location.\n" msgstr "" #. type: Plain text @@ -134,8 +129,8 @@ msgstr "" #. type: Plain text msgid "" "In some situations MAC address spoofing is not useful but can instead be " -"problematic. In such cases, you might want to [[disable MAC address " -"spoofing|mac_spoofing#disable]]." +"problematic. In such cases, you might want to [[disable MAC address spoofing|" +"mac_spoofing#disable]]." msgstr "" #. type: Plain text @@ -211,23 +206,26 @@ msgstr "" #. type: Plain text #, no-wrap msgid "" -"You can disable MAC address spoofing from [[Tails\n" +"You can disable MAC address spoofing from [[Tails\n" "Greeter|startup_options#tails_greeter]]:\n" msgstr "" #. type: Bullet: '1. ' msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" #. type: Bullet: '2. ' msgid "" -"In the MAC address spoofing section, " -"deselect the Spoof all MAC addresses option." +"When the Additional Settings dialog appears, " +"click on MAC Address Spoofing." +msgstr "" + +#. type: Bullet: '3. ' +msgid "" +"Select the Don't spoof MAC addresses option." msgstr "" #. type: Title = diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po b/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po index 49d4717008eb783f176c2dc21f5e52f8e8cb3835..1dc0d994f1dadca940d15cb565773b4ba9e5ebdb 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po +++ b/wiki/src/doc/first_steps/startup_options/mac_spoofing.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-04-27 20:08+0300\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2014-04-25 06:29-0000\n" "Last-Translator: \n" "Language-Team: LANGUAGE \n" @@ -287,11 +287,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]] :\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Quand le Tails Greeter apparaît, dans la " "fenêtre Bienvenue dans Tails, cliquer sur le " @@ -299,9 +304,27 @@ msgstr "" "class=\"button\">Suivant." #. type: Bullet: '2. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." msgid "" -"In the MAC address spoofing section, " -"deselect the Spoof all MAC addresses option." +"When the Additional Settings dialog appears, " +"click on MAC Address Spoofing." +msgstr "" +"Dans la section Usurpation d'adresse MAC, " +"décocher l'option Usurper toutes les adresses MAC." + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." +msgid "" +"Select the Don't spoof MAC addresses option." msgstr "" "Dans la section Usurpation d'adresse MAC, " "décocher l'option Usurper toutes les adresses MAC\n" "Language-Team: ita \n" @@ -286,11 +286,16 @@ msgstr "" "Greeter|startup_options#tails_greeter]]:\n" #. type: Bullet: '1. ' +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." msgid "" -"When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." msgstr "" "Quando l'Tails Greeter appare, nella " "finestra Benvenuto su Tails, clicca sul " @@ -298,9 +303,27 @@ msgstr "" "class=\"button\">Invio." #. type: Bullet: '2. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." msgid "" -"In the MAC address spoofing section, " -"deselect the Spoof all MAC addresses option." +"When the Additional Settings dialog appears, " +"click on MAC Address Spoofing." +msgstr "" +"Nella sezione spoofing dell'indirizzo MAC, " +"deseleziona l'opzione Effettua lo spoofing di tutti " +"gli indirizzi MAC." + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." +msgid "" +"Select the Don't spoof MAC addresses option." msgstr "" "Nella sezione spoofing dell'indirizzo MAC, " "deseleziona l'opzione Effettua lo spoofing di tutti " diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn b/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn index 7f2fbd6ff34e5632fb14ac40376e4922e46f9c27..6e44256a37680294b5bef67403d8036c48f6ee39 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn +++ b/wiki/src/doc/first_steps/startup_options/mac_spoofing.mdwn @@ -108,13 +108,13 @@ Disable MAC address spoofing You can disable MAC address spoofing from [[Tails Greeter|startup_options#tails_greeter]]: -1. When Tails Greeter appears, in the - Welcome to Tails window, click on the - Yes button. Then click on the - Forward button. +1. When Tails Greeter appears, click on the + [[!img lib/list-add.png alt="Expand" class="symbolic" link="no"]] button. -2. In the MAC address spoofing section, deselect - the Spoof all MAC addresses option. +2. When the Additional Settings dialog appears, + click on MAC Address Spoofing. + +3. Select the Don't spoof MAC addresses option. Other considerations ==================== diff --git a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po b/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po index b18b05425bb7ab9fcbaa855de1c503856a8c9388..99cf24065e5ffdfca7e8b87660a0aead2d00a484 100644 --- a/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po +++ b/wiki/src/doc/first_steps/startup_options/mac_spoofing.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2014-04-15 11:39+0300\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2014-06-21 19:20-0300\n" "Last-Translator: Tails Developers \n" "Language-Team: LANGUAGE \n" @@ -26,16 +26,35 @@ msgid "What is a MAC address?\n" msgstr "O que é um endereço MAC?\n" #. type: Plain text -msgid "Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]] which is a serial number defined for each interface from factory by its vendor. MAC addresses are used on the local network to identify the communications of each network interface." -msgstr "Toda interface de rede — com ou sem fio — tem um [[!wikipedia MAC address]], que é um número de série definido de fábrica para cada interface pelo seu vendedor. Endereços MAC são utilizados na rede logal para identificar as comunicações de cada interface de rede." +msgid "" +"Every network interface — wired or Wi-Fi — has a [[!wikipedia MAC address]] " +"which is a serial number defined for each interface from factory by its " +"vendor. MAC addresses are used on the local network to identify the " +"communications of each network interface." +msgstr "" +"Toda interface de rede — com ou sem fio — tem um [[!wikipedia MAC address]], " +"que é um número de série definido de fábrica para cada interface pelo seu " +"vendedor. Endereços MAC são utilizados na rede logal para identificar as " +"comunicações de cada interface de rede." #. type: Plain text -msgid "While your IP address identifies where you are on the Internet, your MAC address identifies which device you are using on the local network. MAC addresses are only useful on the local network and are not sent over the Internet." -msgstr "Enquanto seu endereço IP identifica quem você é na Internet, seu endereço MAC identifica qual dispositivo você está usando na rede local. Endereços MAC somente são úteis na sua rede local e não são enviados pela Internet." +msgid "" +"While your IP address identifies where you are on the Internet, your MAC " +"address identifies which device you are using on the local network. MAC " +"addresses are only useful on the local network and are not sent over the " +"Internet." +msgstr "" +"Enquanto seu endereço IP identifica quem você é na Internet, seu endereço " +"MAC identifica qual dispositivo você está usando na rede local. Endereços " +"MAC somente são úteis na sua rede local e não são enviados pela Internet." #. type: Plain text -msgid "Having such a unique identifier used on the local network can harm your privacy. Here are two examples:" -msgstr "Ter um identificador único na sua rede local pode por em risco sua privacidade. Aqui estão dois exemplos:" +msgid "" +"Having such a unique identifier used on the local network can harm your " +"privacy. Here are two examples:" +msgstr "" +"Ter um identificador único na sua rede local pode por em risco sua " +"privacidade. Aqui estão dois exemplos:" #. type: Plain text #, no-wrap @@ -69,12 +88,32 @@ msgid "What is MAC address spoofing?\n" msgstr "O que é alteração de endereço MAC?\n" #. type: Plain text -msgid "Tails can temporarily change the MAC address of your network interfaces to random values for the time of a working session. This is what we call \"MAC address spoofing\". MAC address spoofing in Tails hides the serial number of your network interface, and so to some extend, who you are, to the local network." -msgstr "O Tails pode temporariamente mudar o endereço MAC da sua interface de rede para valores aleatórios durante uma sessão de trabalho. Isto é o que pode ser chamado de \"alteração de endereço MAC\" (ou \"MAC address spoofing\", em inglês). A falsificação do endereço MAC no Tails esconde o número de série de sua interface de rede e, até um certo ponto, também quem você é, para a rede local." +msgid "" +"Tails can temporarily change the MAC address of your network interfaces to " +"random values for the time of a working session. This is what we call \"MAC " +"address spoofing\". MAC address spoofing in Tails hides the serial number of " +"your network interface, and so to some extend, who you are, to the local " +"network." +msgstr "" +"O Tails pode temporariamente mudar o endereço MAC da sua interface de rede " +"para valores aleatórios durante uma sessão de trabalho. Isto é o que pode " +"ser chamado de \"alteração de endereço MAC\" (ou \"MAC address spoofing\", " +"em inglês). A falsificação do endereço MAC no Tails esconde o número de " +"série de sua interface de rede e, até um certo ponto, também quem você é, " +"para a rede local." #. type: Plain text -msgid "MAC address spoofing is enabled by default in Tails because it is usually beneficial. But in some situations it might also lead to connectivity problems or make your network activity look suspicious. This documentation explains whether to use MAC spoofing or not, depending on your situation." -msgstr "A alteração de endereço MAC é habilitada por padrão no Tails porque seu uso é benéfico. Mas em algumas situações ela também pode causar problemas de conectividade, ou fazer com que sua atividade de rede pareça suspeita. Esta documentação explica quando usar a falsificação de MAC ou não, dependendo de sua situação." +msgid "" +"MAC address spoofing is enabled by default in Tails because it is usually " +"beneficial. But in some situations it might also lead to connectivity " +"problems or make your network activity look suspicious. This documentation " +"explains whether to use MAC spoofing or not, depending on your situation." +msgstr "" +"A alteração de endereço MAC é habilitada por padrão no Tails porque seu uso " +"é benéfico. Mas em algumas situações ela também pode causar problemas de " +"conectividade, ou fazer com que sua atividade de rede pareça suspeita. Esta " +"documentação explica quando usar a falsificação de MAC ou não, dependendo de " +"sua situação." #. type: Title = #, no-wrap @@ -95,12 +134,30 @@ msgid "Here are a few examples:" msgstr "Aqui estão alguns exemplos:" #. type: Bullet: '* ' -msgid "**Using your own computer on an public network without registration**, for example a free Wi-Fi service in a restaurant where you don't need to register with your identity. In this case, MAC address spoofing hides the fact that your computer is connected to this network." -msgstr "**Usar seu próprio computador em uma rede pública sem registro**, por exemplo um serviço de Wi-Fi grátis em um restaurante no qual você não precisa se registrar com sua identidade. Neste caso, a alteração de endereço MAC oculta o fato de que seu computador está conectado àquela rede." +msgid "" +"**Using your own computer on an public network without registration**, for " +"example a free Wi-Fi service in a restaurant where you don't need to " +"register with your identity. In this case, MAC address spoofing hides the " +"fact that your computer is connected to this network." +msgstr "" +"**Usar seu próprio computador em uma rede pública sem registro**, por " +"exemplo um serviço de Wi-Fi grátis em um restaurante no qual você não " +"precisa se registrar com sua identidade. Neste caso, a alteração de endereço " +"MAC oculta o fato de que seu computador está conectado àquela rede." #. type: Bullet: '* ' -msgid "**Using your own computer on a network that you use frequently**, for example at a friend's place, at work, at university, etc. You already have a strong relationship with this place but MAC address spoofing hides the fact that your computer is connected to this network *at a particular time*. It also hides the fact that *you* are running Tails on this network." -msgstr "**Usar seu computador em uma rede que você usa frequentemente**, por exemplo na casa de um amigo, no trabalho, na universidade, etc. Você já tem uma relação forte com este lugar, mas a alteração de endereço MAC oculta o fato de que seu computador está conectado a esta rede *em um momento específico*. Ela também oculta o fato de que *você* está usando Tails nesta rede." +msgid "" +"**Using your own computer on a network that you use frequently**, for " +"example at a friend's place, at work, at university, etc. You already have a " +"strong relationship with this place but MAC address spoofing hides the fact " +"that your computer is connected to this network *at a particular time*. It " +"also hides the fact that *you* are running Tails on this network." +msgstr "" +"**Usar seu computador em uma rede que você usa frequentemente**, por exemplo " +"na casa de um amigo, no trabalho, na universidade, etc. Você já tem uma " +"relação forte com este lugar, mas a alteração de endereço MAC oculta o fato " +"de que seu computador está conectado a esta rede *em um momento específico*. " +"Ela também oculta o fato de que *você* está usando Tails nesta rede." #. type: Title = #, no-wrap @@ -108,40 +165,103 @@ msgid "When to disable MAC address spoofing\n" msgstr "Quando desabilitar a alteração de endereço MAC\n" #. type: Plain text -msgid "In some situations MAC address spoofing is not useful but can instead be problematic. In such cases, you might want to [[disable MAC address spoofing|mac_spoofing#disable]]." -msgstr "Em algumas situações, a alteração de endereço MAC não é útil e pode ser problemática. Nestes casos, você pode querer [[desabilitar a alteração de endereço MAC|mac_spoofing#disable]]." +msgid "" +"In some situations MAC address spoofing is not useful but can instead be " +"problematic. In such cases, you might want to [[disable MAC address spoofing|" +"mac_spoofing#disable]]." +msgstr "" +"Em algumas situações, a alteração de endereço MAC não é útil e pode ser " +"problemática. Nestes casos, você pode querer [[desabilitar a alteração de " +"endereço MAC|mac_spoofing#disable]]." #. type: Plain text -msgid "Note that even if MAC spoofing is disabled, your anonymity on the Internet is preserved:" -msgstr "Note que mesmo com alteração de MAC desabilitada, sua anonimidade na internet é preservada:" +msgid "" +"Note that even if MAC spoofing is disabled, your anonymity on the Internet " +"is preserved:" +msgstr "" +"Note que mesmo com alteração de MAC desabilitada, sua anonimidade na " +"internet é preservada:" #. type: Bullet: ' - ' -msgid "An adversary on the local network can only see encrypted connections to the Tor network." -msgstr "Um adversário na rede local somente vê conexões criptografadas à rede Tor." +msgid "" +"An adversary on the local network can only see encrypted connections to the " +"Tor network." +msgstr "" +"Um adversário na rede local somente vê conexões criptografadas à rede Tor." #. type: Bullet: ' - ' -msgid "Your MAC address is not sent over the Internet to the websites that you are visiting." -msgstr "Seu endereço MAC não é enviado para a Internet para os sítios que você visita." +msgid "" +"Your MAC address is not sent over the Internet to the websites that you are " +"visiting." +msgstr "" +"Seu endereço MAC não é enviado para a Internet para os sítios que você " +"visita." #. type: Plain text -msgid "However, disabling MAC address spoofing makes it possible again for the local network to track your geographical location. If this is problematic, consider using a different network device or moving to another network." -msgstr "Apesar disso, desabilitar a alteração de endereço MAC faz com que seja novamente possível para a rede local rastrear sua localização geográfica. Se isto for problemático, considere utilizar um dispositivo de rede diferente ou mudar para uma outra rede." +msgid "" +"However, disabling MAC address spoofing makes it possible again for the " +"local network to track your geographical location. If this is problematic, " +"consider using a different network device or moving to another network." +msgstr "" +"Apesar disso, desabilitar a alteração de endereço MAC faz com que seja " +"novamente possível para a rede local rastrear sua localização geográfica. Se " +"isto for problemático, considere utilizar um dispositivo de rede diferente " +"ou mudar para uma outra rede." #. type: Bullet: '- ' -msgid "**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 spoofing can make it impossible to connect. It can even **look suspicious** to the network administrators to see an unknown MAC address being used on that network." -msgstr "**Usando um computador público**, por exemplo em uma lan-house ou biblioteca. Este computador é regularmente usado nesta rede local e seu endereço MAC não está associado com sua identidade. Neste caso, a alteração do endereço MAC pode fazer com que seja impossível conectar. Pode também **parecer suspeito** para os administradores de rede verem endereços MAC desconhecidos sendo usados naquela rede." +msgid "" +"**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 spoofing can " +"make it impossible to connect. It can even **look suspicious** to the " +"network administrators to see an unknown MAC address being used on that " +"network." +msgstr "" +"**Usando um computador público**, por exemplo em uma lan-house ou " +"biblioteca. Este computador é regularmente usado nesta rede local e seu " +"endereço MAC não está associado com sua identidade. Neste caso, a alteração " +"do endereço MAC pode fazer com que seja impossível conectar. Pode também " +"**parecer suspeito** para os administradores de rede verem endereços MAC " +"desconhecidos sendo usados naquela rede." #. type: Bullet: '- ' -msgid "On some network interfaces, **MAC address spoofing is impossible** due to limitations in the hardware or in Linux. Tails temporarily disables such network interfaces. You might disable MAC address spoofing to be able to use them." -msgstr "Em algumas interfaces de rede, **a alteração de endereço MAC é impossível** por conta de limitações no hardware ou no Linux. Tails desabilita temporariamente estas interfaces de rede. Você pode desabilitar a alteração de endereço MAC para poder usá-las." +msgid "" +"On some network interfaces, **MAC address spoofing is impossible** due to " +"limitations in the hardware or in Linux. Tails temporarily disables such " +"network interfaces. You might disable MAC address spoofing to be able to use " +"them." +msgstr "" +"Em algumas interfaces de rede, **a alteração de endereço MAC é impossível** " +"por conta de limitações no hardware ou no Linux. Tails desabilita " +"temporariamente estas interfaces de rede. Você pode desabilitar a alteração " +"de endereço MAC para poder usá-las." #. type: Bullet: '- ' -msgid "Some networks **only allow connections from a list of authorized MAC addresses**. In this case, MAC address spoofing makes it impossible to connect to such networks. If you were granted access to such network in the past, then MAC address spoofing might prevent you from connecting." -msgstr "Algumas redes **somente permitem conexões de uma lista de endereços MAC autorizados**. Neste caso, a alteração de endereço MAC torna impossível a conexão a estas redes. Se você ganhou acesso a uma rede assim no passado, então alterar seu endereço MAC pode fazer com que você não consiga se conectar." +msgid "" +"Some networks **only allow connections from a list of authorized MAC " +"addresses**. In this case, MAC address spoofing makes it impossible to " +"connect to such networks. If you were granted access to such network in the " +"past, then MAC address spoofing might prevent you from connecting." +msgstr "" +"Algumas redes **somente permitem conexões de uma lista de endereços MAC " +"autorizados**. Neste caso, a alteração de endereço MAC torna impossível a " +"conexão a estas redes. Se você ganhou acesso a uma rede assim no passado, " +"então alterar seu endereço MAC pode fazer com que você não consiga se " +"conectar." #. type: Bullet: '- ' -msgid "**Using your own computer at home**. Your identity and the MAC address of your computer are already associated to this local network, so MAC address spoofing is probably useless. But if access to your local network is restricted based on MAC addresses it might be impossible to connect with a spoofed MAC address." -msgstr "**Usando seu computador em casa**. Sua identidade e o endereço MAC de seu computador já estão associados a esta rede local, então a alteração do endereço MAC provavelmente é inútil. Mas se o acesso à sua rede local é restrito e baseado no endereço MAC, pode ser que seja impossível conectar com um endereço MAC alterado." +msgid "" +"**Using your own computer at home**. Your identity and the MAC address of " +"your computer are already associated to this local network, so MAC address " +"spoofing is probably useless. But if access to your local network is " +"restricted based on MAC addresses it might be impossible to connect with a " +"spoofed MAC address." +msgstr "" +"**Usando seu computador em casa**. Sua identidade e o endereço MAC de seu " +"computador já estão associados a esta rede local, então a alteração do " +"endereço MAC provavelmente é inútil. Mas se o acesso à sua rede local é " +"restrito e baseado no endereço MAC, pode ser que seja impossível conectar " +"com um endereço MAC alterado." #. type: Plain text #, no-wrap @@ -163,12 +283,48 @@ msgstr "" "Greeter|startup_options#tails_greeter]]:\n" #. type: Bullet: '1. ' -msgid "When Tails Greeter appears, in the Welcome to Tails window, click on the Yes button. Then click on the Forward button." -msgstr "Quando o Tails Greeter aparecer, na janela Bem vindo/a ao Tails, clique no botão Yes. A seguir, clique no botão Próximo." +#, fuzzy +#| msgid "" +#| "When Tails Greeter appears, in the " +#| "Welcome to Tails window, click on the " +#| "Yes button. Then click on the Forward button." +msgid "" +"When Tails Greeter appears, click on the " +"[[!img lib/list-add.png alt=\"Expand\" class=" +"\"symbolic\" link=\"no\"]] button." +msgstr "" +"Quando o Tails Greeter aparecer, na " +"janela Bem vindo/a ao Tails, clique no botão " +"Yes. A seguir, clique no botão Próximo." #. type: Bullet: '2. ' -msgid "In the MAC address spoofing section, deselect the Spoof all MAC addresses option." -msgstr "Na seção alteração de endereço MAC, desmarque a opção Alterar todos os endereços MAC." +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." +msgid "" +"When the Additional Settings dialog appears, " +"click on MAC Address Spoofing." +msgstr "" +"Na seção alteração de endereço MAC, " +"desmarque a opção Alterar todos os endereços MAC." + +#. type: Bullet: '3. ' +#, fuzzy +#| msgid "" +#| "In the MAC address spoofing section, " +#| "deselect the Spoof all MAC addresses " +#| "option." +msgid "" +"Select the Don't spoof MAC addresses option." +msgstr "" +"Na seção alteração de endereço MAC, " +"desmarque a opção Alterar todos os endereços MAC." #. type: Title = #, no-wrap @@ -176,18 +332,43 @@ msgid "Other considerations\n" msgstr "Outras considerações\n" #. type: Bullet: '- ' -msgid "Other means of surveillance can reveal your geographical location: video surveillance, mobile phone activity, credit card transactions, social interactions, etc." -msgstr "Outras formas de vigilância podem revelar sua localização geográfica: vigilância por vídeo, atividade de telefone móvel, transações de cartão de crédito, interações sociais, etc." +msgid "" +"Other means of surveillance can reveal your geographical location: video " +"surveillance, mobile phone activity, credit card transactions, social " +"interactions, etc." +msgstr "" +"Outras formas de vigilância podem revelar sua localização geográfica: " +"vigilância por vídeo, atividade de telefone móvel, transações de cartão de " +"crédito, interações sociais, etc." #. type: Bullet: '- ' -msgid "While using Wi-Fi, anybody within range of your Wi-Fi interface can see your MAC address, even without being connected to the same Wi-Fi access point." -msgstr "Ao usar Wi-Fi, qualquer pessoa dentro do alcance da sua interface Wi-Fi pode ver seu endereço MAC, mesmo que não esteja conectada ao mesmo ponto de acesso Wi-Fi." +msgid "" +"While using Wi-Fi, anybody within range of your Wi-Fi interface can see your " +"MAC address, even without being connected to the same Wi-Fi access point." +msgstr "" +"Ao usar Wi-Fi, qualquer pessoa dentro do alcance da sua interface Wi-Fi pode " +"ver seu endereço MAC, mesmo que não esteja conectada ao mesmo ponto de " +"acesso Wi-Fi." #. type: Bullet: '- ' -msgid "When using mobile phone connectivity, such as 3G or GSM, the identifier of your SIM card (IMSI) and the serial number of your phone (IMEI) are always revealed to the mobile phone operator." -msgstr "Ao usar conectividade por telefone móvel, tal como 3G ou GSM, o identificador do seu cartão SIM (IMSI) e o número de série do seu telefone (IMEI) são sempre revelados para a operadora de telefonia móvel." +msgid "" +"When using mobile phone connectivity, such as 3G or GSM, the identifier of " +"your SIM card (IMSI) and the serial number of your phone (IMEI) are always " +"revealed to the mobile phone operator." +msgstr "" +"Ao usar conectividade por telefone móvel, tal como 3G ou GSM, o " +"identificador do seu cartão SIM (IMSI) e o número de série do seu telefone " +"(IMEI) são sempre revelados para a operadora de telefonia móvel." #. type: Bullet: '- ' -msgid "Some [[!wikipedia captive portals]] might send your MAC address over the Internet to their authentication servers. This should not affect your decision regarding MAC address spoofing. If you decide to disable MAC address spoofing your computer can already be identified by your ISP." -msgstr "Alguns [[!wikipedia captive portals]] podem enviar seu endereço MAC através da Internet para seus servidores de autenticação. Isto não deve afetar sua decisão em relação à alteração do endereço MAC. Se você decidir desabilitar a alteração de endereço MAC, seu computador já poderá ser identificado pelo seu Provedor de Serviços de Internet." - +msgid "" +"Some [[!wikipedia captive portals]] might send your MAC address over the " +"Internet to their authentication servers. This should not affect your " +"decision regarding MAC address spoofing. If you decide to disable MAC " +"address spoofing your computer can already be identified by your ISP." +msgstr "" +"Alguns [[!wikipedia captive portals]] podem enviar seu endereço MAC através " +"da Internet para seus servidores de autenticação. Isto não deve afetar sua " +"decisão em relação à alteração do endereço MAC. Se você decidir desabilitar " +"a alteração de endereço MAC, seu computador já poderá ser identificado pelo " +"seu Provedor de Serviços de Internet." diff --git a/wiki/src/donate-banner.css b/wiki/src/donate-banner.css deleted file mode 100644 index b1b2d62519029fea730379f4c47b34415d1bff96..0000000000000000000000000000000000000000 --- a/wiki/src/donate-banner.css +++ /dev/null @@ -1,211 +0,0 @@ -/* Reset bootstrap */ - -* { - -webkit-box-sizing: unset; - box-sizing: unset; -} - -.page * { - -webkit-box-sizing: border-box; - box-sizing: border-box; -} - -/* Reset */ - -.searchform { - position: relative; -} - -form#searchform { - top: 1.5em !important; - right: 2em !important; -} - -#tails-installation-assistant { - display: none; -} - -@-webkit-keyframes breathinganimation { - 0% { background-color: #53b351;} - 100% { background-color: #ccffaa;} -} -@-moz-keyframes breathinganimation { - 0% { background-color: #53b351;} - 100% { background-color: #ccffaa;} -} -@-o-keyframes breathinganimation { - 0% { background-color: #53b351;} - 100% { background-color: #ccffaa;} -} -@keyframes breathinganimation { - 0% { background-color: #53b351;} - 100% { background-color: #ccffaa;} -} - -.searchform, #donate-strip { - margin: 0 auto; - max-width: 930px; - padding: 0 2em; -} - -#donate-strip { - position: relative; - font-family: "Source Sans Pro Regular", sans-serif; - background-color:#53b351; - - -webkit-animation: breathinganimation ease-in-out 15s -2s infinite alternate; - -moz-animation: breathinganimation ease-in-out 13s -2s infinite alternate; - -o-animation: breathinganimation ease-in-out 15s -2s infinite alternate; - animation: breathinganimation ease-in-out 15s -2s infinite alternate; - - background-repeat: no-repeat; - background-image: url(donate/donate_hand_usb_single.png); - background-position: left bottom; - min-height: 100px; - -webkit-transition: .3s ease-in-out; - -moz-transition: .3s ease-in-out; - transition: .3s linear; -} - -#donate-strip a { - color: #005509; - text-decoration: none; -} - -#donate-strip strong { - font-weight: normal; -} - -body .donate-de, -body .donate-en, -body .donate-fr, -body .donate-pt, -body.de .donate-l, -body.en .donate-l, -body.fr .donate-l, -body.pt .donate-l { - display: none; -} - -body.de .donate-de, -body.en .donate-en, -body.fa .donate-en, -body.fr .donate-fr, -body.it .donate-en, -body.pt .donate-pt { - display: block !important; -} - -.donate-l .donate-title { - margin: 0 0 0 135px; - padding: 1em 0; - width: 70%; - box-sizing: border-box; -} - -#donate-strip strong { - display: block; - font-size: 1.2em; - line-height: 1.35em; -} - -#donate-strip .donate-title-big { - font-size: 2em; - font-weight: bold; - letter-spacing: 0.02em; - -webkit-transition: .5s ease-in-out; - -moz-transition: .5s ease-in-out; - transition: .5s linear; - display: block; - margin: 0; - padding: 0; - line-height: 1.1em; - margin-top: 0.2em; - color: #005509; -} - -#donate-strip:hover .donate-title-big { - color: #fff; -} - -#donate-strip .donate-slogan { - display: none; -} - -/* <3 Flip background images in RTL languages instead of redefining new ones. */ - -html[dir="rtl"] #donate-strip { - transform-origin: center; - transform: scaleX(-1); -} - -html[dir="rtl"] #donate-strip .donate-en { - transform: scaleX(-1); -} - -html[dir="rtl"] .donate-l .donate-title { - margin: 0 15% 0 0; -} - -html[dir="rtl"] #donate-strip .donate-title-big { - transform: scaleX(1); -} - -@media all and (max-width: 479px) { - #donate-strip { - background-image: url(donate/donate_hand_usb_single.png); - background-position: -35px bottom; - } - html[dir="rtl"] #donate-strip * { - transform-origin: unset; - } - .donate-l .donate-title { - margin: 0 1% 0 25%; - width: 74%; - } -} - -@media all and (min-width: 640px) { - #donate-strip { - background-image: url(donate/donate_hand_usb_single.png), url(donate/donate_hand_arrow.png); - background-position: left bottom, right bottom; - } -} -@media all and (min-width: 880px) { - #donate-strip { - background-image: url(donate/donate_hand_usb_single.png), url(donate/donate_hand_single.png); - } - #donate-strip:hover { - background-image: url(donate/donate_hand_usb_single.png), url(donate/donate_hands.png); - } - #donate-strip .donate-slogan { - position: absolute; - bottom: 0; - right: 0; - padding: 0 1em 1em; - box-sizing: border-box; - width: 25%; - text-align: center; - -webkit-transition: .1s ease-in-out; - -moz-transition: .1s ease-in-out; - transition: .1s linear; - display: block; - font-size: 1em; - } - - html[dir="rtl"] #donate-strip .donate-slogan { - right: auto; - left: 0; - transform-origin: 165%; - } - - #donate-strip #donate-slogan-off, - #donate-strip:hover #donate-slogan-on { - display: none; - } - - #donate-strip:hover #donate-slogan-off { - display: block; - color: #fff; - } -} diff --git a/wiki/src/donate.de.po b/wiki/src/donate.de.po index fa3bdc085ed6ec96056f0424c3339ea2cc1584e5..623e5b3b2d25c9d87c16a716b78666a9a15c439a 100644 --- a/wiki/src/donate.de.po +++ b/wiki/src/donate.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-11-08 11:25+0100\n" +"POT-Creation-Date: 2018-01-23 11:06+0100\n" "PO-Revision-Date: 2017-10-29 15:41+0100\n" "Last-Translator: Tails translators\n" "Language-Team: \n" @@ -507,16 +507,6 @@ msgstr "" "Spenden sind bis zu dem " "vollen gesetzlich festgelegten Rahmen von der Steuer absetzbar." -#. type: Content of:

-msgid "" -"Until recently, we asked donors to donate via Zwiebelfreunde e.V. " -"towards Tails. The donations we received there were all (and will all be) " -"used towards Tails." -msgstr "" -"Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. an " -"Tails zu spenden. Die Spenden die darüber erhalten worden (und werden), " -"werden alle an Tails weitergegeben." - #. type: Content of:

msgid "Our partners" msgstr "Unsere Partner" @@ -546,3 +536,12 @@ msgstr "[[!img expenses.png link=\"no\"]]" #. type: Content of:

msgid "Our financial records are available [[here|doc/about/finances]]." msgstr "Unsere Finanzberichte sind [[hier|doc/about/finances]] einsehbar." + +#~ msgid "" +#~ "Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +#~ "towards Tails. The donations we received there were all (and will all be) " +#~ "used towards Tails." +#~ msgstr "" +#~ "Bis vor kurzem haben wir darum gebeten, über Zwiebelfreunde e.V. " +#~ "an Tails zu spenden. Die Spenden die darüber erhalten worden (und " +#~ "werden), werden alle an Tails weitergegeben." diff --git a/wiki/src/donate.fa.po b/wiki/src/donate.fa.po index 8aaf8e53c97e29441d646169c2e64defd49a0b47..e6134b563041f449b63fe620e6440f8779d9756f 100644 --- a/wiki/src/donate.fa.po +++ b/wiki/src/donate.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-10-24 18:16+0300\n" +"POT-Creation-Date: 2018-01-23 11:06+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -367,13 +367,6 @@ msgid "" "deductible to the full extent permitted by law." msgstr "" -#. type: Content of:

-msgid "" -"Until recently, we asked donors to donate via Zwiebelfreunde e.V. " -"towards Tails. The donations we received there were all (and will all be) " -"used towards Tails." -msgstr "" - #. type: Content of:

msgid "Our partners" msgstr "" diff --git a/wiki/src/donate.fr.po b/wiki/src/donate.fr.po index 7c94db7f632bcd1864f4e521d4bd36bb603c08fb..4fa1416d0c062ea07ad597543dee5ddda8f32b49 100644 --- a/wiki/src/donate.fr.po +++ b/wiki/src/donate.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-10-30 09:40+0100\n" +"POT-Creation-Date: 2018-01-23 11:06+0100\n" "PO-Revision-Date: 2017-10-25 15:54+0000\n" "Last-Translator: AtomiKe \n" "Language-Team: Tails translators \n" @@ -510,16 +510,6 @@ msgstr "" "Les dons sont " "déductibles des impôts dans les limites prévues par la loi." -#. type: Content of:

-msgid "" -"Until recently, we asked donors to donate via Zwiebelfreunde e.V. " -"towards Tails. The donations we received there were all (and will all be) " -"used towards Tails." -msgstr "" -"Jusqu'à récemment, nous demandions de faire un don via Zwiebelfreunde " -"e.V. vers Tails. Les dons que nous avons reçu étaient tous (et seront tous) " -"utilisés pour Tails." - #. type: Content of:

msgid "Our partners" msgstr "Nos partenaires" @@ -550,6 +540,15 @@ msgstr "[[!img expenses.fr.png link=\"no\"]]" msgid "Our financial records are available [[here|doc/about/finances]]." msgstr "Nos rapports financiers sont disponibles [[ici|doc/about/finances]]." +#~ msgid "" +#~ "Until recently, we asked donors to donate via Zwiebelfreunde e.V. " +#~ "towards Tails. The donations we received there were all (and will all be) " +#~ "used towards Tails." +#~ msgstr "" +#~ "Jusqu'à récemment, nous demandions de faire un don via " +#~ "Zwiebelfreunde e.V. vers Tails. Les dons que nous avons reçu étaient tous " +#~ "(et seront tous) utilisés pour Tails." + #~ msgid "" #~ "Your donation will be handled by RiseupLabs which is a 501(c)(3) non-" #~ "profit organization in the USA." diff --git a/wiki/src/donate.html b/wiki/src/donate.html index 724749fa5338ce379c9ac6d6283fa187ee4cb659..5faf7919c19bef789fd7cb38850ebde9bad6d89a 100644 --- a/wiki/src/donate.html +++ b/wiki/src/donate.html @@ -384,10 +384,6 @@ permitted by law.

organization in Germany.
Donations are tax-deductible to the full extent permitted by law.

-

Until recently, we asked donors to donate via - Zwiebelfreunde e.V. towards Tails. The donations we received there - were all (and will all be) used towards Tails.

-

diff --git a/wiki/src/donate.it.po b/wiki/src/donate.it.po index 33bc9f64f3a15ad9e38f27924a2c639403b5ef21..9d45c8c0bab88f98749a1a1241c98c800a0a22dd 100644 --- a/wiki/src/donate.it.po +++ b/wiki/src/donate.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-10-24 18:16+0300\n" +"POT-Creation-Date: 2018-01-23 11:06+0100\n" "PO-Revision-Date: 2017-07-21 14:37+0200\n" "Last-Translator: boyska \n" "Language-Team: \n" @@ -565,13 +565,6 @@ msgstr "" "Tutte le donazioni sono interamente scaricabili dalle tasse a norma " "di legge." -#. type: Content of:

-msgid "" -"Until recently, we asked donors to donate via Zwiebelfreunde e.V. " -"towards Tails. The donations we received there were all (and will all be) " -"used towards Tails." -msgstr "" - #. type: Content of:

msgid "Our partners" msgstr "I nostri collaboratori" diff --git a/wiki/src/donate.pt.po b/wiki/src/donate.pt.po index 8aaf8e53c97e29441d646169c2e64defd49a0b47..e6134b563041f449b63fe620e6440f8779d9756f 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" -"POT-Creation-Date: 2017-10-24 18:16+0300\n" +"POT-Creation-Date: 2018-01-23 11:06+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -367,13 +367,6 @@ msgid "" "deductible to the full extent permitted by law." msgstr "" -#. type: Content of:

-msgid "" -"Until recently, we asked donors to donate via Zwiebelfreunde e.V. " -"towards Tails. The donations we received there were all (and will all be) " -"used towards Tails." -msgstr "" - #. type: Content of:

msgid "Our partners" msgstr "" diff --git a/wiki/src/donate/donate_hand_arrow.png b/wiki/src/donate/donate_hand_arrow.png deleted file mode 100644 index 5704396e12eb6a7cc87ac1e267d8e8aefa5204ef..0000000000000000000000000000000000000000 Binary files a/wiki/src/donate/donate_hand_arrow.png and /dev/null differ diff --git a/wiki/src/donate/donate_hand_single.png b/wiki/src/donate/donate_hand_single.png deleted file mode 100644 index d75c0104895abc6ef596e6cb6fc8df286794f4e0..0000000000000000000000000000000000000000 Binary files a/wiki/src/donate/donate_hand_single.png and /dev/null differ diff --git a/wiki/src/donate/donate_hand_usb_single.png b/wiki/src/donate/donate_hand_usb_single.png deleted file mode 100644 index 6c9c162b2ddfebdb846fd24e65f1263e4f1a4c24..0000000000000000000000000000000000000000 Binary files a/wiki/src/donate/donate_hand_usb_single.png and /dev/null differ diff --git a/wiki/src/donate/donate_hands.png b/wiki/src/donate/donate_hands.png deleted file mode 100644 index 10e870fc302fa649cfd8e7a843c345e5480eda72..0000000000000000000000000000000000000000 Binary files a/wiki/src/donate/donate_hands.png and /dev/null differ diff --git a/wiki/src/inc/trace b/wiki/src/inc/trace index 5c65d665c77f0d51507e7ad0b9d7c332f6a70c4a..681f416718034d3472215592d7f50a4abe3d143f 100644 --- a/wiki/src/inc/trace +++ b/wiki/src/inc/trace @@ -1 +1 @@ -1515513171 +1516670406 diff --git a/wiki/src/install/inc/steps/create_persistence.inline.de.po b/wiki/src/install/inc/steps/create_persistence.inline.de.po index 39b1c135031489f64c52dd12c088e74f7e83be1a..fb83e10b8663050026051c3a9239035a7235927e 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.de.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:31+0100\n" "PO-Revision-Date: 2016-05-09 11:23-0000\n" "Last-Translator: Tails translators \n" "Language-Team: \n" @@ -143,12 +143,42 @@ msgstr "" "Sie gezwungen oder durch einen Trick dazu gebracht werden könnten, das Passwort herauszugeben.

\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" msgid "" "

It is possible to\n" -"open the encrypted persistent storage from other operating systems, but it might break\n" -"your security.\n" -"Other operating systems should probably not be trusted to handle\n" +"open the encrypted persistent storage from other operating systems. But, doing\n" +"so might compromise the security provided by Tails.

\n" +msgstr "" +"

Es ist möglich, den verschlüsselten beständigen Speicherbereich\n" +"von einem anderen Betriebssystem aus zu öffnen, dies könnte jedoch\n" +"Ihre Sicherheit gefährden.\n" +"Anderen Betriebssystemen sollte nicht vertraut werden, mit sensiblen\n" +"Informationen umzugehen oder keine Spuren zu hinterlassen.

\n" + +#. type: Plain text +#, no-wrap +msgid "" +"

For example, image thumbnails might be created and saved by the other operating\n" +"system. Or, the contents of files might be indexed by the other operating\n" +"system.

\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" +msgid "" +"

Other operating systems should probably not be trusted to handle\n" "sensitive information or leave no trace.

\n" msgstr "" "

Es ist möglich, den verschlüsselten beständigen Speicherbereich\n" @@ -206,24 +236,11 @@ msgid "Click on the Create button." msgstr "" "Klicken Sie auf die Schaltfläche Erstellen." -#. type: Bullet: '3. ' +#. type: Bullet: '2. ' msgid "Wait for the creation to finish." msgstr "Warten Sie, bis das Erstellen abgeschlossen ist." -#. type: Plain text -#, no-wrap -msgid "" -"

\n" -"

If you close the assistant before the creation finishes, you might\n" -" not be able to start Tails from this USB stick anymore.

\n" -"
\n" -msgstr "" -"
\n" -"

Wenn Sie den Assistenten schließen, bevor das Erstellen abgeschlossen ist,\n" -" ist es eventuell nicht mehr möglich, Tails von diesem USB-Stick zu starten.

\n" -"
\n" - -#. type: Bullet: '4. ' +#. type: Bullet: '3. ' msgid "" "The assistant shows a list of the possible persistence features. Each " "feature corresponds to a set of files or settings to be saved in the " @@ -245,7 +262,7 @@ msgstr "" " Dateien zu aktivieren. Sie können später weitere Funktionen\n" " entsprechend Ihrer Anforderungen aktivieren.\n" -#. type: Bullet: '5. ' +#. type: Bullet: '4. ' msgid "Click Save." msgstr "Klicken Sie auf Speichern." @@ -276,7 +293,7 @@ msgstr "Im Tails Greeter:" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\"]]\n" -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\"]]\n" #. type: Bullet: ' - ' @@ -409,6 +426,17 @@ msgstr "" msgid "

We hope you enjoy using Tails :)

\n" msgstr "

Wir hoffen, dass Sie viel Freude beim Benutzen von Tails haben :)

\n" +#~ msgid "" +#~ "
\n" +#~ "

If you close the assistant before the creation finishes, you might\n" +#~ " not be able to start Tails from this USB stick anymore.

\n" +#~ "
\n" +#~ msgstr "" +#~ "
\n" +#~ "

Wenn Sie den Assistenten schließen, bevor das Erstellen abgeschlossen ist,\n" +#~ " ist es eventuell nicht mehr möglich, Tails von diesem USB-Stick zu starten.

\n" +#~ "
\n" + #~ msgid "" #~ "Select your preferred language in the drop-down list on the bottom left " #~ "of the screen." diff --git a/wiki/src/install/inc/steps/create_persistence.inline.fa.po b/wiki/src/install/inc/steps/create_persistence.inline.fa.po index fec0df9b9fe670c38b2312788646018793b21a54..7687a1499beadd84ef73ecf613b13764c74b716f 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.fa.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:31+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -117,9 +117,22 @@ msgstr "" #, no-wrap msgid "" "

It is possible to\n" -"open the encrypted persistent storage from other operating systems, but it might break\n" -"your security.\n" -"Other operating systems should probably not be trusted to handle\n" +"open the encrypted persistent storage from other operating systems. But, doing\n" +"so might compromise the security provided by Tails.

\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"

For example, image thumbnails might be created and saved by the other operating\n" +"system. Or, the contents of files might be indexed by the other operating\n" +"system.

\n" +msgstr "" + +#. type: Plain text +#, no-wrap +msgid "" +"

Other operating systems should probably not be trusted to handle\n" "sensitive information or leave no trace.

\n" msgstr "" @@ -159,20 +172,11 @@ msgstr "" msgid "Click on the Create button." msgstr "" -#. type: Bullet: '3. ' +#. type: Bullet: '2. ' msgid "Wait for the creation to finish." msgstr "" -#. type: Plain text -#, no-wrap -msgid "" -"
\n" -"

If you close the assistant before the creation finishes, you might\n" -" not be able to start Tails from this USB stick anymore.

\n" -"
\n" -msgstr "" - -#. type: Bullet: '4. ' +#. type: Bullet: '3. ' msgid "" "The assistant shows a list of the possible persistence features. Each " "feature corresponds to a set of files or settings to be saved in the " @@ -187,7 +191,7 @@ msgid "" " can activate more features later on according to your needs.\n" msgstr "" -#. type: Bullet: '5. ' +#. type: Bullet: '4. ' msgid "Click Save." msgstr "" @@ -213,7 +217,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Bullet: ' - ' diff --git a/wiki/src/install/inc/steps/create_persistence.inline.fr.po b/wiki/src/install/inc/steps/create_persistence.inline.fr.po index ec8d692d901cfd79aab184db7a467407469f5ae1..27cf44a0bb6964e87fae89eb9590764bc4839cfe 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.fr.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:31+0100\n" "PO-Revision-Date: 2018-01-04 16:04+0000\n" "Last-Translator: AtomiKe \n" "Language-Team: Tails translators \n" @@ -136,12 +136,42 @@ msgstr "" "que l'on pourrait vous forcer ou vous manipuler afin de divulguer votre phrase de passe.

\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" msgid "" "

It is possible to\n" -"open the encrypted persistent storage from other operating systems, but it might break\n" -"your security.\n" -"Other operating systems should probably not be trusted to handle\n" +"open the encrypted persistent storage from other operating systems. But, doing\n" +"so might compromise the security provided by Tails.

\n" +msgstr "" +"

Il est possible\n" +"d'ouvrir l'espace de stockage persistant chiffré sur d'autres systèmes d'exploitation,\n" +"mais cela peut nuire à votre sécurité.\n" +"Il est difficile de faire confiance à d'autres systèmes d'exploitations pour manipuler\n" +"des données sensibles ou ne pas laisser de traces.

\n" + +#. type: Plain text +#, no-wrap +msgid "" +"

For example, image thumbnails might be created and saved by the other operating\n" +"system. Or, the contents of files might be indexed by the other operating\n" +"system.

\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" +msgid "" +"

Other operating systems should probably not be trusted to handle\n" "sensitive information or leave no trace.

\n" msgstr "" "

Il est possible\n" @@ -198,24 +228,11 @@ msgstr "" msgid "Click on the Create button." msgstr "Cliquez sur le bouton Création." -#. type: Bullet: '3. ' +#. type: Bullet: '2. ' msgid "Wait for the creation to finish." msgstr "Attendez que la création se termine." -#. type: Plain text -#, no-wrap -msgid "" -"

\n" -"

If you close the assistant before the creation finishes, you might\n" -" not be able to start Tails from this USB stick anymore.

\n" -"
\n" -msgstr "" -"
\n" -"

Si vous fermez l'assistant avant que la création ne se termine, il est\n" -" possible que Tails ne puisse plus démarrer depuis cette clé USB.

\n" -"
\n" - -#. type: Bullet: '4. ' +#. type: Bullet: '3. ' msgid "" "The assistant shows a list of the possible persistence features. Each " "feature corresponds to a set of files or settings to be saved in the " @@ -237,7 +254,7 @@ msgstr "" " Données personnelles pour l'instant.\n" " Vous pouvez en activer d'autres plus tard en fonction de vos besoins.\n" -#. type: Bullet: '5. ' +#. type: Bullet: '4. ' msgid "Click Save." msgstr "Cliquez sur Sauvegarder." @@ -264,8 +281,9 @@ msgid "In Tails Greeter:" msgstr "Dans Tails Greeter :" #. type: Plain text -#, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" #. type: Bullet: ' - ' @@ -390,6 +408,17 @@ msgstr "" msgid "

We hope you enjoy using Tails :)

\n" msgstr "

Nous espérons que vous apprécierez Tails :)

\n" +#~ msgid "" +#~ "
\n" +#~ "

If you close the assistant before the creation finishes, you might\n" +#~ " not be able to start Tails from this USB stick anymore.

\n" +#~ "
\n" +#~ msgstr "" +#~ "
\n" +#~ "

Si vous fermez l'assistant avant que la création ne se termine, il est\n" +#~ " possible que Tails ne puisse plus démarrer depuis cette clé USB.

\n" +#~ "
\n" + #~ msgid "" #~ "Select your preferred language in the drop-down list on the bottom left " #~ "of the screen." diff --git a/wiki/src/install/inc/steps/create_persistence.inline.it.po b/wiki/src/install/inc/steps/create_persistence.inline.it.po index 721269263fdbb169000d513d2b8f8ffd15d873a2..7914c14799f902867999bf836b92b02f65c1630b 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.it.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: transitails\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:31+0100\n" "PO-Revision-Date: 2016-09-02 14:09+0200\n" "Last-Translator: anoni\n" "Language-Team: ita \n" @@ -138,12 +138,42 @@ msgstr "" "che potresti essere forzato o ingannato per rivelare la tua chiave segreta.

\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" msgid "" "

It is possible to\n" -"open the encrypted persistent storage from other operating systems, but it might break\n" -"your security.\n" -"Other operating systems should probably not be trusted to handle\n" +"open the encrypted persistent storage from other operating systems. But, doing\n" +"so might compromise the security provided by Tails.

\n" +msgstr "" +"

E' possibile\n" +"aprire la partizione persistente da altri sistemi operativi, ma questo potrebbe rompere\n" +"la vostra sicurezza.\n" +"Gli altri sistemi operativi potrebbero non essere affidabili a maneggiare\n" +"informazioni sensibili o a non lasciare traccia.

\n" + +#. type: Plain text +#, no-wrap +msgid "" +"

For example, image thumbnails might be created and saved by the other operating\n" +"system. Or, the contents of files might be indexed by the other operating\n" +"system.

\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" +msgid "" +"

Other operating systems should probably not be trusted to handle\n" "sensitive information or leave no trace.

\n" msgstr "" "

E' possibile\n" @@ -200,24 +230,11 @@ msgstr "" msgid "Click on the Create button." msgstr "Clicca sul bottone Crea." -#. type: Bullet: '3. ' +#. type: Bullet: '2. ' msgid "Wait for the creation to finish." msgstr "Aspetta che il processo di creazione abbia finito." -#. type: Plain text -#, no-wrap -msgid "" -"

\n" -"

If you close the assistant before the creation finishes, you might\n" -" not be able to start Tails from this USB stick anymore.

\n" -"
\n" -msgstr "" -"
\n" -"

Se tu chiudi l'assistente prima che abbia finito il processo di creazione, potresti\n" -" non essere più in grado di riavviare la tua chiavetta USB con Tails.

\n" -"
\n" - -#. type: Bullet: '4. ' +#. type: Bullet: '3. ' msgid "" "The assistant shows a list of the possible persistence features. Each " "feature corresponds to a set of files or settings to be saved in the " @@ -238,7 +255,7 @@ msgstr "" " personali per il momento.\n" " Potrai attivare le altre funzionalità più tardi quando ti serviranno.\n" -#. type: Bullet: '5. ' +#. type: Bullet: '4. ' msgid "Click Save." msgstr "Clicca Salva." @@ -266,7 +283,7 @@ msgstr "In Tails Greeter:" #. type: Plain text #, no-wrap -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Bullet: ' - ' @@ -392,6 +409,17 @@ msgstr "" msgid "

We hope you enjoy using Tails :)

\n" msgstr "

Speriamo che ti divertirai usando Tails :)

\n" +#~ msgid "" +#~ "
\n" +#~ "

If you close the assistant before the creation finishes, you might\n" +#~ " not be able to start Tails from this USB stick anymore.

\n" +#~ "
\n" +#~ msgstr "" +#~ "
\n" +#~ "

Se tu chiudi l'assistente prima che abbia finito il processo di creazione, potresti\n" +#~ " non essere più in grado di riavviare la tua chiavetta USB con Tails.

\n" +#~ "
\n" + #~ msgid "" #~ "Select your preferred language in the drop-down list on the bottom left " #~ "of the screen." diff --git a/wiki/src/install/inc/steps/create_persistence.inline.mdwn b/wiki/src/install/inc/steps/create_persistence.inline.mdwn index 198e1e81896b17dcc75e7146a12cb7883fe5cac1..3e7ae72e691d8543114934f32e2a7a6cbd941480 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.mdwn +++ b/wiki/src/install/inc/steps/create_persistence.inline.mdwn @@ -51,9 +51,14 @@ that you can be forced or tricked to give out its passphrase.

It is possible to -open the encrypted persistent storage from other operating systems, but it might break -your security. -Other operating systems should probably not be trusted to handle +open the encrypted persistent storage from other operating systems. But, doing +so might compromise the security provided by Tails.

+ +

For example, image thumbnails might be created and saved by the other operating +system. Or, the contents of files might be indexed by the other operating +system.

+ +

Other operating systems should probably not be trusted to handle sensitive information or leave no trace.

@@ -78,14 +83,9 @@ Passphrase text boxes. 1. Click on the Create button. -3. Wait for the creation to finish. - -
-

If you close the assistant before the creation finishes, you might - not be able to start Tails from this USB stick anymore.

-
+2. Wait for the creation to finish. -4. The assistant shows a list of the possible persistence features. Each +3. The assistant shows a list of the possible persistence features. Each feature corresponds to a set of files or settings to be saved in the encrypted persistent storage. @@ -93,7 +93,7 @@ Passphrase text boxes. Data persistence feature for the time being. You can activate more features later on according to your needs. -5. Click Save. +4. Click Save.
[[!img install/inc/infography/restart-on-tails.png link="no" alt=""]]
@@ -107,7 +107,7 @@ Restart and activate the persistent storage 1. In Tails Greeter: - [[!img install/inc/screenshots/greeter_with_persistence.png class="screenshot" link="no" alt="Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'" ]] + [[!img install/inc/screenshots/greeter_with_persistence.png class="screenshot" link="no" alt="Tails Greeter: 'Welcome to Tails!'"]] - Select your language and keyboard layout in the Language & Region section. diff --git a/wiki/src/install/inc/steps/create_persistence.inline.pt.po b/wiki/src/install/inc/steps/create_persistence.inline.pt.po index e2affe0d094d57cc348a90ebe3bf21ffb3673731..b8717a66ba5001b41b9a249d8b0559926d0413e4 100644 --- a/wiki/src/install/inc/steps/create_persistence.inline.pt.po +++ b/wiki/src/install/inc/steps/create_persistence.inline.pt.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails 2.2.1\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:31+0100\n" "PO-Revision-Date: 2016-04-30 12:43-0300\n" "Last-Translator: Tails Developers \n" "Language-Team: Tails translators \n" @@ -144,12 +144,42 @@ msgstr "" "que alguém pode tentar usar a força ou te enganar para conseguir a senha.

\n" #. type: Plain text -#, no-wrap +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" msgid "" "

It is possible to\n" -"open the encrypted persistent storage from other operating systems, but it might break\n" -"your security.\n" -"Other operating systems should probably not be trusted to handle\n" +"open the encrypted persistent storage from other operating systems. But, doing\n" +"so might compromise the security provided by Tails.

\n" +msgstr "" +"

É possível\n" +"abrir o armazenamento persistente criptografado a partir de outros sistemas operacionais, mas isto poderia quebrar\n" +"sua segurança.\n" +"Você provavelmente não deve confiar em outros sistemas operacionais para manipular\n" +"informação sensível ou não deixar rastros.

\n" + +#. type: Plain text +#, no-wrap +msgid "" +"

For example, image thumbnails might be created and saved by the other operating\n" +"system. Or, the contents of files might be indexed by the other operating\n" +"system.

\n" +msgstr "" + +#. type: Plain text +#, fuzzy, no-wrap +#| msgid "" +#| "

It is possible to\n" +#| "open the encrypted persistent storage from other operating systems, but it might break\n" +#| "your security.\n" +#| "Other operating systems should probably not be trusted to handle\n" +#| "sensitive information or leave no trace.

\n" +msgid "" +"

Other operating systems should probably not be trusted to handle\n" "sensitive information or leave no trace.

\n" msgstr "" "

É possível\n" @@ -209,24 +239,11 @@ msgstr "" msgid "Click on the Create button." msgstr "Clique no botão Criar." -#. type: Bullet: '3. ' +#. type: Bullet: '2. ' msgid "Wait for the creation to finish." msgstr "Aguarde a criação terminar." -#. type: Plain text -#, no-wrap -msgid "" -"

\n" -"

If you close the assistant before the creation finishes, you might\n" -" not be able to start Tails from this USB stick anymore.

\n" -"
\n" -msgstr "" -"
\n" -"

Se você fechar o assistente antes da criação terminar, você pode\n" -" não conseguir mais inicializar o Tails a partir desta unidade USB.

\n" -"
\n" - -#. type: Bullet: '4. ' +#. type: Bullet: '3. ' msgid "" "The assistant shows a list of the possible persistence features. Each " "feature corresponds to a set of files or settings to be saved in the " @@ -247,7 +264,7 @@ msgstr "" " Dados Pessoais por enquanto.\n" " Você pode ativar mais recursos posteriormente de acordo com as suas necessidades.\n" -#. type: Bullet: '5. ' +#. type: Bullet: '4. ' msgid "Click Save." msgstr "Clique em Salvar." @@ -278,7 +295,7 @@ msgstr "No Tails Greeter:" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\"]]\n" -msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'Use persistence? [Yes/No]', 'More options? [Yes/No]'\" ]]\n" +msgid " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr " [[!img install/inc/screenshots/greeter_with_persistence.png class=\"screenshot\" link=\"no\"]]\n" #. type: Bullet: ' - ' @@ -411,6 +428,17 @@ msgstr "" msgid "

We hope you enjoy using Tails :)

\n" msgstr "

Esperamos que você goste de usar o Tails :)

\n" +#~ msgid "" +#~ "
\n" +#~ "

If you close the assistant before the creation finishes, you might\n" +#~ " not be able to start Tails from this USB stick anymore.

\n" +#~ "
\n" +#~ msgstr "" +#~ "
\n" +#~ "

Se você fechar o assistente antes da criação terminar, você pode\n" +#~ " não conseguir mais inicializar o Tails a partir desta unidade USB.

\n" +#~ "
\n" + #~ msgid "" #~ "Select your preferred language in the drop-down list on the bottom left " #~ "of the screen." diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.de.po b/wiki/src/install/inc/steps/restart_first_time.inline.de.po index c3338f2db184ac03eab0bc6d84edd992a07ac1f4..5170c763dc51a609e804757db6d3dba90c3752bf 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.de.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2017-02-09 20:59+0100\n" "Last-Translator: Tails translators \n" "Language-Team: \n" @@ -599,7 +599,7 @@ msgstr "" #. type: Plain text #, fuzzy, no-wrap #| msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\"]]\n" -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" +msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\"]]\n" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.fa.po b/wiki/src/install/inc/steps/restart_first_time.inline.fa.po index a063258aee2cbd3be91acc1c058f77adafd46365..ca3cf01368878331dc9e8b12a2fa7d07bbea56c4 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.fa.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -446,7 +446,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" +msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po index 2170fbf0976e3a56d1de58a095766e901fece6f6..5b04ae1d53820f133f072d733ce4582c6fa295bc 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.fr.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Tails\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2018-01-04 16:08+0000\n" "Last-Translator: \n" "Language-Team: Tails translators \n" @@ -560,8 +560,9 @@ msgstr "" "

\n" #. type: Plain text -#, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" +msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" #. type: Plain text diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.it.po b/wiki/src/install/inc/steps/restart_first_time.inline.it.po index 815b9b7f41d3cfbea8611ccccb3efb248759da57..8cb00071156e3baefaa206c7018f04c788f7fa6a 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.it.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: 2017-02-09 21:00+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: ita \n" @@ -579,9 +579,10 @@ msgstr "" "
\n" #. type: Plain text -#, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" -msgstr "" +#, fuzzy, no-wrap +#| msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\"]]\n" +msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" +msgstr " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\"]]\n" #. type: Plain text #, fuzzy, no-wrap @@ -791,13 +792,6 @@ msgstr "" #~ " [[!img doc/first_steps/startup_options/boot-menu-with-options.png " #~ "class=\"screenshot\" link=\"no\"]]\n" -#~ msgid "" -#~ " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails." -#~ "png class=\"screenshot\" link=\"no\"]]\n" -#~ msgstr "" -#~ " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails." -#~ "png class=\"screenshot\" link=\"no\"]]\n" - #~ msgid "" #~ " [[!img install/inc/screenshots/desktop.png class=\"screenshot\" link=" #~ "\"no\"]]\n" diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn index 8c5f5d068884a7f93aec900aafde16f68081b8bd..27d95d5b018d11a916715413a13dd1656d28281c 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.mdwn +++ b/wiki/src/install/inc/steps/restart_first_time.inline.mdwn @@ -202,7 +202,7 @@ from a Tails DVD in a similar way.

"""]] - [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class="screenshot" link="no" alt="Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'"]] + [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class="screenshot" link="no" alt="Tails Greeter: 'Welcome to Tails!'"]] 1. In Tails Greeter, select your language and keyboard layout in the Language & Region section. diff --git a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po index a063258aee2cbd3be91acc1c058f77adafd46365..ca3cf01368878331dc9e8b12a2fa7d07bbea56c4 100644 --- a/wiki/src/install/inc/steps/restart_first_time.inline.pt.po +++ b/wiki/src/install/inc/steps/restart_first_time.inline.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2017-12-26 19:22+0100\n" +"POT-Creation-Date: 2018-01-23 18:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -446,7 +446,7 @@ msgstr "" #. type: Plain text #, no-wrap -msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails', 'More options? [Yes/No]'\"]]\n" +msgid " [[!img doc/first_steps/startup_options/tails-greeter-welcome-to-tails.png class=\"screenshot\" link=\"no\" alt=\"Tails Greeter: 'Welcome to Tails!'\"]]\n" msgstr "" #. type: Plain text diff --git a/wiki/src/local.css b/wiki/src/local.css index e44a24ab8ca84af67cf518c5b14d9bac4fea942b..720deee73b392e53accae35431eb5137beaad5f5 100644 --- a/wiki/src/local.css +++ b/wiki/src/local.css @@ -38,9 +38,6 @@ Table of Content: /* Load RTL stylesheet */ @import url("local.rtl.css"); -/* Load stylesheet for donation campaign */ -@import url("donate-banner.css"); - /* Fonts */ @font-face { font-family: "Source Sans Pro Regular"; src: url("lib/SourceSansPro-Regular.ttf"); } @@ -1364,7 +1361,6 @@ div#highlight p { opacity: 0.4; height: 60px; width: auto; - cursor: pointer; } #pagebody .pastpartner .partner:hover img { diff --git a/wiki/src/partners.de.po b/wiki/src/partners.de.po index ee6477fe59267e134327824199daf0b1aa67dca0..3373dfc8386f5bb13b9b19a7be07ed3e20d6e8f7 100644 --- a/wiki/src/partners.de.po +++ b/wiki/src/partners.de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-01 23:37+0100\n" +"POT-Creation-Date: 2018-01-23 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -104,26 +104,32 @@ msgstr "" msgid "$50.000 – $99.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mozilla Open Source Support - $77.000" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/mozilla.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "ExpressVPN - $1.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/expressvpn.png link=\"no\"]]" +msgid "[[!img lib/partners/expressvpn.png link=\"no\"]]" msgstr "" #. type: Content of:

msgid "in-kind" msgstr "" +#. type: Attribute 'title' of:

+msgid "Tor - Travel to Tor dev meeting & server rent" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/tor.png link=\"no\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -138,10 +144,12 @@ msgstr "" msgid "> $100.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Open Technology Fund - $208.800" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/otf.png link=\"no\"]]" +msgid "[[!img lib/partners/otf.png link=\"no\"]]" msgstr "" #. type: Content of:

@@ -160,10 +168,12 @@ msgstr "" msgid "Anonymous donation - 2.902€" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mediapart - 2.000€" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" +msgid "[[!img lib/partners/mediapart.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -186,16 +196,16 @@ msgstr "" msgid "Anonymous donation - 1.161€" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Google - GSoC Tails Server" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/gsoc.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Travel sponsorship & server rent" msgstr "" #. type: Content of:

@@ -206,16 +216,20 @@ msgstr "" msgid "$50.000 – $99.999" msgstr "" +#. type: Attribute 'title' of:

+msgid "Hivos International - 70.000€" +msgstr "" + #. type: Content of:

-msgid "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" +msgid "[[!img lib/partners/hivos.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "DuckDuckGo - $25.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" +msgid "[[!img lib/partners/ddg.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -230,86 +244,88 @@ msgstr "" msgid "Edward Snowden" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $8.859" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" +msgid "[[!img lib/partners/fpf.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Localization Lab - Translation to Farsi" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/localizationlab.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Server rent" msgstr "" #. type: Content of:

msgid "2014" msgstr "" -#. type: Content of:

-msgid "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Access Now - 50.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +msgid "[[!img lib/partners/accessnow.png link=\"no\"]]" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $33.377" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ffis.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Internet Tools - $25.800" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/debian.png link=\"no\"]]" +msgid "[[!img lib/partners/openitp.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Förderung Freier Information und Software - 5.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ffis.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Debian - $5.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/debian.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $5.000" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Mozilla - Travel to Tails hackfest" msgstr "" #. type: Content of:

msgid "2013" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ndi.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "National Democratic Institute - $21.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $20.000" msgstr "" #. type: Content of:

@@ -320,20 +336,16 @@ msgstr "" msgid "2011" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - $10.950" msgstr "" #. type: Content of:

msgid "2010" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - 8.500€" msgstr "" #. type: Content of: outside any tag (error?) diff --git a/wiki/src/partners.fa.po b/wiki/src/partners.fa.po index ee6477fe59267e134327824199daf0b1aa67dca0..3373dfc8386f5bb13b9b19a7be07ed3e20d6e8f7 100644 --- a/wiki/src/partners.fa.po +++ b/wiki/src/partners.fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-01 23:37+0100\n" +"POT-Creation-Date: 2018-01-23 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -104,26 +104,32 @@ msgstr "" msgid "$50.000 – $99.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mozilla Open Source Support - $77.000" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/mozilla.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "ExpressVPN - $1.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/expressvpn.png link=\"no\"]]" +msgid "[[!img lib/partners/expressvpn.png link=\"no\"]]" msgstr "" #. type: Content of:

msgid "in-kind" msgstr "" +#. type: Attribute 'title' of:

+msgid "Tor - Travel to Tor dev meeting & server rent" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/tor.png link=\"no\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -138,10 +144,12 @@ msgstr "" msgid "> $100.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Open Technology Fund - $208.800" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/otf.png link=\"no\"]]" +msgid "[[!img lib/partners/otf.png link=\"no\"]]" msgstr "" #. type: Content of:

@@ -160,10 +168,12 @@ msgstr "" msgid "Anonymous donation - 2.902€" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mediapart - 2.000€" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" +msgid "[[!img lib/partners/mediapart.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -186,16 +196,16 @@ msgstr "" msgid "Anonymous donation - 1.161€" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Google - GSoC Tails Server" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/gsoc.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Travel sponsorship & server rent" msgstr "" #. type: Content of:

@@ -206,16 +216,20 @@ msgstr "" msgid "$50.000 – $99.999" msgstr "" +#. type: Attribute 'title' of:

+msgid "Hivos International - 70.000€" +msgstr "" + #. type: Content of:

-msgid "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" +msgid "[[!img lib/partners/hivos.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "DuckDuckGo - $25.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" +msgid "[[!img lib/partners/ddg.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -230,86 +244,88 @@ msgstr "" msgid "Edward Snowden" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $8.859" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" +msgid "[[!img lib/partners/fpf.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Localization Lab - Translation to Farsi" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/localizationlab.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Server rent" msgstr "" #. type: Content of:

msgid "2014" msgstr "" -#. type: Content of:

-msgid "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Access Now - 50.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +msgid "[[!img lib/partners/accessnow.png link=\"no\"]]" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $33.377" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ffis.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Internet Tools - $25.800" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/debian.png link=\"no\"]]" +msgid "[[!img lib/partners/openitp.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Förderung Freier Information und Software - 5.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ffis.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Debian - $5.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/debian.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $5.000" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Mozilla - Travel to Tails hackfest" msgstr "" #. type: Content of:

msgid "2013" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ndi.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "National Democratic Institute - $21.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $20.000" msgstr "" #. type: Content of:

@@ -320,20 +336,16 @@ msgstr "" msgid "2011" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - $10.950" msgstr "" #. type: Content of:

msgid "2010" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - 8.500€" msgstr "" #. type: Content of: outside any tag (error?) diff --git a/wiki/src/partners.fr.po b/wiki/src/partners.fr.po index 3ac7d4f3d603b2a3b530757221cd196029feb462..7a8d5b1f1206be936cf33a2884d635ee419c442a 100644 --- a/wiki/src/partners.fr.po +++ b/wiki/src/partners.fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2018-01-01 23:37+0100\n" +"POT-Creation-Date: 2018-01-23 11:38+0100\n" "PO-Revision-Date: 2018-01-12 18:00+0000\n" "Last-Translator: \n" "Language-Team: \n" @@ -120,34 +120,39 @@ msgstr "2017" msgid "$50.000 – $99.000" msgstr "50 000$ – 99 000$" -#. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Mozilla Open Source Support - $77.000" msgstr "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/expressvpn.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/mozilla.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "ExpressVPN - $1.000" msgstr "" -"[[!" -"img lib/partners/expressvpn.png link=\"no\"]]" + +#. type: Content of:

+#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/expressvpn.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" #. type: Content of:

msgid "in-kind" msgstr "en nature" -#. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - Travel to Tor dev meeting & server rent" msgstr "" -"[[!img lib/partners/tor.png link=\"no" -"\"]]" + +#. type: Content of:

+#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/tor.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" #. type: Content of: outside any tag (error?) msgid "" @@ -161,13 +166,15 @@ msgstr "2016" msgid "> $100.000" msgstr "> 100 000$" -#. type: Content of:

-msgid "" -"[[!img lib/partners/otf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Technology Fund - $208.800" msgstr "" -"[[!img lib/partners/otf.png link=\"no\"]]" + +#. type: Content of:

+#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/otf.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" #. type: Content of:

msgid "$10.000 – $49.999" @@ -185,13 +192,17 @@ msgstr "Un individu - 5 000$" msgid "Anonymous donation - 2.902€" msgstr "Don anonyme - 2 902€" +#. type: Attribute 'title' of:

+#, fuzzy +#| msgid "An individual - 2.000€" +msgid "Mediapart - 2.000€" +msgstr "Un individu - 2 000€" + #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" -msgstr "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/mediapart.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" #. type: Attribute 'title' of:

msgid "An individual - 2.000€" @@ -213,22 +224,19 @@ msgstr "Don anonyme - 1 433€" msgid "Anonymous donation - 1.161€" msgstr "Don anonyme - 1 161€" -#. type: Content of:

-msgid "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Google - GSoC Tails Server" msgstr "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/gsoc.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Tor - Travel sponsorship & server rent" msgstr "" -"[[!img lib/partners/tor.png link=\"no\"]]" -"" #. type: Content of:

msgid "2015" @@ -238,21 +246,25 @@ msgstr "2015" msgid "$50.000 – $99.999" msgstr "50 000$ – 99 999$" -#. type: Content of:

-msgid "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Hivos International - 70.000€" msgstr "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/hivos.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "DuckDuckGo - $25.000" msgstr "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" + +#. type: Content of:

+#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/ddg.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" #. type: Attribute 'title' of:

msgid "Laura Poitras & Edward Snowden, Ridenhour's film award - $10.000" @@ -267,113 +279,103 @@ msgstr "Laura Poitras et" msgid "Edward Snowden" msgstr "Edward Snowden" -#. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $8.859" msgstr "" -"[[!img lib/partners/fpf.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/fpf.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Localization Lab - Translation to Farsi" msgstr "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/tor.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/localizationlab.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Tor - Server rent" msgstr "" -"" -"[[!img lib/partners/tor.png link=\"no\"]]" #. type: Content of:

msgid "2014" msgstr "2014" -#. type: Content of:

-msgid "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Access Now - 50.000€" msgstr "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/accessnow.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $33.377" msgstr "" -"[[!img lib/partners/fpf.png link=\"no\"]]" -#. type: Content of:

-msgid "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Internet Tools - $25.800" msgstr "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/partners/ffis.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/openitp.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Förderung Freier Information und Software - 5.000€" msgstr "" -"[[!img lib/partners/ffis.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/debian.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/ffis.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Debian - $5.000" msgstr "" -"" -"[[!img lib/partners/debian.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/debian.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Tor - $5.000" msgstr "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" -#. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Mozilla - Travel to Tails hackfest" msgstr "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" #. type: Content of:

msgid "2013" msgstr "2013" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ndi.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "National Democratic Institute - $21.000" msgstr "" -"[[!img lib/partners/ndi.png link=\"no\"]]" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#, fuzzy +#| msgid "[[!img lib/partners/anonymous.png link=\"no\"]]" +msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +msgstr "[[!img lib/partners/anonymous.png link=\"no\"]]" + +#. type: Attribute 'title' of:

+msgid "Tor - $20.000" msgstr "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" #. type: Content of:

msgid "2012" @@ -383,26 +385,185 @@ msgstr "2012" msgid "2011" msgstr "2011" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - $10.950" msgstr "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" #. type: Content of:

msgid "2010" msgstr "2010" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - 8.500€" msgstr "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" #. type: Content of: outside any tag (error?) msgid "\"\"\"]]" msgstr "\"\"\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/mozilla.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/mozilla.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!" +#~ "img lib/partners/expressvpn.png link=\"no\"]]" +#~ msgstr "" +#~ "" +#~ "[[!img lib/partners/expressvpn.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/tor.png link=" +#~ "\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/otf.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/otf.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img " +#~ "lib/partners/mediapart.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img " +#~ "lib/partners/mediapart.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/gsoc.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/gsoc.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/tor.png link=\"no" +#~ "\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/hivos.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/hivos.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img " +#~ "lib/partners/ddg.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img " +#~ "lib/partners/ddg.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/fpf.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/fpf.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/localizationlab.png link=\"no" +#~ "\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/localizationlab.png link=\"no" +#~ "\"]]" + +#~ msgid "" +#~ "[[!" +#~ "img lib/partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/tor.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!" +#~ "img lib/partners/accessnow.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!" +#~ "img lib/partners/accessnow.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/fpf.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/fpf.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/openitp.png " +#~ "link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/openitp.png " +#~ "link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/ffis.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/ffis.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/" +#~ "partners/debian.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/debian.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/" +#~ "partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/" +#~ "partners/tor.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/mozilla.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/mozilla.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/partners/ndi.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/partners/ndi.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img " +#~ "lib/partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img " +#~ "lib/partners/tor.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img " +#~ "lib/partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img " +#~ "lib/partners/tor.png link=\"no\"]]" + +#~ msgid "" +#~ "[[!img lib/" +#~ "partners/tor.png link=\"no\"]]" +#~ msgstr "" +#~ "[[!img lib/" +#~ "partners/tor.png link=\"no\"]]" diff --git a/wiki/src/partners.html b/wiki/src/partners.html index 7ba3a64250cdef3b25d7c6b569c60c0016f1e1df..363cee3b216eea3d963e7957be1ef9fccdfbbd45 100644 --- a/wiki/src/partners.html +++ b/wiki/src/partners.html @@ -35,17 +35,17 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$50.000 – $99.000

-

[[!img lib/partners/mozilla.png link="no"]]

+

[[!img lib/partners/mozilla.png link="no"]]

$1.000 – $9.999

-

[[!img lib/partners/expressvpn.png link="no"]]

+

[[!img lib/partners/expressvpn.png link="no"]]

in-kind

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -53,7 +53,7 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

> $100.000

-

[[!img lib/partners/otf.png link="no"]]

+

[[!img lib/partners/otf.png link="no"]]

$10.000 – $49.999

@@ -65,7 +65,7 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

[[!img lib/partners/anonymous.png link="no"]]

[[!img lib/partners/anonymous.png link="no"]]

-

[[!img lib/partners/mediapart.png link="no"]]

+

[[!img lib/partners/mediapart.png link="no"]]

[[!img lib/partners/anonymous.png link="no"]]

[[!img lib/partners/anonymous.png link="no"]]

[[!img lib/partners/anonymous.png link="no"]]

@@ -76,8 +76,8 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

in-kind

-

[[!img lib/partners/gsoc.png link="no"]]

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/gsoc.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -85,24 +85,24 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$50.000 – $99.999

-

[[!img lib/partners/hivos.png link="no"]]

+

[[!img lib/partners/hivos.png link="no"]]

$10.000 – $49.999

-

[[!img lib/partners/ddg.png link="no"]]

+

[[!img lib/partners/ddg.png link="no"]]

Laura Poitras &
Edward Snowden

$1.000 – $9.999

-

[[!img lib/partners/fpf.png link="no"]]

+

[[!img lib/partners/fpf.png link="no"]]

in-kind

-

[[!img lib/partners/localizationlab.png link="no"]]

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/localizationlab.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -110,28 +110,28 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$50.000 – $99.999

-

[[!img lib/partners/hivos.png link="no"]]

-

[[!img lib/partners/accessnow.png link="no"]]

+

[[!img lib/partners/hivos.png link="no"]]

+

[[!img lib/partners/accessnow.png link="no"]]

$10.000 – $49.999

-

[[!img lib/partners/fpf.png link="no"]]

-

[[!img lib/partners/openitp.png link="no"]]

+

[[!img lib/partners/fpf.png link="no"]]

+

[[!img lib/partners/openitp.png link="no"]]

$1.000 – $9.999

-

[[!img lib/partners/ffis.png link="no"]]

-

[[!img lib/partners/debian.png link="no"]]

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/ffis.png link="no"]]

+

[[!img lib/partners/debian.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

[[!img lib/partners/anonymous.png link="no"]]

in-kind

-

[[!img lib/partners/mozilla.png link="no"]]

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/mozilla.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -139,13 +139,13 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$10.000 – $49.999

-

[[!img lib/partners/ndi.png link="no"]]

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/ndi.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

in-kind

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -153,7 +153,7 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

in-kind

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -161,7 +161,7 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$10.000 – $49.999

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

@@ -169,6 +169,6 @@ Are you an individual and want to help Tails? [[We warmly welcome your donations

$1.000 – $9.999

-

[[!img lib/partners/tor.png link="no"]]

+

[[!img lib/partners/tor.png link="no"]]

"""]] diff --git a/wiki/src/partners.it.po b/wiki/src/partners.it.po index ee6477fe59267e134327824199daf0b1aa67dca0..3373dfc8386f5bb13b9b19a7be07ed3e20d6e8f7 100644 --- a/wiki/src/partners.it.po +++ b/wiki/src/partners.it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-01 23:37+0100\n" +"POT-Creation-Date: 2018-01-23 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -104,26 +104,32 @@ msgstr "" msgid "$50.000 – $99.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mozilla Open Source Support - $77.000" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/mozilla.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "ExpressVPN - $1.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/expressvpn.png link=\"no\"]]" +msgid "[[!img lib/partners/expressvpn.png link=\"no\"]]" msgstr "" #. type: Content of:

msgid "in-kind" msgstr "" +#. type: Attribute 'title' of:

+msgid "Tor - Travel to Tor dev meeting & server rent" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/tor.png link=\"no\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -138,10 +144,12 @@ msgstr "" msgid "> $100.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Open Technology Fund - $208.800" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/otf.png link=\"no\"]]" +msgid "[[!img lib/partners/otf.png link=\"no\"]]" msgstr "" #. type: Content of:

@@ -160,10 +168,12 @@ msgstr "" msgid "Anonymous donation - 2.902€" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mediapart - 2.000€" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" +msgid "[[!img lib/partners/mediapart.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -186,16 +196,16 @@ msgstr "" msgid "Anonymous donation - 1.161€" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Google - GSoC Tails Server" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/gsoc.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Travel sponsorship & server rent" msgstr "" #. type: Content of:

@@ -206,16 +216,20 @@ msgstr "" msgid "$50.000 – $99.999" msgstr "" +#. type: Attribute 'title' of:

+msgid "Hivos International - 70.000€" +msgstr "" + #. type: Content of:

-msgid "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" +msgid "[[!img lib/partners/hivos.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "DuckDuckGo - $25.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" +msgid "[[!img lib/partners/ddg.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -230,86 +244,88 @@ msgstr "" msgid "Edward Snowden" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $8.859" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" +msgid "[[!img lib/partners/fpf.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Localization Lab - Translation to Farsi" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/localizationlab.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Server rent" msgstr "" #. type: Content of:

msgid "2014" msgstr "" -#. type: Content of:

-msgid "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Access Now - 50.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +msgid "[[!img lib/partners/accessnow.png link=\"no\"]]" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $33.377" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ffis.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Internet Tools - $25.800" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/debian.png link=\"no\"]]" +msgid "[[!img lib/partners/openitp.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Förderung Freier Information und Software - 5.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ffis.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Debian - $5.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/debian.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $5.000" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Mozilla - Travel to Tails hackfest" msgstr "" #. type: Content of:

msgid "2013" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ndi.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "National Democratic Institute - $21.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $20.000" msgstr "" #. type: Content of:

@@ -320,20 +336,16 @@ msgstr "" msgid "2011" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - $10.950" msgstr "" #. type: Content of:

msgid "2010" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - 8.500€" msgstr "" #. type: Content of: outside any tag (error?) diff --git a/wiki/src/partners.pt.po b/wiki/src/partners.pt.po index ee6477fe59267e134327824199daf0b1aa67dca0..3373dfc8386f5bb13b9b19a7be07ed3e20d6e8f7 100644 --- a/wiki/src/partners.pt.po +++ b/wiki/src/partners.pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2018-01-01 23:37+0100\n" +"POT-Creation-Date: 2018-01-23 11:38+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -104,26 +104,32 @@ msgstr "" msgid "$50.000 – $99.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mozilla Open Source Support - $77.000" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/mozilla.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "ExpressVPN - $1.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/expressvpn.png link=\"no\"]]" +msgid "[[!img lib/partners/expressvpn.png link=\"no\"]]" msgstr "" #. type: Content of:

msgid "in-kind" msgstr "" +#. type: Attribute 'title' of:

+msgid "Tor - Travel to Tor dev meeting & server rent" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/tor.png link=\"no\"]]" msgstr "" #. type: Content of: outside any tag (error?) @@ -138,10 +144,12 @@ msgstr "" msgid "> $100.000" msgstr "" +#. type: Attribute 'title' of:

+msgid "Open Technology Fund - $208.800" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/partners/otf.png link=\"no\"]]" +msgid "[[!img lib/partners/otf.png link=\"no\"]]" msgstr "" #. type: Content of:

@@ -160,10 +168,12 @@ msgstr "" msgid "Anonymous donation - 2.902€" msgstr "" +#. type: Attribute 'title' of:

+msgid "Mediapart - 2.000€" +msgstr "" + #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/mediapart.png link=\"no\"]]" +msgid "[[!img lib/partners/mediapart.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -186,16 +196,16 @@ msgstr "" msgid "Anonymous donation - 1.161€" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/gsoc.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Google - GSoC Tails Server" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/gsoc.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Travel sponsorship & server rent" msgstr "" #. type: Content of:

@@ -206,16 +216,20 @@ msgstr "" msgid "$50.000 – $99.999" msgstr "" +#. type: Attribute 'title' of:

+msgid "Hivos International - 70.000€" +msgstr "" + #. type: Content of:

-msgid "" -"" -"[[!img lib/partners/hivos.png link=\"no\"]]" +msgid "[[!img lib/partners/hivos.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "DuckDuckGo - $25.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/ddg.png link=\"no\"]]" +msgid "[[!img lib/partners/ddg.png link=\"no\"]]" msgstr "" #. type: Attribute 'title' of:

@@ -230,86 +244,88 @@ msgstr "" msgid "Edward Snowden" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $8.859" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/localizationlab.png link=\"no\"]]" -"" +msgid "[[!img lib/partners/fpf.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Localization Lab - Translation to Farsi" msgstr "" #. type: Content of:

-msgid "" -"[[!img " -"lib/partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/localizationlab.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - Server rent" msgstr "" #. type: Content of:

msgid "2014" msgstr "" -#. type: Content of:

-msgid "" -"[[!img " -"lib/partners/accessnow.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Access Now - 50.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/fpf.png link=\"no\"]]" +msgid "[[!img lib/partners/accessnow.png link=\"no\"]]" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/openitp.png link=" -"\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Freedom of the Press Foundation - $33.377" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ffis.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Open Internet Tools - $25.800" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/debian.png link=\"no\"]]" +msgid "[[!img lib/partners/openitp.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Förderung Freier Information und Software - 5.000€" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ffis.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Debian - $5.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/partners/mozilla.png link=\"no\"]]" +msgid "[[!img lib/partners/debian.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $5.000" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Mozilla - Travel to Tails hackfest" msgstr "" #. type: Content of:

msgid "2013" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/partners/ndi.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "National Democratic Institute - $21.000" msgstr "" #. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +msgid "[[!img lib/partners/ndi.png link=\"no\"]]" +msgstr "" + +#. type: Attribute 'title' of:

+msgid "Tor - $20.000" msgstr "" #. type: Content of:

@@ -320,20 +336,16 @@ msgstr "" msgid "2011" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - $10.950" msgstr "" #. type: Content of:

msgid "2010" msgstr "" -#. type: Content of:

-msgid "" -"[[!img lib/" -"partners/tor.png link=\"no\"]]" +#. type: Attribute 'title' of:

+msgid "Tor - 8.500€" msgstr "" #. type: Content of: outside any tag (error?) diff --git a/wiki/src/templates/page.tmpl b/wiki/src/templates/page.tmpl index 8344ff709d222233a668e42454ea85bec5af2c44..8e1b1b14ed683bf34b5fa80a681b2e2b6c6e6fb3 100644 --- a/wiki/src/templates/page.tmpl +++ b/wiki/src/templates/page.tmpl @@ -66,46 +66,6 @@

- -