tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
August 2019
- 19 participants
- 2737 discussions

24 Aug '19
commit dff07d6672486e4320a817e735a77f03b5e9023f
Author: David Fifield <david(a)bamsoftware.com>
Date: Fri Aug 23 22:41:27 2019 -0600
Use less side padding on small screens.
---
proxy/static/index.css | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/proxy/static/index.css b/proxy/static/index.css
index 3816776..6c75800 100644
--- a/proxy/static/index.css
+++ b/proxy/static/index.css
@@ -31,6 +31,12 @@ header a {
background-color: #FFFFFF;
}
+@media only screen and (max-width: 600px) {
+ #content {
+ padding: 2.6rem 1.3rem;
+ }
+}
+
section {
margin: 1.3rem 0;
}
1
0
commit 49f4a710f8a1a708d9f9945459a41d470a9abec0
Author: David Fifield <david(a)bamsoftware.com>
Date: Fri Aug 23 21:47:05 2019 -0600
Use more semantic HTML.
---
proxy/static/index.css | 28 +++++++++---------
proxy/static/index.html | 75 +++++++++++++++++++++++++------------------------
2 files changed, 53 insertions(+), 50 deletions(-)
diff --git a/proxy/static/index.css b/proxy/static/index.css
index 9502a37..3816776 100644
--- a/proxy/static/index.css
+++ b/proxy/static/index.css
@@ -13,13 +13,13 @@ body {
color: #212529;
}
-#header {
+header {
margin: 0;
line-height: 0;
padding: 1.3rem 2.6rem;
}
-#header a {
+header a {
border-style: none;
display: inline-block;
line-height: 0;
@@ -31,6 +31,10 @@ body {
background-color: #FFFFFF;
}
+section {
+ margin: 1.3rem 0;
+}
+
h1 {
margin: 0;
font-size: 2.6rem;
@@ -38,25 +42,21 @@ h1 {
text-align: center;
}
-h3 {
+h2 {
margin: 0;
font-size: 2rem;
color: #7D4698;
}
-.clear {
- margin: 2.6rem 0;
- overflow: auto;
+.sidebyside {
+ display: flex;
+ flex-flow: row wrap;
+ align-items: flex-start;
}
-@media only screen and (min-width: 600px) {
- .browser, .extension {
- float: left;
- width: 50%;
- }
- .padding {
- padding: 0 1.3rem;
- }
+.sidebyside section {
+ flex: 1 1 15rem;
+ padding: 0 1.3rem;
}
.addon {
diff --git a/proxy/static/index.html b/proxy/static/index.html
index 9afb56b..8609789 100644
--- a/proxy/static/index.html
+++ b/proxy/static/index.html
@@ -1,5 +1,5 @@
<!doctype html>
-<html>
+<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
@@ -7,12 +7,12 @@
<link rel="stylesheet" href="index.css" />
</head>
<body>
- <div id="header">
+ <header id="header">
<a href="https://www.torproject.org/">
<img src="tor-logo(a)2x.png" alt="Tor" height="50" />
</a>
- </div>
- <div id="content">
+ </header>
+ <section id="content">
<h1>SNOWFLAKE</h1>
<p class="diagram"><img src="https://trac.torproject.org/projects/tor/raw-attachment/wiki/doc/Snowflake/…" alt="Diagram" /></p>
@@ -23,19 +23,19 @@
information about how Snowflake works see our
<a href="https://trac.torproject.org/projects/tor/wiki/doc/Snowflake/">documentation wiki</a>.</p>
- <div class="clear">
+ <div class="sidebyside">
- <div id="browser" class="browser"><div class="padding">
- <h3>Browser</h3>
+ <section id="browser" class="browser">
+ <h2>Browser</h2>
<p>If your internet access is censored, you should download
<a href="https://www.torproject.org/download/">Tor Browser</a>.</p>
<p class="screenshot"><img src="screenshot.png" alt="Tor Browser screenshot" /></p>
- </div></div>
+ </section>
- <div id="extension" class="extension"><div class="padding">
- <h3>Extension</h3>
+ <section id="extension" class="extension">
+ <h2>Extension</h2>
<p>If your internet access is <strong>not</strong> censored, you should
consider installing the Snowflake extension to help users in censored
@@ -52,42 +52,45 @@
<img src="chrome150.jpg" alt="Install in Chrome" height="100" /><br />
<span>Install in Chrome</span>
</a>
- <span class="clear"></span>
</p>
- </div></div>
+ </section>
</div>
- <h3 id="bugs">REPORTING BUGS</h3>
-
- <p>If you encounter problems with Snowflake as a client or a proxy,
- please consider filing a bug. To do so, you will have to,</p>
-
- <ol>
- <li>
- Either <a href="https://trac.torproject.org/projects/tor/register">create an
- account</a> or <a href="https://trac.torproject.org/projects/tor/login">log in</a>
- using the shared <b>cypherpunks</b> account with password <b>writecode</b>.</li>
- <li><a href="https://trac.torproject.org/projects/tor/newticket?component=Circumvention%…">File a ticket</a>
- using our bug tracker.</li>
- </ol>
+ <section id="bugs">
+ <h2>REPORTING BUGS</h2>
- <p>Please try to be as descriptive as possible with your ticket and if
- possible include log messages that will help us reproduce the bug.
- Consider adding keywords <em>snowflake-webextension</em> or <em>snowflake-client</em>
- to let us know how which part of the Snowflake system is experiencing
- problems.</p>
+ <p>If you encounter problems with Snowflake as a client or a proxy,
+ please consider filing a bug. To do so, you will have to,</p>
- <h3 id="embed">EMBED</h3>
+ <ol>
+ <li>
+ Either <a href="https://trac.torproject.org/projects/tor/register">create an
+ account</a> or <a href="https://trac.torproject.org/projects/tor/login">log in</a>
+ using the shared <b>cypherpunks</b> account with password <b>writecode</b>.</li>
+ <li><a href="https://trac.torproject.org/projects/tor/newticket?component=Circumvention%…">File a ticket</a>
+ using our bug tracker.</li>
+ </ol>
- <p>It is now possible to embed the Snowflake badge on any website:</p>
+ <p>Please try to be as descriptive as possible with your ticket and if
+ possible include log messages that will help us reproduce the bug.
+ Consider adding keywords <em>snowflake-webextension</em> or <em>snowflake-client</em>
+ to let us know how which part of the Snowflake system is experiencing
+ problems.</p>
+ </section>
- <textarea readonly><iframe src="https://snowflake.torproject.org/embed.html" width="320" height="240" frameborder="0" scrolling="no"></iframe></textarea>
+ <section id="embed">
+ <h2>EMBED</h2>
- <p>Which looks like this:</p>
+ <p>It is now possible to embed the Snowflake badge on any website:</p>
- <iframe src="embed.html" width="320" height="240" frameborder="0" scrolling="no"></iframe>
+ <textarea readonly><iframe src="https://snowflake.torproject.org/embed.html" width="320" height="240" frameborder="0" scrolling="no"></iframe></textarea>
- </div>
+ <p>Which looks like this:</p>
+
+ <iframe src="embed.html" width="320" height="240" frameborder="0" scrolling="no"></iframe>
+ </section>
+
+ </section>
</body>
</html>
1
0

[snowflake/master] Add `--chmod ug=rw, D+x --perms` to rsync commands.
by dcf@torproject.org 24 Aug '19
by dcf@torproject.org 24 Aug '19
24 Aug '19
commit 6be7bedd0619c31e352823804f141e393dc21901
Author: David Fifield <david(a)bamsoftware.com>
Date: Fri Aug 23 22:47:58 2019 -0600
Add `--chmod ug=rw,D+x --perms` to rsync commands.
This is an attempt to solve mixed-ownership permission issues.
https://bugs.torproject.org/31496
---
proxy/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/proxy/README.md b/proxy/README.md
index dd7ffb6..538366f 100644
--- a/proxy/README.md
+++ b/proxy/README.md
@@ -50,13 +50,13 @@ npm run build
Do a "dry run" rsync with `-n` to check that only expected files are being changed. If you don't understand why a file would be updated, you can add the `-i` option to see the reason.
```
-rsync -n --delete -crv build/ staticiforme:/srv/snowflake.torproject.org/htdocs/
+rsync -n --chmod ug=rw,D+x --perms --delete -crv build/ staticiforme:/srv/snowflake.torproject.org/htdocs/
```
If it looks good, then repeat the rsync without `-n`.
```
-rsync --delete -crv build/ staticiforme:/srv/snowflake.torproject.org/htdocs/
+rsync --chmod ug=rw,D+x --perms --delete -crv build/ staticiforme:/srv/snowflake.torproject.org/htdocs/
```
Then run the command to copy the new files to the live web servers:
1
0

[translation/tails-misc_release] Update translations for tails-misc_release
by translation@torproject.org 24 Aug '19
by translation@torproject.org 24 Aug '19
24 Aug '19
commit f4b775b4524cee12595c3b2af1615fc34aba6b00
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Aug 24 02:21:15 2019 +0000
Update translations for tails-misc_release
---
ach.po | 330 ++++++++++++++++++++++++++++++--
af.po | 332 ++++++++++++++++++++++++++++++--
ar.po | 332 ++++++++++++++++++++++++++++++--
ast.po | 332 ++++++++++++++++++++++++++++++--
az.po | 332 ++++++++++++++++++++++++++++++--
be.po | 332 ++++++++++++++++++++++++++++++--
bg.po | 332 ++++++++++++++++++++++++++++++--
bn.po | 332 ++++++++++++++++++++++++++++++--
br.po | 332 ++++++++++++++++++++++++++++++--
bs.po | 332 ++++++++++++++++++++++++++++++--
ca.po | 332 ++++++++++++++++++++++++++++++--
cs.po | 332 ++++++++++++++++++++++++++++++--
cy.po | 332 ++++++++++++++++++++++++++++++--
da.po | 332 ++++++++++++++++++++++++++++++--
de.po | 332 ++++++++++++++++++++++++++++++--
el.po | 332 ++++++++++++++++++++++++++++++--
en_GB.po | 332 ++++++++++++++++++++++++++++++--
eo.po | 332 ++++++++++++++++++++++++++++++--
es.po | 332 ++++++++++++++++++++++++++++++--
es_AR.po | 332 ++++++++++++++++++++++++++++++--
es_MX.po | 332 ++++++++++++++++++++++++++++++--
et.po | 332 ++++++++++++++++++++++++++++++--
eu.po | 330 ++++++++++++++++++++++++++++++--
fa.po | 332 ++++++++++++++++++++++++++++++--
fi.po | 332 ++++++++++++++++++++++++++++++--
fr.po | 332 ++++++++++++++++++++++++++++++--
fy.po | 332 ++++++++++++++++++++++++++++++--
ga.po | 332 ++++++++++++++++++++++++++++++--
gd.po | 330 ++++++++++++++++++++++++++++++--
gl.po | 332 ++++++++++++++++++++++++++++++--
gu.po | 332 ++++++++++++++++++++++++++++++--
he.po | 332 ++++++++++++++++++++++++++++++--
hi.po | 332 ++++++++++++++++++++++++++++++--
hr.po | 332 ++++++++++++++++++++++++++++++--
hu.po | 332 ++++++++++++++++++++++++++++++--
hy.po | 332 ++++++++++++++++++++++++++++++--
id.po | 332 ++++++++++++++++++++++++++++++--
is.po | 332 ++++++++++++++++++++++++++++++--
it.po | 332 ++++++++++++++++++++++++++++++--
ja.po | 332 ++++++++++++++++++++++++++++++--
ka.po | 332 ++++++++++++++++++++++++++++++--
kab.po | 332 ++++++++++++++++++++++++++++++--
kk.po | 332 ++++++++++++++++++++++++++++++--
km.po | 332 ++++++++++++++++++++++++++++++--
kn.po | 332 ++++++++++++++++++++++++++++++--
ko.po | 332 ++++++++++++++++++++++++++++++--
lt.po | 332 ++++++++++++++++++++++++++++++--
lv.po | 332 ++++++++++++++++++++++++++++++--
mk.po | 330 ++++++++++++++++++++++++++++++--
ml.po | 332 ++++++++++++++++++++++++++++++--
mr.po | 332 ++++++++++++++++++++++++++++++--
ms_MY.po | 330 ++++++++++++++++++++++++++++++--
my.po | 332 ++++++++++++++++++++++++++++++--
nb.po | 332 ++++++++++++++++++++++++++++++--
ne.po | 332 ++++++++++++++++++++++++++++++--
nl.po | 332 ++++++++++++++++++++++++++++++--
nl_BE.po | 332 ++++++++++++++++++++++++++++++--
nn.po | 332 ++++++++++++++++++++++++++++++--
oc.po | 332 ++++++++++++++++++++++++++++++--
or.po | 332 ++++++++++++++++++++++++++++++--
pa.po | 332 ++++++++++++++++++++++++++++++--
pl.po | 332 ++++++++++++++++++++++++++++++--
pt_BR.po | 332 ++++++++++++++++++++++++++++++--
pt_PT.po | 332 ++++++++++++++++++++++++++++++--
ro.po | 332 ++++++++++++++++++++++++++++++--
ru.po | 332 ++++++++++++++++++++++++++++++--
si_LK.po | 332 ++++++++++++++++++++++++++++++--
sk.po | 330 ++++++++++++++++++++++++++++++--
sl.po | 332 ++++++++++++++++++++++++++++++--
son.po | 332 ++++++++++++++++++++++++++++++--
sq.po | 332 ++++++++++++++++++++++++++++++--
sr.po | 330 ++++++++++++++++++++++++++++++--
sv.po | 332 ++++++++++++++++++++++++++++++--
sw.po | 332 ++++++++++++++++++++++++++++++--
ta.po | 332 ++++++++++++++++++++++++++++++--
tails.pot | 636 ++++++++++++++++++++++++++++++++++++++++++++++----------------
te.po | 332 ++++++++++++++++++++++++++++++--
th.po | 332 ++++++++++++++++++++++++++++++--
tr.po | 332 ++++++++++++++++++++++++++++++--
uk.po | 332 ++++++++++++++++++++++++++++++--
ur.po | 332 ++++++++++++++++++++++++++++++--
uz.po | 332 ++++++++++++++++++++++++++++++--
vi.po | 332 ++++++++++++++++++++++++++++++--
zh_CN.po | 332 ++++++++++++++++++++++++++++++--
zh_HK.po | 332 ++++++++++++++++++++++++++++++--
zh_TW.po | 332 ++++++++++++++++++++++++++++++--
86 files changed, 27579 insertions(+), 1263 deletions(-)
diff --git a/ach.po b/ach.po
index ae380c925..1ca50e18b 100644
--- a/ach.po
+++ b/ach.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/af.po b/af.po
index 699d3371d..3131fa0fb 100644
--- a/af.po
+++ b/af.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ar.po b/ar.po
index 1a3e6b397..df546b950 100644
--- a/ar.po
+++ b/ar.po
@@ -31,9 +31,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: محيي الدين <tx99h4(a)hotmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Martus Translations <translations(a)martus.org>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,6 +120,322 @@ msgstr "_Launch"
msgid "_Exit"
msgstr "_Exit"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -294,12 +610,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -424,10 +734,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "هذه النسخة من تيلز تحتوي مشاكل أمنية:"
diff --git a/ast.po b/ast.po
index 900f0ac4b..b1d74315d 100644
--- a/ast.po
+++ b/ast.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/az.po b/az.po
index b5d4e3733..79be04451 100644
--- a/az.po
+++ b/az.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/be.po b/be.po
index f7a1e1125..ef0f91ab0 100644
--- a/be.po
+++ b/be.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bg.po b/bg.po
index a097db556..95ed9aeae 100644
--- a/bg.po
+++ b/bg.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -108,6 +108,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -282,12 +598,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -412,10 +722,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bn.po b/bn.po
index 939fdec03..883707614 100644
--- a/bn.po
+++ b/bn.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/br.po b/br.po
index dda44e39c..9dbe1a117 100644
--- a/br.po
+++ b/br.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bs.po b/bs.po
index 865eb1f14..7b6b8b0b2 100644
--- a/bs.po
+++ b/bs.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Mersad Avdic <mersad.developer(a)gmail.com>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ca.po b/ca.po
index 63114823b..d40c5e05a 100644
--- a/ca.po
+++ b/ca.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 20:59+0000\n"
-"Last-Translator: Benny Beat <bennybeat(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr "_Executa"
msgid "_Exit"
msgstr "_Surt"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancel·la"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -417,10 +727,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Aquesta versió de Tails té problemes de seguretat coneguts:"
diff --git a/cs.po b/cs.po
index 349b3a4d0..b3d828c06 100644
--- a/cs.po
+++ b/cs.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: multiflexi <multi.flexi(a)seznam.cz>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr "_Spustit"
msgid "_Exit"
msgstr "_Odejít"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Zrušit"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tato verze Tails obsahuje následující bezpečnostní problémy:"
diff --git a/cy.po b/cy.po
index bea8f36b3..08103ded6 100644
--- a/cy.po
+++ b/cy.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/da.po b/da.po
index acc97a2f7..85a306c4a 100644
--- a/da.po
+++ b/da.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-18 17:41+0000\n"
-"Last-Translator: scootergrisen\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/de.po b/de.po
index e87121414..5b84491d0 100644
--- a/de.po
+++ b/de.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 13:45+0000\n"
-"Last-Translator: try once\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: German (http://www.transifex.com/otf/torproject/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -125,6 +125,322 @@ msgstr "_Start"
msgid "_Exit"
msgstr "_Beenden"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -299,12 +615,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Abbrechen"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -429,10 +739,6 @@ msgstr ""
msgid "Password"
msgstr "Passwort"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Bestätigen"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Diese Tails-Version weist Sicherheitslücken auf:"
diff --git a/el.po b/el.po
index e351985ad..305dee57b 100644
--- a/el.po
+++ b/el.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Elektra M. <safiragon(a)yahoo.gr>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -117,6 +117,322 @@ msgstr "_Εκκίνηση"
msgid "_Exit"
msgstr "_Έξοδος"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -291,12 +607,6 @@ msgstr "Αυτό θα σταματήσει την εγκατάσταση των
msgid "Remove"
msgstr "Απομάκρυνση"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -421,10 +731,6 @@ msgstr ""
msgid "Password"
msgstr "Κωδικός ασφαλείας"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Επιβεβαίωση"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/en_GB.po b/en_GB.po
index ed9202331..3ca8dccca 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Andi Chandler <andi(a)gowling.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/eo.po b/eo.po
index 7df4986c2..bab2a4c69 100644
--- a/eo.po
+++ b/eo.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/es.po b/es.po
index 9339a5c84..3eacfa573 100644
--- a/es.po
+++ b/es.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-17 11:03+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -106,6 +106,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Salir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -280,12 +596,6 @@ msgstr "Esto parará la instalación de {packages} de forma automática."
msgid "Remove"
msgstr "Eliminar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando tu software adicional desde el almacenamiento persistente..."
@@ -410,10 +720,6 @@ msgstr "Establece una contraseña para desbloquear la pantalla"
msgid "Password"
msgstr "Contraseña"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versión de Tails tiene problemas de seguridad conocidos:"
diff --git a/es_AR.po b/es_AR.po
index ae7a185e3..0bd9cfbe9 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Zuhualime Akoochimoya\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -102,6 +102,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Salir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -276,12 +592,6 @@ msgstr "Esto detendrá la instalación de {packages} automáticamente."
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando tus programas adicionales desde almacenamiento persistente..."
@@ -406,10 +716,6 @@ msgstr "Definí una contraseña para desbloquear la pantalla."
msgid "Password"
msgstr "Contraseña"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versión de Tails tiene problemas de seguridad conocidos:"
diff --git a/es_MX.po b/es_MX.po
index 6b23925bc..5a5b800e7 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/et.po b/et.po
index 33f0424cb..82c2c237f 100644
--- a/et.po
+++ b/et.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/eu.po b/eu.po
index e9024c8ef..44bd398f5 100644
--- a/eu.po
+++ b/eu.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Radiation Gamma\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -103,6 +103,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/fa.po b/fa.po
index 0ef5bf687..2000c5b29 100644
--- a/fa.po
+++ b/fa.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Mehrad Rousta <mehrad77(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +122,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -296,12 +612,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -426,10 +736,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/fi.po b/fi.po
index 85d4d52bd..d5cd5c43d 100644
--- a/fi.po
+++ b/fi.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Mikko Ilmonen <mikko(a)5x.fi>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Mikko Päivärinta <paivarinta.mikko.o(a)gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -106,6 +106,322 @@ msgstr "_Käynnistä"
msgid "_Exit"
msgstr "_Lopeta"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -280,12 +596,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Peruuta"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -410,10 +720,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tässä Tails-versiossa on tunnettuja turvallisuusriskejä:"
diff --git a/fr.po b/fr.po
index 4c604bf61..b76571e36 100644
--- a/fr.po
+++ b/fr.po
@@ -39,9 +39,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 13:10+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -128,6 +128,322 @@ msgstr "_Lancer"
msgid "_Exit"
msgstr "_Quitter"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Annuler"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmer"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -302,12 +618,6 @@ msgstr "Cela devrait stopper l’installation automatique de {packages}."
msgid "Remove"
msgstr "Enlever"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Annuler"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installation de vos logiciels additionnels depuis le stockage persistant..."
@@ -432,10 +742,6 @@ msgstr "Définir un mot de passe pour déverrouiller l’écran"
msgid "Password"
msgstr "Mot de passe"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmer"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Cette version de Tails a des problèmes de sécurité connus :"
diff --git a/fy.po b/fy.po
index 34c99ba42..e336ee75a 100644
--- a/fy.po
+++ b/fy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ga.po b/ga.po
index 04bbd601b..98b49bbdf 100644
--- a/ga.po
+++ b/ga.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Kevin Scannell <kscanne(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr "_Tosaigh"
msgid "_Exit"
msgstr "_Scoir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cealaigh"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Deimhnigh"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr "Ní shuiteálfar {packages} go huathoibríoch a thuilleadh."
msgid "Remove"
msgstr "Bain"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cealaigh"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Bogearraí breise á suiteáil ón stóras seasmhach..."
@@ -402,10 +712,6 @@ msgstr "Socraigh focal faire chun an scáileán a dhíghlasáil."
msgid "Password"
msgstr "Focal faire"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Deimhnigh"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tá fadhbanna slándála sa leagan seo de Tails:"
diff --git a/gd.po b/gd.po
index b51c0fdb8..e13788de2 100644
--- a/gd.po
+++ b/gd.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/gl.po b/gl.po
index 466e37000..d48170921 100644
--- a/gl.po
+++ b/gl.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/gu.po b/gu.po
index 39c84d42e..37817f2bd 100644
--- a/gu.po
+++ b/gu.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Michael Hathi <numerativetech(a)gmail.com>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/he.po b/he.po
index 9d5998a3f..5f1018b2f 100644
--- a/he.po
+++ b/he.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 19:56+0000\n"
-"Last-Translator: ION\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,6 +103,322 @@ msgstr "_הפעל"
msgid "_Exit"
msgstr "_צא"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "בטל"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "אשר"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "בטל"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr "קבע סיסמה לביטול נעילת המסך."
msgid "Password"
msgstr "סיסמה"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "אשר"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "לגרסה זו של Tails יש סוגיות אבטחה ידועות:"
diff --git a/hi.po b/hi.po
index 510417975..c31e1a5e3 100644
--- a/hi.po
+++ b/hi.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hindi (http://www.transifex.com/otf/torproject/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/hr.po b/hr.po
index 9d4cbe495..3a8dcda1b 100644
--- a/hr.po
+++ b/hr.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Ljubo Šimić <aske777(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/hu.po b/hu.po
index e20bdaacd..633c0fccf 100644
--- a/hu.po
+++ b/hu.po
@@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -105,6 +105,322 @@ msgstr "_Indítás"
msgid "_Exit"
msgstr "_Kilépés"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Mégse"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Megerősít"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -279,12 +595,6 @@ msgstr "Ez leállítja a(z) {packages} csomagok automatikus telepítését."
msgid "Remove"
msgstr "Eltávolít"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Mégse"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "A további szoftvere telepítése a perzisztens tárolóból..."
@@ -409,10 +719,6 @@ msgstr "Adjon meg jelszót a képernyő feloldáshoz."
msgid "Password"
msgstr "Jelszó"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Megerősít"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "A Tails ezen verziója ismert biztonsági problémákkal rendelkezik:"
diff --git a/hy.po b/hy.po
index e497c6332..83c3c8290 100644
--- a/hy.po
+++ b/hy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/id.po b/id.po
index e83ad8773..d71081cf0 100644
--- a/id.po
+++ b/id.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: ical\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr "_Luncurkan"
msgid "_Exit"
msgstr "_Keluar"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/is.po b/is.po
index ad6eb16ac..823907797 100644
--- a/is.po
+++ b/is.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/it.po b/it.po
index 39cca5ac9..764f57127 100644
--- a/it.po
+++ b/it.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-21 17:53+0000\n"
-"Last-Translator: Davide Sant <spuuu(a)outlook.it>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Italian (http://www.transifex.com/otf/torproject/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -121,6 +121,322 @@ msgstr "_Avvia"
msgid "_Exit"
msgstr "_Esci"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Annulla"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Conferma"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -295,12 +611,6 @@ msgstr "Ciò eviterà l'installazione automatica di {packages}."
msgid "Remove"
msgstr "Rimuovi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Annulla"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installazione del software aggiuntivo dall'archivio persistente..."
@@ -425,10 +735,6 @@ msgstr "Imposta una password per sbloccare lo schermo."
msgid "Password"
msgstr "Password"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Conferma"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Questa versione di Tails ha problemi di sicurezza noti:"
diff --git a/ja.po b/ja.po
index cf3627a7b..ab1b762f7 100644
--- a/ja.po
+++ b/ja.po
@@ -26,9 +26,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Naofumi <naofum(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Japanese (http://www.transifex.com/otf/torproject/language/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -115,6 +115,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -289,12 +605,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -419,10 +729,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ka.po b/ka.po
index d61112a4c..920136210 100644
--- a/ka.po
+++ b/ka.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-16 01:20+0000\n"
-"Last-Translator: Georgianization\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/kab.po b/kab.po
index a0bf38d4f..705ac841c 100644
--- a/kab.po
+++ b/kab.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2013-07-25 09:07+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/kk.po b/kk.po
index d081bd823..54ef54a31 100644
--- a/kk.po
+++ b/kk.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Dinmuhamed Esengeldi <esengeldi0202(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/km.po b/km.po
index 76bd8e0d2..1ab2b6727 100644
--- a/km.po
+++ b/km.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Moses Ngeth\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Ty Sok <sokty2(a)gmail.com>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr "ចាប់ផ្ដើម"
msgid "_Exit"
msgstr "ចេញ"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "បោះបង់"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "បោះបង់"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "កំណែរបស់ Tails នេះគឺស្គាល់បញ្ហាសុវត្ថិភាព៖"
diff --git a/kn.po b/kn.po
index 14ea193bd..d8a8522bf 100644
--- a/kn.po
+++ b/kn.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Kannada (http://www.transifex.com/otf/torproject/language/kn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ko.po b/ko.po
index 380225e5c..3bf183e21 100644
--- a/ko.po
+++ b/ko.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Harry Cha <diamondphonix(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -104,6 +104,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -278,12 +594,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -408,10 +718,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/lt.po b/lt.po
index 6d9dc0d16..8609a1e61 100644
--- a/lt.po
+++ b/lt.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 18:23+0000\n"
-"Last-Translator: Moo\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Atsisakyti"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Patvirtinkite"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr "Šalinti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Atsisakyti"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr "Nusistatykite slaptažodį ekrano atrakinimui."
msgid "Password"
msgstr "Slaptažodis"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Patvirtinkite"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Šioje Tails versijoje yra žinomos saugumo problemos:"
diff --git a/lv.po b/lv.po
index a3375e68d..a51068bf2 100644
--- a/lv.po
+++ b/lv.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/mk.po b/mk.po
index a3f968fb3..8a9f0140e 100644
--- a/mk.po
+++ b/mk.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 18:33+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Matej Plavevski <matej.plavevski+github(a)gmail.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ml.po b/ml.po
index b6a1f8e61..fd6663e78 100644
--- a/ml.po
+++ b/ml.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/mr.po b/mr.po
index 6a421c530..db14bf301 100644
--- a/mr.po
+++ b/mr.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Marathi (http://www.transifex.com/otf/torproject/language/mr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ms_MY.po b/ms_MY.po
index d04c357a9..290089d47 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: abuyop <abuyop(a)gmail.com>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/my.po b/my.po
index 5ecb57c2e..39c8dde56 100644
--- a/my.po
+++ b/my.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nb.po b/nb.po
index 29b05ed55..e1a74249e 100644
--- a/nb.po
+++ b/nb.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Jørgen Moen Isaksen <klokkefriken2(a)protonmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ne.po b/ne.po
index db49340c9..86cf3371a 100644
--- a/ne.po
+++ b/ne.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nl.po b/nl.po
index 71b219a10..be90f8c54 100644
--- a/nl.po
+++ b/nl.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +122,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -296,12 +612,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -426,10 +736,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nl_BE.po b/nl_BE.po
index 516f8cdfa..169b6c50e 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nn.po b/nn.po
index 4bfee1fbd..d2c496bc6 100644
--- a/nn.po
+++ b/nn.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/oc.po b/oc.po
index b9b84dfe9..35affdaef 100644
--- a/oc.po
+++ b/oc.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Cédric Valmary <cvalmary(a)yahoo.fr>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/or.po b/or.po
index dd6ae212e..b99f058ce 100644
--- a/or.po
+++ b/or.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pa.po b/pa.po
index 79fd6c7e3..5f5ecc3f8 100644
--- a/pa.po
+++ b/pa.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pl.po b/pl.po
index 35f9f8426..2451b1db1 100644
--- a/pl.po
+++ b/pl.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Marcin Januchta <marcin.januchta(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -417,10 +727,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pt_BR.po b/pt_BR.po
index 1a9cc0b79..5861ff345 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 17:41+0000\n"
-"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -121,6 +121,322 @@ msgstr "_Lançar"
msgid "_Exit"
msgstr "_Saída"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -295,12 +611,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -425,10 +735,6 @@ msgstr ""
msgid "Password"
msgstr "Senha"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versão do Tails tem problemas de segurança conhecidos:"
diff --git a/pt_PT.po b/pt_PT.po
index e36877c0d..38048c30f 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-21 13:20+0000\n"
-"Last-Translator: Hugo9191 <hugoncosta(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Rui <xymarior(a)yandex.com>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Sair"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versão do Tails tem alguns problemas de segurança conhecidos:"
diff --git a/ro.po b/ro.po
index 768ba2f69..b94f7d819 100644
--- a/ro.po
+++ b/ro.po
@@ -25,9 +25,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: A C <ana(a)shiftout.net>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -114,6 +114,322 @@ msgstr "_Lansare"
msgid "_Exit"
msgstr "_Iesire"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Anulare"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmă"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -288,12 +604,6 @@ msgstr "Acest lucru va opri instalarea {packages} în mod automat."
msgid "Remove"
msgstr "Eliminare"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Anulare"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Se instalează aplicațiile dumneavoastră adiționale din stocarea persistentă..."
@@ -418,10 +728,6 @@ msgstr "Setați o parolă pentru a debloca ecranul."
msgid "Password"
msgstr "Parola"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmă"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Această versiune Tails are probleme de securitate cunoscute:"
diff --git a/ru.po b/ru.po
index a86f2e550..b1bc25925 100644
--- a/ru.po
+++ b/ru.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Imran Aliyev <mr.imranaliyev(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -126,6 +126,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -300,12 +616,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -430,10 +740,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/si_LK.po b/si_LK.po
index cabf5d2c8..f0ae3ed8d 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sk.po b/sk.po
index b3f3e349e..526d06bdf 100644
--- a/sk.po
+++ b/sk.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Marek Čápek <capek.marek(a)gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -103,6 +103,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sl.po b/sl.po
index 859acd4d5..12a19e07d 100644
--- a/sl.po
+++ b/sl.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/son.po b/son.po
index 6f52f693d..6ba0fddd3 100644
--- a/son.po
+++ b/son.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sq.po b/sq.po
index 3b938f1b2..5d819e104 100644
--- a/sq.po
+++ b/sq.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Bujar Tafili\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Vili Suli\n"
"Language-Team: Albanian (http://www.transifex.com/otf/torproject/language/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sr.po b/sr.po
index 5cc48f378..ca8287071 100644
--- a/sr.po
+++ b/sr.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Aleksa Ristić\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sv.po b/sv.po
index 03c1d79ff..2e98573ac 100644
--- a/sv.po
+++ b/sv.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Jonatan Nyberg\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr "_Starta"
msgid "_Exit"
msgstr "_Avsluta"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Bekräfta"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr "Detta kommer att sluta installera {packages} automatiskt."
msgid "Remove"
msgstr "Ta bort"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Avbryt"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installera dina extra program från bestående lagring..."
@@ -417,10 +727,6 @@ msgstr "Ställ in ett lösenord för att låsa upp skärmen."
msgid "Password"
msgstr "Lösenord"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Bekräfta"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Det finns kända säkerhetsproblem i den här Tails versionen:"
diff --git a/sw.po b/sw.po
index 80a6d838a..bf4e96ba7 100644
--- a/sw.po
+++ b/sw.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>\n"
"Language-Team: Swahili (http://www.transifex.com/otf/torproject/language/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ta.po b/ta.po
index 9cc17a18a..721bbcabe 100644
--- a/ta.po
+++ b/ta.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/tails.pot b/tails.pot
index 0bc3178b1..66f476226 100644
--- a/tails.pot
+++ b/tails.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -19,11 +19,11 @@ msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
msgid "Tor is ready"
-msgstr "Tor is ready"
+msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
msgid "You can now access the Internet."
-msgstr "You can now access the Internet."
+msgstr ""
#: config/chroot_local-includes/etc/whisperback/config.py:69
#, python-format
@@ -40,24 +40,24 @@ msgid ""
"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
"confirm that you are using Tails.\n"
"</p>\n"
-msgstr "<h1>Help us fix your bug!</h1>\n<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n<p><strong>Do not include more personal information than\nneeded!</strong></p>\n<h2>About giving us an email address</h2>\n<p>\nGiving us an email address allows us to contact you to clarify the problem. This\nis needed for the vast majority of the reports we receive as most reports\nwithout any contact information are useless. On the other hand it also provides\nan opportunity for eavesdroppers, like your email or Internet provider, to\nconfirm that you are using Tails.\n</p>\n"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
msgid "Additional Software"
-msgstr "Additional Software"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
msgid ""
"You can install additional software automatically from your persistent "
"storage when starting Tails."
-msgstr "You can install additional software automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
msgid ""
"The following software is installed automatically from your persistent "
"storage when starting Tails."
-msgstr "The following software is installed automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
@@ -65,36 +65,352 @@ msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To add more, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
msgid "_Create persistent storage"
-msgstr "_Create persistent storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:57
msgid "Persistence is disabled for Electrum"
-msgstr "Persistence is disabled for Electrum"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:59
msgid ""
"When you reboot Tails, all of Electrum's data will be lost, including your "
"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
"persistence feature is activated."
-msgstr "When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet. It is strongly recommended to only run Electrum when its persistence feature is activated."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:60
msgid "Do you want to start Electrum anyway?"
-msgstr "Do you want to start Electrum anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:63
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
msgid "_Launch"
-msgstr "_Launch"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:64
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
msgid "_Exit"
-msgstr "_Exit"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
@@ -106,60 +422,60 @@ msgid ""
"<i>${filename}</i>\n"
"\n"
"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n\nYou have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n\n<i>${filename}</i>\n\nRenaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:23
msgid "Rename"
-msgstr "Rename"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:24
msgid "Keep current name"
-msgstr "Keep current name"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
-msgstr "su is disabled. Please use sudo instead."
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
-msgstr "Lock screen"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
msgid "Suspend"
-msgstr "Suspend"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
msgid "Restart"
-msgstr "Restart"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
msgid "Power Off"
-msgstr "Power Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:22
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
msgid "Tails"
-msgstr "Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:25
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
msgid "About Tails"
-msgstr "About Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:35
msgid "The Amnesic Incognito Live System"
-msgstr "The Amnesic Incognito Live System"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:36
#, python-format
msgid ""
"Build information:\n"
"%s"
-msgstr "Build information:\n%s"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:54
msgid "not available"
-msgstr "not available"
+msgstr ""
#. Translators: Don't translate {details}, it's a placeholder and will
#. be replaced.
@@ -168,32 +484,32 @@ msgstr "not available"
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
-msgstr "{details} Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
-msgstr "Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Show Log"
-msgstr "Show Log"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Configure"
-msgstr "Configure"
+msgstr ""
#. Translators: Don't translate {beginning} or {last}, they are
#. placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
#, python-brace-format
msgid "{beginning} and {last}"
-msgstr "{beginning} and {last}"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
msgid ", "
-msgstr ", "
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will
#. be replaced.
@@ -201,115 +517,109 @@ msgstr ", "
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
#, python-brace-format
msgid "Add {packages} to your additional software?"
-msgstr "Add {packages} to your additional software?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
-msgstr "To install it automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
msgid "Install Every Time"
-msgstr "Install Every Time"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Install Only Once"
-msgstr "Install Only Once"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
msgid "The configuration of your additional software failed."
-msgstr "The configuration of your additional software failed."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
-msgstr "To install it automatically when starting Tails, you can create a persistent storage and activate the <b>Additional Software</b> feature."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
msgid "Create Persistent Storage"
-msgstr "Create Persistent Storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
msgid "Creating your persistent storage failed."
-msgstr "Creating your persistent storage failed."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
-msgstr "You could install {packages} automatically when starting Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
-msgstr "To do so, you need to run Tails from a USB stick installed using <i>Tails Installer</i>."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
#, python-brace-format
msgid "Remove {packages} from your additional software?"
-msgstr "Remove {packages} from your additional software?"
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
#, python-brace-format
msgid "This will stop installing {packages} automatically."
-msgstr "This will stop installing {packages} automatically."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
msgid "Remove"
-msgstr "Remove"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancel"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
-msgstr "Installing your additional software from persistent storage..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
msgid "This can take several minutes."
-msgstr "This can take several minutes."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "The installation of your additional software failed"
-msgstr "The installation of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
msgid "Additional software installed successfully"
-msgstr "Additional software installed successfully"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
msgid "The check for upgrades of your additional software failed"
-msgstr "The check for upgrades of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
-msgstr "Please check your network connection, restart Tails, or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
msgid "The upgrade of your additional software failed"
-msgstr "The upgrade of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
msgid "Documentation"
-msgstr "Documentation"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
@@ -318,32 +628,32 @@ msgstr "Documentation"
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
-msgstr "Remove {package} from your additional software? This will stop installing the package automatically."
+msgstr ""
#. Translators: Don't translate {pkg}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
#, python-brace-format
msgid "Failed to remove {pkg}"
-msgstr "Failed to remove {pkg}"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
msgid "Failed to read additional software configuration"
-msgstr "Failed to read additional software configuration"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
#, python-brace-format
msgid "Stop installing {package} automatically"
-msgstr "Stop installing {package} automatically"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
-msgstr "To do so, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
msgid ""
@@ -351,89 +661,85 @@ msgid ""
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
"line</a>."
-msgstr "To do so, unlock your persistent storage when starting Tails and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To do so, create a persistent storage and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "To do so, install Tails on a USB stick using <a href=\"tails-installer.desktop\">Tails Installer</a> and create a persistent storage."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
msgid "[package not available]"
-msgstr "[package not available]"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr "Synchronizing the system's clock"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
-msgstr "Tor needs an accurate clock to work properly, especially for Hidden Services. Please wait..."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr "Failed to synchronize the clock!"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
msgid "Lock Screen"
-msgstr "Lock Screen"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
msgid "Screen Locker"
-msgstr "Screen Locker"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
msgid "Set up a password to unlock the screen."
-msgstr "Set up a password to unlock the screen."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
msgid "Password"
-msgstr "Password"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirm"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
-msgstr "This version of Tails has known security issues:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
msgid "Known security issues"
-msgstr "Known security issues"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
#, sh-format
msgid "Network card ${nic} disabled"
-msgstr "Network card ${nic} disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
msgid "All networking disabled"
-msgstr "All networking disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
msgid ""
@@ -446,25 +752,25 @@ msgid ""
"\n"
"Or do a manual upgrade.\n"
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>Not enough memory available to check for upgrades.</b>\n\nMake sure this system satisfies the requirements for running Tails.\nSee file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTry to restart Tails to check for upgrades again.\n\nOr do a manual upgrade.\nSee https://tails.boum.org/doc/first_steps/upgrade#manual\""
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
-msgstr "error:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
-msgstr "Error"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
msgid "Warning: virtual machine detected!"
-msgstr "Warning: virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
msgid "Warning: non-free virtual machine detected!"
-msgstr "Warning: non-free virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
msgid ""
@@ -472,66 +778,66 @@ msgid ""
"monitor what you are doing in Tails. Only free software can be considered "
"trustworthy, for both the host operating system and the virtualization "
"software."
-msgstr "Both the host operating system and the virtualization software are able to monitor what you are doing in Tails. Only free software can be considered trustworthy, for both the host operating system and the virtualization software."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
msgid "Learn more"
-msgstr "Learn more"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:43
msgid "Tor is not ready"
-msgstr "Tor is not ready"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:44
msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor is not ready. Start Tor Browser anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:45
msgid "Start Tor Browser"
-msgstr "Start Tor Browser"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
msgid "Tor Status"
-msgstr "Tor Status"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
msgid "Open Onion Circuits"
-msgstr "Open Onion Circuits"
+msgstr ""
#. Translators: Don't translate {volume_label} or {volume_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
+msgstr ""
#. Translators: Don't translate {partition_name} or {partition_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
+msgstr ""
#. Translators: Don't translate {volume_size}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
-msgstr "{volume_size} Volume"
+msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Read-Only)"
+msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} in {container_path}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {path_to_file_container},
#. they are placeholders and will be replaced. You should only have to
@@ -540,14 +846,14 @@ msgstr "{partition_name} in {container_path}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
+msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} on {drive_name}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {drive_name},
#. they are placeholders and will be replaced. You should only have to
@@ -556,15 +862,15 @@ msgstr "{partition_name} on {drive_name}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
msgid "Wrong passphrase or parameters"
-msgstr "Wrong passphrase or parameters"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
msgid "Error unlocking volume"
-msgstr "Error unlocking volume"
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -573,11 +879,11 @@ msgstr "Error unlocking volume"
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't unlock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
msgid "One or more applications are keeping the volume busy."
-msgstr "One or more applications are keeping the volume busy."
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -586,37 +892,37 @@ msgstr "One or more applications are keeping the volume busy."
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't lock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
msgid "Locking the volume failed"
-msgstr "Locking the volume failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
-msgstr "No file containers added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
msgid "No VeraCrypt devices detected"
-msgstr "No VeraCrypt devices detected"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
msgid "Unlock VeraCrypt Volumes"
-msgstr "Unlock VeraCrypt Volumes"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
msgid "Container already added"
-msgstr "Container already added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
#, python-format
msgid "The file container %s should already be listed."
-msgstr "The file container %s should already be listed."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
msgid "Container opened read-only"
-msgstr "Container opened read-only"
+msgstr ""
#. Translators: Don't translate {path}, it's a placeholder and will be
#. replaced.
@@ -625,205 +931,205 @@ msgstr "Container opened read-only"
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
-msgstr "The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
-msgstr "Error opening file"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
-msgstr "Not a VeraCrypt container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "The file %s does not seem to be a VeraCrypt container."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
-msgstr "Failed to add container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.\n"
"Please try using the <i>Disks</i> application instead."
-msgstr "Could not add file container %s: Timeout while waiting for loop setup.\nPlease try using the <i>Disks</i> application instead."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
-msgstr "Choose File Container"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Do you really want to launch the Unsafe Browser?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
msgid ""
"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
"use the Unsafe Browser if necessary, for example\\nif you have to login or "
"register to activate your Internet connection."
-msgstr "Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly use the Unsafe Browser if necessary, for example\\nif you have to login or register to activate your Internet connection."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
msgid "Starting the Unsafe Browser..."
-msgstr "Starting the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
msgid "This may take a while, so please be patient."
-msgstr "This may take a while, so please be patient."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
msgid "Shutting down the Unsafe Browser..."
-msgstr "Shutting down the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
msgid ""
"This may take a while, and you may not restart the Unsafe Browser until it "
"is properly shut down."
-msgstr "This may take a while, and you may not restart the Unsafe Browser until it is properly shut down."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
msgid "Failed to restart Tor."
-msgstr "Failed to restart Tor."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
msgid "Unsafe Browser"
-msgstr "Unsafe Browser"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
msgid ""
"Another Unsafe Browser is currently running, or being cleaned up. Please "
"retry in a while."
-msgstr "Another Unsafe Browser is currently running, or being cleaned up. Please retry in a while."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
msgid "Failed to setup chroot."
-msgstr "Failed to setup chroot."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
msgid "Failed to configure browser."
-msgstr "Failed to configure browser."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
msgid ""
"No DNS server was obtained through DHCP or manually configured in "
"NetworkManager."
-msgstr "No DNS server was obtained through DHCP or manually configured in NetworkManager."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
msgid "Failed to run browser."
-msgstr "Failed to run browser."
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
-msgstr "Report an error"
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
msgid "Tails documentation"
-msgstr "Tails documentation"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
msgid "Root Terminal"
-msgstr "Root Terminal"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
msgid "Learn how to use Tails"
-msgstr "Learn how to use Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
msgid "Learn more about Tails"
-msgstr "Learn more about Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
msgid "Tor Browser"
-msgstr "Tor Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
msgid "Anonymous Web Browser"
-msgstr "Anonymous Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
msgid "Browse the World Wide Web without anonymity"
-msgstr "Browse the World Wide Web without anonymity"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
msgid "Unsafe Web Browser"
-msgstr "Unsafe Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Mount VeraCrypt encrypted file containers and devices"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
msgid ""
"Configure the additional software installed from your persistent storage "
"when starting Tails"
-msgstr "Configure the additional software installed from your persistent storage when starting Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
-msgstr "Tails specific tools"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
msgid "To start a Root Terminal, you need to authenticate."
-msgstr "To start a Root Terminal, you need to authenticate."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
msgid "Remove an additional software package"
-msgstr "Remove an additional software package"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
msgid ""
"Authentication is required to remove a package from your additional software"
" ($(command_line))"
-msgstr "Authentication is required to remove a package from your additional software ($(command_line))"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
msgid "File Containers"
-msgstr "File Containers"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
msgid "_Add"
-msgstr "_Add"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
msgid "Add a file container"
-msgstr "Add a file container"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
msgid "Partitions and Drives"
-msgstr "Partitions and Drives"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
msgid ""
"This application is not affiliated with or endorsed by the VeraCrypt project"
" or IDRIX."
-msgstr "This application is not affiliated with or endorsed by the VeraCrypt project or IDRIX."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
msgid "_Open"
-msgstr "_Open"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
msgid "Lock this volume"
-msgstr "Lock this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
msgid "_Unlock"
-msgstr "_Unlock"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
msgid "Detach this volume"
-msgstr "Detach this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
msgid "TrueCrypt/VeraCrypt container"
-msgstr "TrueCrypt/VeraCrypt container"
+msgstr ""
diff --git a/te.po b/te.po
index f5368ff07..d81b9f767 100644
--- a/te.po
+++ b/te.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/th.po b/th.po
index 5efa81a56..6c8278ab9 100644
--- a/th.po
+++ b/th.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/tr.po b/tr.po
index c926d2125..ceebd14d1 100644
--- a/tr.po
+++ b/tr.po
@@ -29,9 +29,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-14 08:32+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -118,6 +118,322 @@ msgstr "_Başlat"
msgid "_Exit"
msgstr "Çı_kış"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "İptal"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Onayla"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -292,12 +608,6 @@ msgstr "Bu işlem otomatik {packages} kurulumunu durduracak."
msgid "Remove"
msgstr "Kaldır"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "İptal"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Ek yazılımınız kalıcı depolama alanınızdan kuruluyor..."
@@ -422,10 +732,6 @@ msgstr "Ekran kilidini açmak için bir parola ayarlayın."
msgid "Password"
msgstr "Parola"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Onayla"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Bu Tails sürümünde bilinen bazı güvenlik sorunları var: "
diff --git a/uk.po b/uk.po
index 353f8cf2e..845d2c780 100644
--- a/uk.po
+++ b/uk.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -107,6 +107,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -281,12 +597,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -411,10 +721,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ur.po b/ur.po
index f1680ef86..b39ba3ee4 100644
--- a/ur.po
+++ b/ur.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/uz.po b/uz.po
index abb347f02..5bc024c2c 100644
--- a/uz.po
+++ b/uz.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/vi.po b/vi.po
index d0160055c..ca53b6fbd 100644
--- a/vi.po
+++ b/vi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/zh_CN.po b/zh_CN.po
index 5f7bf3cbb..6217eb8db 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -31,9 +31,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 14:53+0000\n"
-"Last-Translator: ciaran <ciaranchen(a)qq.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,6 +120,322 @@ msgstr "启动(_L)"
msgid "_Exit"
msgstr "退出(_E)"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "取消"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "确认"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -294,12 +610,6 @@ msgstr "这将导致 {packages}的安装进程自动中止。"
msgid "Remove"
msgstr "移除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "取消"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "从持久存储中安装您的附加软件……"
@@ -424,10 +734,6 @@ msgstr "设定解锁屏幕的密码"
msgid "Password"
msgstr "密码"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "确认"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "该版本 Tails 的已知安全问题:"
diff --git a/zh_HK.po b/zh_HK.po
index 7dbebb231..2f8e8ae87 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Chi-Hsun Tsai\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/zh_TW.po b/zh_TW.po
index b874602c2..6968e6b8d 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Hsiu-Ming Chang <cges30901(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
1
0

[translation/tails-misc_completed] Update translations for tails-misc_completed
by translation@torproject.org 24 Aug '19
by translation@torproject.org 24 Aug '19
24 Aug '19
commit 276f1f4b0543c2c57dd85207d1f675a34bf0df1d
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Aug 24 02:20:19 2019 +0000
Update translations for tails-misc_completed
---
es.po | 839 ------------------------------------------------------------
fr.po | 861 --------------------------------------------------------------
tails.pot | 636 ++++++++++++++++++++++++++++++++++------------
tr.po | 851 -------------------------------------------------------------
4 files changed, 471 insertions(+), 2716 deletions(-)
diff --git a/es.po b/es.po
deleted file mode 100644
index 9339a5c84..000000000
--- a/es.po
+++ /dev/null
@@ -1,839 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Cesar Enrique Sanchez Medina <cesare01(a)gmail.com>, 2014
-# Edward Navarro, 2015
-# el buve, 2015
-# Emma Peel, 2015,2017-2019
-# eulalio barbero espinosa <eulaliob(a)gmail.com>, 2018-2019
-# Jose Luis Tirado <joseluis.tirado(a)gmail.com>, 2014-2015
-# Manuel Herrera <ma_herrer(a)yahoo.com.mx>, 2013
-# sim, 2018
-# strel, 2013-2018
-# Zuhualime Akoochimoya, 2018
-msgid ""
-msgstr ""
-"Project-Id-Version: Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-17 11:03+0000\n"
-"Last-Translator: Emma Peel\n"
-"Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/es/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "Tor está listo"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr "Ya puedes acceder a Internet."
-
-#: config/chroot_local-includes/etc/whisperback/config.py:69
-#, python-format
-msgid ""
-"<h1>Help us fix your bug!</h1>\n"
-"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
-"<p><strong>Do not include more personal information than\n"
-"needed!</strong></p>\n"
-"<h2>About giving us an email address</h2>\n"
-"<p>\n"
-"Giving us an email address allows us to contact you to clarify the problem. This\n"
-"is needed for the vast majority of the reports we receive as most reports\n"
-"without any contact information are useless. On the other hand it also provides\n"
-"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
-"confirm that you are using Tails.\n"
-"</p>\n"
-msgstr "<h1>¡Ayúdanos a solucionar tu problema!<h1>\n<p>Lee <a href=\"%s\">nuestras instrucciones para informar de errores</a>.</p>\n<p><strong>¡No incluyas más información personal que \nla imprescindible!</strong></p>\n<h2>Acerca de dar tu dirección de correo electrónico</h2>\n<p>\nDanos una dirección de correo electrónico que nos permita contactar contigo para aclarar el problema. Esto es necesario para la mayoría de los reportes\nque recibimos, ya que el grueso de los que no incluyen información de contacto\nson inútiles. Por otra parte, también ofrece una oportunidad a los fisgones, como tu \nproveedor de correo electrónico o de Internet, para confirmar que estás usando Tails.\n</p>\n"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr "Software Adicional"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
-msgid ""
-"You can install additional software automatically from your persistent "
-"storage when starting Tails."
-msgstr "Puedes instalar automáticamente software adicional desde tu almacenamiento persistente cuando inicies Tails."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
-msgid ""
-"The following software is installed automatically from your persistent "
-"storage when starting Tails."
-msgstr "El siguientes software se instala automáticamente de tu almacenamiento persistente cuando arrancas Tails."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
-msgid ""
-"To add more, install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Para añadir más, instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
-msgid "_Create persistent storage"
-msgstr "_Crear el almacenamiento persistente"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:57
-msgid "Persistence is disabled for Electrum"
-msgstr "Persistencia desactivada para Electrum"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:59
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr "Cuando reinicies Tails todos los datos de Electrum se perderán, incluyendo tu cartera Bitcoin. Te recomendamos firmemente que sólo ejecutes Electrum cuando su función de permanencia esté activada."
-
-#: config/chroot_local-includes/usr/local/bin/electrum:60
-msgid "Do you want to start Electrum anyway?"
-msgstr "¿Quieres iniciar Electrum de todas formas?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:63
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Iniciar"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "_Salir"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:15
-#, sh-format
-msgid ""
-"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
-"\n"
-"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
-"\n"
-"<i>${filename}</i>\n"
-"\n"
-"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>¿Quieres cambiar el nombre de tu base de datos <i>KeePassXC</i>?</big></b>\n\nTienes una base de datos <i>KeePassXC</i> en tu carpeta <i>Permanente</i>:\n\n<i>${filename}</i>\n\nSi cambias el nombre a <i>keepassx.kdbx</i>, <i>KeePassXC</i> la abrirá de manera automática en el futuro."
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:23
-msgid "Rename"
-msgstr "Renombrar"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:24
-msgid "Keep current name"
-msgstr "Mantener el nombre actual"
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
-msgid "su is disabled. Please use sudo instead."
-msgstr "su está desactivado. En su lugar usa sudo."
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Lock screen"
-msgstr "Bloquear pantalla"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
-msgid "Suspend"
-msgstr "Suspender"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
-msgid "Restart"
-msgstr "Reiniciar"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
-msgid "Power Off"
-msgstr "Apagar"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:22
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
-msgid "Tails"
-msgstr "Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr "Acerca de Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:35
-msgid "The Amnesic Incognito Live System"
-msgstr "El Sistema Incógnito Amnésico sin instalación (The Amnesic Incognito Live System)"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:36
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr "Información de versión del paquete (build):\n%s"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-msgstr "no disponible"
-
-#. Translators: Don't translate {details}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
-#, python-brace-format
-msgid ""
-"{details} Please check your list of additional software or read the system "
-"log to understand the problem."
-msgstr "{details} Comprueba la lista de tu software adicional o lee el registro del sistema para entender el problema."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
-msgid ""
-"Please check your list of additional software or read the system log to "
-"understand the problem."
-msgstr " Comprueba tu lista de software adicional o lee el log del sistema para entender el problema."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Show Log"
-msgstr "Mostrar registro ('log')"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Configure"
-msgstr "Configurar"
-
-#. Translators: Don't translate {beginning} or {last}, they are
-#. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
-#, python-brace-format
-msgid "{beginning} and {last}"
-msgstr "{beginning} y {last}"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
-msgid ", "
-msgstr ", "
-
-#. Translators: Don't translate {packages}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:290
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#, python-brace-format
-msgid "Add {packages} to your additional software?"
-msgstr "¿Añadir {packages} a tu software adicional?"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-msgid ""
-"To install it automatically from your persistent storage when starting "
-"Tails."
-msgstr "Para instalarlo automáticamente desde tu almacenamiento persistente cuando inicies Tails."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-msgid "Install Every Time"
-msgstr "Instalarlo cada vez"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-msgid "Install Only Once"
-msgstr "Instalarlo sólo una vez"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
-msgid "The configuration of your additional software failed."
-msgstr "La configuración de tu software adicional ha fallado."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
-msgid ""
-"To install it automatically when starting Tails, you can create a persistent"
-" storage and activate the <b>Additional Software</b> feature."
-msgstr "Para instalarlo automáticamente cuando inicies Tails, has de crear un almacenamiento persistente y activar la función <b>Software Adicional</b>."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Create Persistent Storage"
-msgstr "Crear Almacenamiento Persistente"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
-msgid "Creating your persistent storage failed."
-msgstr "La creación de tu almacenamiento persistente ha fallado."
-
-#. Translators: Don't translate {packages}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
-#, python-brace-format
-msgid "You could install {packages} automatically when starting Tails"
-msgstr "Podrías instalar {packages} automáticamente al iniciar Tails."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
-msgid ""
-"To do so, you need to run Tails from a USB stick installed using <i>Tails "
-"Installer</i>."
-msgstr "Para hacer eso, necesitas ejecutar Tails desde una memoria USB instalada con <i>Tails Installer</i>."
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "¿Quitar {packages} de tu software adicional?"
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr "Esto parará la instalación de {packages} de forma automática."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-msgid "Remove"
-msgstr "Eliminar"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
-msgid "Installing your additional software from persistent storage..."
-msgstr "Instalando tu software adicional desde el almacenamiento persistente..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
-msgid "This can take several minutes."
-msgstr "Esto puede tardar un poco..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
-msgid "The installation of your additional software failed"
-msgstr "Ha fallado la instalación de software adicional"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-msgid "Additional software installed successfully"
-msgstr "Se ha instalado tu software adicional"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-msgid "The check for upgrades of your additional software failed"
-msgstr "No he podido comprobar si tu software adicional necesita actualizarse."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr "Por favor, revisa tu conexión de red, reinicia Tails, o lee el registro del sistema para comprender el problema."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-msgid "The upgrade of your additional software failed"
-msgstr "La actualización de tu software adicional ha fallado. "
-
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-msgid "Documentation"
-msgstr "Documentación"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
-#, python-brace-format
-msgid ""
-"Remove {package} from your additional software? This will stop installing "
-"the package automatically."
-msgstr "¿Quitar {package} de tu software adicional? Esto anulará la instalación automática del paquete."
-
-#. Translators: Don't translate {pkg}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
-#, python-brace-format
-msgid "Failed to remove {pkg}"
-msgstr "No se pudo eliminar {pkg}"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
-msgid "Failed to read additional software configuration"
-msgstr "Ha fallado la lectura de la configuración de software adicional "
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
-#, python-brace-format
-msgid "Stop installing {package} automatically"
-msgstr "Detener la instalación automática de {package}"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
-msgid ""
-"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
-"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
-"command line</a>."
-msgstr "Para hacerlo, instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
-msgid ""
-"To do so, unlock your persistent storage when starting Tails and install "
-"some software using <a href=\"synaptic.desktop\">Synaptic Package "
-"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
-"line</a>."
-msgstr "Para hacerlo, desbloquea tu almacenamiento persistente cuando inicies Tails, e instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
-msgid ""
-"To do so, create a persistent storage and install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Para hacerlo, crea un almacenamiento persistente e instala software usando <a href=\"synaptic.desktop\">el Gestor de Paquetes Synaptic</a> o <a href=\"org.gnome.Terminal.desktop\">con APT en la línea de comandos</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
-msgid ""
-"To do so, install Tails on a USB stick using <a href=\"tails-"
-"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "Para hacerlo, instala Tails en una memoria USB utilizando el <a href=\"tails-installer.desktop\">Tails Installer</a> y crea un almacenamiento persistente."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
-msgid "[package not available]"
-msgstr "[paquete no disponible]"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr "Sincronizando el reloj del sistema"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr "Tor necesita un reloj preciso para trabajar adecuadamente, especialmente para los Servicios Ocultos. Por favor, espera..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr "¡Fallo al sincronizar el reloj!"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
-msgid "Lock Screen"
-msgstr "Bloquear pantalla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
-msgid "Screen Locker"
-msgstr "Bloqueo de pantalla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
-msgid "Set up a password to unlock the screen."
-msgstr "Establece una contraseña para desbloquear la pantalla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
-msgid "Password"
-msgstr "Contraseña"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
-msgid "This version of Tails has known security issues:"
-msgstr "Esta versión de Tails tiene problemas de seguridad conocidos:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
-msgid "Known security issues"
-msgstr "Problemas de seguridad conocidos"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "Tarjeta de red ${nic} deshabilitada"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "Falló el MAC spoofing para la tarjeta de red ${nic_name} (${nic}) porque está temporalmente deshabilitada.\nQuizás prefieras reiniciar Tails y deshabilitar el MAC spoofing."
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-msgid "All networking disabled"
-msgstr "Se deshabilitaron todas las redes"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "Falló el MAC spoofing para la tarjeta de red ${nic_name} (${nic}). La recuperación de errores también falló porque toda la red está deshabilitada.\nQuizás prefieras reiniciar Tails y deshabilitar el MAC spoofing."
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-msgid ""
-"\"<b>Not enough memory available to check for upgrades.</b>\n"
-"\n"
-"Make sure this system satisfies the requirements for running Tails.\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-"\n"
-"Try to restart Tails to check for upgrades again.\n"
-"\n"
-"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "<b>No hay suficiente memoria disponible para comprobar las actualizaciones.</b>\n\nAsegúrate de que el sistema cumple con los requisitos para ejecutar Tails.\nLee file:///usr/share/doc/tails/website/doc/about/requirements.es.html\n\nIntenta reiniciar Tails para comprobar las actualizaciones de nuevo.\n\nO realiza una actualización manual.\nLee https://tails.boum.org/doc/first_steps/upgrade#manual"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "error:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Error"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
-msgid "Warning: virtual machine detected!"
-msgstr "Advertencia: ¡máquina virtual detectada!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-msgid "Warning: non-free virtual machine detected!"
-msgstr "Precaución: se detectó una maquina virtual de código no libre!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails. Only free software can be considered "
-"trustworthy, for both the host operating system and the virtualization "
-"software."
-msgstr "El sistema operativo anfitrión y el software de virtualización son igualmente capaces de monitorear lo que estás haciendo en Tails. Sólo puede considerarse confiable el software libre, tanto para el sistema operativo anfitrión como para el software de virtualización."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
-msgid "Learn more"
-msgstr "Leer más"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:43
-msgid "Tor is not ready"
-msgstr "Tor no está listo"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:44
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor no está listo. ¿Iniciar el Tor Browser de todos modos?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:45
-msgid "Start Tor Browser"
-msgstr "Iniciar Tor Browser"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
-msgid "Tor Status"
-msgstr "Estado de Tor"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
-msgid "Open Onion Circuits"
-msgstr "Abrir Onion Circuits"
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
-#, python-brace-format
-msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
-
-#. Translators: Don't translate {partition_name} or {partition_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
-#, python-brace-format
-msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
-
-#. Translators: Don't translate {volume_size}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr "{volume_size} Volumen"
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
-#, python-brace-format
-msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Sólo lectura)"
-
-#. Translators: Don't translate {partition_name} and {container_path}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
-#, python-brace-format
-msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} en {container_path}"
-
-#. Translators: Don't translate {volume_name} and {path_to_file_container},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
-#, python-brace-format
-msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
-
-#. Translators: Don't translate {partition_name} and {drive_name}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
-#, python-brace-format
-msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} en {drive_name}"
-
-#. Translators: Don't translate {volume_name} and {drive_name},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
-msgid "Wrong passphrase or parameters"
-msgstr "Contraseña o parámetros incorrectos"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
-msgid "Error unlocking volume"
-msgstr "Error al desbloquear el volumen"
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr "No se pudo desbloquear el volumen {volume_name}:\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
-msgid "One or more applications are keeping the volume busy."
-msgstr "Una o más aplicaciones tienen el volumen ocupado."
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
-#, python-brace-format
-msgid ""
-"Couldn't lock volume {volume_name}:\n"
-"{error_message}"
-msgstr "No se pudo bloquear el volumen {volume_name}:\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
-msgid "Locking the volume failed"
-msgstr "El bloqueo del volumen falló"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr "No se añadieron contenedores de archivos"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr "No se han detectado dispositivos VeraCrypt"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-msgstr "Desbloquea volúmenes VeraCrypt"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr "El contenedor ya estaba añadido"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
-#, python-format
-msgid "The file container %s should already be listed."
-msgstr "El contenedor de archivo %s ya debería estar en la lista."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
-msgid "Container opened read-only"
-msgstr "Contenedor abierto sólo para lectura"
-
-#. Translators: Don't translate {path}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
-#, python-brace-format
-msgid ""
-"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
-"{error_message}"
-msgstr "El contenedor de archivo {path} no se debería abrir con permiso de escritura. Ha sido abierto para solo-lectura. No deberías poder modificar el contenido del contenedor. {error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr "Error al abrir fichero"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
-msgid "Not a VeraCrypt container"
-msgstr "No es un contenedor VeraCrypt"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
-#, python-format
-msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "El archivo %s no parece ser un contenedor VeraCrypt."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-msgid "Failed to add container"
-msgstr "Error al agregar contenedor"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
-#, python-format
-msgid ""
-"Could not add file container %s: Timeout while waiting for loop setup.\n"
-"Please try using the <i>Disks</i> application instead."
-msgstr "No se pudo agregar el contenedor de archivos%s: Tiempo de espera de la configuración del bucle.\nPor favor intenta usar, en su lugar, la aplicación <i>Discos</i>."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr "Selecciona contenedor de archivo"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "¿De veras quieres iniciar el Navegador No Seguro?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr "La actividad de red con un navegador inseguro <b>no es anónima</b>.\\nÚsalo sólo si es necesario, por ejemplo\\nsi tienes que iniciar sesión o registrarte para activar tu conexión a internet."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "Iniciando el Navegador No Seguro..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-msgid "This may take a while, so please be patient."
-msgstr "Esto puede llevar un tiempo, por favor ten paciencia."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "Cerrando el Navegador No Seguro..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid ""
-"This may take a while, and you may not restart the Unsafe Browser until it "
-"is properly shut down."
-msgstr "Esto puede llevar un tiempo, y no podrás reiniciar el Navegador No Seguro hasta que se haya cerrado adecuadamente."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid "Failed to restart Tor."
-msgstr "Fallo al reiniciar Tor."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr "Navegador No Seguro"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-msgstr "En este momento se está ejecutando o apagando otro Navegador No Seguro. Inténtalo de nuevo en un rato."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
-msgid "Failed to setup chroot."
-msgstr "Fallo al establecer chroot."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
-msgid "Failed to configure browser."
-msgstr "Fallo al configurar el navegador."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr "No se obtuvo ningún servidor DNS a través de DHCP o configurado manualmente en el Administrador de Red (NetworkManager)."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
-msgid "Failed to run browser."
-msgstr "Falló al iniciar el navegador."
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr "Informar de un error"
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
-msgid "Tails documentation"
-msgstr "Documentación de Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
-msgid "Root Terminal"
-msgstr "Terminal de Root"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
-msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Abre una terminal como root, y usa gksu para preguntar por la contraseña de root"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Aprende a usar Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "Aprende más acerca de Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr "Tor Browser"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr "Navegador web anónimo"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
-msgid "Browse the World Wide Web without anonymity"
-msgstr "Navegar la World Wide Web sin anonimato"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr "Navegador No Seguro"
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
-msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Monta los contenedores y dispositivos de archivos encriptados VeraCrypt"
-
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
-msgid ""
-"Configure the additional software installed from your persistent storage "
-"when starting Tails"
-msgstr "Configura el software adicional instalado desde tu almacenamiento persistente cuando inicies Tails."
-
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr "Herramientas específicas de Tails"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
-msgid "To start a Root Terminal, you need to authenticate."
-msgstr "Para iniciar una terminal de root necesitas acreditarte."
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
-msgid "Remove an additional software package"
-msgstr "Borrar un paquete de software adicional"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
-msgid ""
-"Authentication is required to remove a package from your additional software"
-" ($(command_line))"
-msgstr "Se requiere autenticación para quitar un paquete de su software adicional ($ (command_line))"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
-msgid "File Containers"
-msgstr "Contenedores de archivos"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
-msgid "_Add"
-msgstr "_Añadir"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
-msgid "Add a file container"
-msgstr "Añadir un contenedor de archivo"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
-msgid "Partitions and Drives"
-msgstr "Particiones y unidades"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
-msgid ""
-"This application is not affiliated with or endorsed by the VeraCrypt project"
-" or IDRIX."
-msgstr "Esta aplicación no está afiliada o endorsada por el proyecto VeraCrypt o IDRIX."
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
-msgid "_Open"
-msgstr "_Abrir"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
-msgid "Lock this volume"
-msgstr "Cerrar este volumen"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
-msgid "_Unlock"
-msgstr "_Desbloquear"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
-msgid "Detach this volume"
-msgstr "Separar este volumen"
-
-#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
-msgid "TrueCrypt/VeraCrypt container"
-msgstr "Contenedor TrueCrypt/VeraCrypt"
diff --git a/fr.po b/fr.po
deleted file mode 100644
index 4c604bf61..000000000
--- a/fr.po
+++ /dev/null
@@ -1,861 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# bassmax, 2014-2015
-# Alex <chioubaca(a)gmail.com>, 2014
-# tneskovic <antoine_ecuador(a)yahoo.fr>, 2014
-# AO <ao(a)localizationlab.org>, 2015,2018-2019
-# apaddlingduck, 2014
-# apaddlingduck, 2014
-# Athorcis, 2015
-# Athorcis, 2015
-# Curtis Baltimore <curtisbaltimore(a)protonmail.com>, 2019
-# Domiho Zannou <zannou.gery(a)gmail.com>, 2018
-# Emmanuel Simond <emmanuel.simond(a)gmail.com>, 2014
-# Emmanuel Simond <emmanuel.simond(a)gmail.com>, 2014
-# Emma Peel, 2018
-# Emma Peel, 2018
-# AO <ao(a)localizationlab.org>, 2017-2018
-# French language coordinator <french.translation(a)rbox.me>, 2015-2017
-# Gwennole Hangard <gwennole.hangard(a)gmail.com>, 2015
-# Jean-Yves Toumit <saiolar-c(a)yahoo.fr>, 2013
-# Lidija <llazic.bgd(a)gmail.com>, 2015
-# mosira <romain.moisan(a)gmail.com>, 2014
-# Onizuka, 2013
-# Onizuka, 2013
-# mosira <romain.moisan(a)gmail.com>, 2014
-# Sabrina Cater <sabcat(a)gmx.fr>, 2015
-# Simon-Olivier Morneau <smorn026(a)uottawa.ca>, 2018
-# Thomas Chauchefoin <thomas(a)chauchefoin.fr>, 2016
-# Thomas Prévost <thomasprevost85(a)gmail.com>, 2018
-# tneskovic <antoine_ecuador(a)yahoo.fr>, 2014
-# Towinet, 2013-2016
-# AO <ao(a)localizationlab.org>, 2015
-# xin, 2019
-# xin, 2019
-msgid ""
-msgstr ""
-"Project-Id-Version: Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 13:10+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>\n"
-"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "Tor est prêt"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr "Vous pouvez maintenant accéder à Internet."
-
-#: config/chroot_local-includes/etc/whisperback/config.py:69
-#, python-format
-msgid ""
-"<h1>Help us fix your bug!</h1>\n"
-"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
-"<p><strong>Do not include more personal information than\n"
-"needed!</strong></p>\n"
-"<h2>About giving us an email address</h2>\n"
-"<p>\n"
-"Giving us an email address allows us to contact you to clarify the problem. This\n"
-"is needed for the vast majority of the reports we receive as most reports\n"
-"without any contact information are useless. On the other hand it also provides\n"
-"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
-"confirm that you are using Tails.\n"
-"</p>\n"
-msgstr "<h1>Aidez-nous à résoudre votre problème !</h1>\n<p>Lisez <a href=\"%s\">nos instructions sur le signalement de problèmes</a>.</p>\n<p><strong>N’incluez pas plus d’informations personnelles que nécessaire !</strong></p>\n<h2>Nous donner une adresse de courrier électronique</h2>\n<p>\nEn nous donnant une adresse de courrier électronique, vous nous permettez de vous contacter pour clarifier le problème. Cela\nest nécessaire pour la grande majorité des rapports que nous recevons, car la plupart des rapports\nsont inutiles sans informations de contact. D’un autre côté, cela donne\nune occasion aux oreilles indiscrètes, comme votre fournisseur d’accès à Internet ou de courrier électronique, de\nconfirmer que vous utilisez Tails.\n</p>\n"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr "Logiciels additionnels"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
-msgid ""
-"You can install additional software automatically from your persistent "
-"storage when starting Tails."
-msgstr "Vous pouvez installer des logiciels additionnels automatiquement depuis votre stockage persistant lors du démarrage de Tails."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
-msgid ""
-"The following software is installed automatically from your persistent "
-"storage when starting Tails."
-msgstr "Le logiciel suivant est installé automatiquement depuis votre stockage persistant lors du démarrage de Tails."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
-msgid ""
-"To add more, install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Pour en ajouter d’autres, installez des logiciels en utilisant le <a href=\"synaptic.desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome.Terminal.desktop\">APT en ligne de commande</a>."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
-msgid "_Create persistent storage"
-msgstr "_Créer stockage persistant"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:57
-msgid "Persistence is disabled for Electrum"
-msgstr "La persistance est désactivée pour Electrum"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:59
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr "Lorsque vous redémarrerez Tails, toutes les données d’Electrum seront perdues, incluant votre portefeuille Bitcoin. Il est fortement recommandé de n’utiliser Electrum qu’avec l’option de persistance activée."
-
-#: config/chroot_local-includes/usr/local/bin/electrum:60
-msgid "Do you want to start Electrum anyway?"
-msgstr "Voulez-vous quand même démarrer Electrum ?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:63
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Lancer"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "_Quitter"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:15
-#, sh-format
-msgid ""
-"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
-"\n"
-"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
-"\n"
-"<i>${filename}</i>\n"
-"\n"
-"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>Voulez-vous renommer votre base de données <i>KeePassXC</i> ?</big></b>\n\nVous avez une base de données <i>KeePassXC</i> dans votre dossier <i>Persistent</i> :\n\n<i>${filename}</i>\n\nLa renommer en <i>keepassx.kdbx</i> permettrait à <i>KeePassXC</i> de l’ouvrir automatiquement à l’avenir."
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:23
-msgid "Rename"
-msgstr "Renommer"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:24
-msgid "Keep current name"
-msgstr "Garder le nom actuel"
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
-msgid "su is disabled. Please use sudo instead."
-msgstr "su est désactivé. Merci d’utiliser sudo à la place."
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Lock screen"
-msgstr "Verrouillage de l’écran"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
-msgid "Suspend"
-msgstr "Interrompre"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
-msgid "Restart"
-msgstr "Redémarrer"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
-msgid "Power Off"
-msgstr "Éteindre"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:22
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
-msgid "Tails"
-msgstr "Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr "À propos de Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:35
-msgid "The Amnesic Incognito Live System"
-msgstr "The Amnesic Incognito Live System"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:36
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr "Renseignements de compilation :\n%s"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-msgstr "non disponible"
-
-#. Translators: Don't translate {details}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
-#, python-brace-format
-msgid ""
-"{details} Please check your list of additional software or read the system "
-"log to understand the problem."
-msgstr "{details} Veuillez vérifier votre liste de logiciels additionnels ou lire le journal système afin de mieux comprendre le problème."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
-msgid ""
-"Please check your list of additional software or read the system log to "
-"understand the problem."
-msgstr "Veuillez vérifier votre liste de logiciels additionnels ou lire le journal système afin de mieux comprendre le problème."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Show Log"
-msgstr "Afficher journal"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Configure"
-msgstr "Configurer"
-
-#. Translators: Don't translate {beginning} or {last}, they are
-#. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
-#, python-brace-format
-msgid "{beginning} and {last}"
-msgstr "{beginning} et {last}"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
-msgid ", "
-msgstr ", "
-
-#. Translators: Don't translate {packages}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:290
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#, python-brace-format
-msgid "Add {packages} to your additional software?"
-msgstr "Ajouter {packages} à vos logiciels additionnels ?"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-msgid ""
-"To install it automatically from your persistent storage when starting "
-"Tails."
-msgstr "Pour l’installer automatiquement depuis votre stockage persistant lors du démarrage de Tails."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-msgid "Install Every Time"
-msgstr "Installer à chaque fois"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-msgid "Install Only Once"
-msgstr "Installer une seule fois"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
-msgid "The configuration of your additional software failed."
-msgstr "La configuration de votre logiciel additionnel a échoué."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
-msgid ""
-"To install it automatically when starting Tails, you can create a persistent"
-" storage and activate the <b>Additional Software</b> feature."
-msgstr "Pour l’installer automatiquement lors du démarrage de Tails, vous pouvez créer un stockage persistant et activer l’option <b>Logiciels additionnels</b>"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Create Persistent Storage"
-msgstr "Créer un stockage persistant"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
-msgid "Creating your persistent storage failed."
-msgstr "La création de votre stockage persistant a échoué."
-
-#. Translators: Don't translate {packages}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
-#, python-brace-format
-msgid "You could install {packages} automatically when starting Tails"
-msgstr "Vous pourriez installer {packages} automatiquement lors du démarrage de Tails"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
-msgid ""
-"To do so, you need to run Tails from a USB stick installed using <i>Tails "
-"Installer</i>."
-msgstr "Pour ce faire, vous avez besoin de démarrer Tails depuis une clé USB installée en utilisant l’<i>Installeur de Tails</i>."
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "Enlever {packages} de vos logiciels additionnels ?"
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr "Cela devrait stopper l’installation automatique de {packages}."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-msgid "Remove"
-msgstr "Enlever"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Annuler"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
-msgid "Installing your additional software from persistent storage..."
-msgstr "Installation de vos logiciels additionnels depuis le stockage persistant..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
-msgid "This can take several minutes."
-msgstr "Cela peut prendre plusieurs minutes."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
-msgid "The installation of your additional software failed"
-msgstr "L’installation de vos logiciels additionnels a échoué"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-msgid "Additional software installed successfully"
-msgstr "Logiciels additionnels installés avec succès"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-msgid "The check for upgrades of your additional software failed"
-msgstr "La vérification de mise à jour de vos logiciels additionnels a échoué"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr "Veuillez vérifier votre connexion réseau, essayer de redémarrer Tails, ou lire le journal système afin de mieux comprendre le problème."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-msgid "The upgrade of your additional software failed"
-msgstr "La mise à jour de vos logiciels additionnels a échoué"
-
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-msgid "Documentation"
-msgstr "Documentation"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
-#, python-brace-format
-msgid ""
-"Remove {package} from your additional software? This will stop installing "
-"the package automatically."
-msgstr "Enlever {package} de vos logiciels additionnels ? Cela devrait stopper son installation automatique."
-
-#. Translators: Don't translate {pkg}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
-#, python-brace-format
-msgid "Failed to remove {pkg}"
-msgstr "Échec de la suppression de {pkg}"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
-msgid "Failed to read additional software configuration"
-msgstr "Échec de la lecture de la configuration des logiciels additionnels"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
-#, python-brace-format
-msgid "Stop installing {package} automatically"
-msgstr "Arrêter d’installer {package} automatiquement"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
-msgid ""
-"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
-"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
-"command line</a>."
-msgstr "Pour ce faire, installez des logiciels en utilisant le <a href=\"synaptic.desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome.Terminal.desktop\">APT en ligne de commande</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
-msgid ""
-"To do so, unlock your persistent storage when starting Tails and install "
-"some software using <a href=\"synaptic.desktop\">Synaptic Package "
-"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
-"line</a>."
-msgstr "Pour ce faire, déverrouillez votre stockage persistant lors du démarrage de Tails et installez des logiciels en utilisant le <a href=\"synaptic.desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome.Terminal.desktop\">APT en ligne de commande</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
-msgid ""
-"To do so, create a persistent storage and install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Pour ce faire, créez un stockage persistant et installez des logiciels en utilisant le <a href=\"synaptic.desktop\">gestionnaire de paquets Synaptic</a> ou <a href=\"org.gnome.Terminal.desktop\">APT en ligne de commande</a>."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
-msgid ""
-"To do so, install Tails on a USB stick using <a href=\"tails-"
-"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "Pour ce faire, installez Tails sur une clé USB en utilisant l’<a href=\"tails-installer.desktop\">Installeur de Tails</a> et en créant un stockage persistant."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
-msgid "[package not available]"
-msgstr "[paquet non disponible]"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr "Synchronisation de l’horloge système"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr "Tor a besoin d’une horloge bien réglée pour fonctionner correctement, en particulier pour les services cachés. Veuillez patienter..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr "Échec de synchronisation de l’horloge !"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
-msgid "Lock Screen"
-msgstr "Verrouiller l’écran"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
-msgid "Screen Locker"
-msgstr "Verrouillage de l’écran"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
-msgid "Set up a password to unlock the screen."
-msgstr "Définir un mot de passe pour déverrouiller l’écran"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
-msgid "Password"
-msgstr "Mot de passe"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmer"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
-msgid "This version of Tails has known security issues:"
-msgstr "Cette version de Tails a des problèmes de sécurité connus :"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
-msgid "Known security issues"
-msgstr "Problèmes de sécurité connus"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "La carte réseau ${nic} est désactivée"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "L’usurpation d’adresse MAC a échoué pour la carte réseau ${nic_name} (${nic}), elle est donc temporairement désactivée.\nVous pourriez préférer redémarrer Tails et désactiver l’usurpation d’adresse MAC."
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-msgid "All networking disabled"
-msgstr "Tout le réseau est désactivé"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "L’usurpation d’adresse MAC a échoué pour la carte réseau ${nic_name} (${nic}). Le dépannage de cette erreur a également échoué, toutes les fonctions de réseau sont désactivées.\nVous pourriez préférer redémarrer Tails et désactiver l’usurpation d’adresse MAC."
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-msgid ""
-"\"<b>Not enough memory available to check for upgrades.</b>\n"
-"\n"
-"Make sure this system satisfies the requirements for running Tails.\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-"\n"
-"Try to restart Tails to check for upgrades again.\n"
-"\n"
-"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>Il n’y a pas assez de mémoire disponible pour vérifier les mises à jour.</b>\n\nAssurez-vous que cet ordinateur satisfait les conditions requises pour utiliser Tails.\nVoir file:///usr/share/doc/tails/website/doc/about/requirements.fr.html\n\nEssayez de redémarrer Tails pour vérifier à nouveau les mises à jour.\n\nOu effectuez une mise à jour manuelle.\nVoir https://tails.boum.org/doc/first_steps/upgrade/index.fr.html#manual\""
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "erreur :"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Erreur"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
-msgid "Warning: virtual machine detected!"
-msgstr "Avertissement : une machine virtuelle a été détectée !"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-msgid "Warning: non-free virtual machine detected!"
-msgstr "Avertissement : une machine virtuelle non libre a été détectée !"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails. Only free software can be considered "
-"trustworthy, for both the host operating system and the virtualization "
-"software."
-msgstr "Le système d’exploitation hôte et le logiciel de virtualisation peuvent tous deux surveiller ce que vous faites dans Tails. Seuls les logiciels libres peuvent être considérés de confiance, à la fois pour le système d’exploitation hôte et le logiciel de virtualisation."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
-msgid "Learn more"
-msgstr "En apprendre davantage"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:43
-msgid "Tor is not ready"
-msgstr "Tor n’est pas prêt"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:44
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor n’est pas prêt. Démarrer le navigateur Tor quand même ?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:45
-msgid "Start Tor Browser"
-msgstr "Démarrer le navigateur Tor"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
-msgid "Tor Status"
-msgstr "État de Tor"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
-msgid "Open Onion Circuits"
-msgstr "Ouvrir Onion Circuits"
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
-#, python-brace-format
-msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
-
-#. Translators: Don't translate {partition_name} or {partition_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
-#, python-brace-format
-msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
-
-#. Translators: Don't translate {volume_size}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr "Volume de {volume_size}"
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
-#, python-brace-format
-msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (lecture seule)"
-
-#. Translators: Don't translate {partition_name} and {container_path}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
-#, python-brace-format
-msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} dans {container_path}"
-
-#. Translators: Don't translate {volume_name} and {path_to_file_container},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
-#, python-brace-format
-msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
-
-#. Translators: Don't translate {partition_name} and {drive_name}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
-#, python-brace-format
-msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} sur {drive_name}"
-
-#. Translators: Don't translate {volume_name} and {drive_name},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
-msgid "Wrong passphrase or parameters"
-msgstr "Mauvaise phrase de passe ou mauvais paramètres"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
-msgid "Error unlocking volume"
-msgstr "Erreur de déverrouillage du volume"
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr "Impossible de déverrouiller le volume {volume_name} :\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
-msgid "One or more applications are keeping the volume busy."
-msgstr "Une ou plusieurs applications tiennent le volume occupé."
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
-#, python-brace-format
-msgid ""
-"Couldn't lock volume {volume_name}:\n"
-"{error_message}"
-msgstr "Impossible de verrouiller le volume {volume_name} :\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
-msgid "Locking the volume failed"
-msgstr "Échec de verrouillage du volume"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr "Aucun fichier conteneur ajouté"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr "Aucun périphérique VeraCrypt détecté"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-msgstr "Déverrouiller volumes VeraCrypt"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr "Conteneur déjà ajouté"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
-#, python-format
-msgid "The file container %s should already be listed."
-msgstr "Le fichier conteneur %s devrait déjà être listé."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
-msgid "Container opened read-only"
-msgstr "Conteneur ouvert en lecture seule"
-
-#. Translators: Don't translate {path}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
-#, python-brace-format
-msgid ""
-"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
-"{error_message}"
-msgstr "Le fichier conteneur {path} ne pouvait pas être ouvert avec des droits en écriture. À la place il a été ouvert en lecture seule. Vous ne pourrez pas modifier le contenu de ce conteneur.\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr "Erreur d’ouverture du fichier"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
-msgid "Not a VeraCrypt container"
-msgstr "Ce n’est pas un conteneur VeraCrypt"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
-#, python-format
-msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "Le fichier %s ne semble pas être un conteneur VeraCrypt."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-msgid "Failed to add container"
-msgstr "Échec de l’ajout du conteneur"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
-#, python-format
-msgid ""
-"Could not add file container %s: Timeout while waiting for loop setup.\n"
-"Please try using the <i>Disks</i> application instead."
-msgstr "Impossible d’ajouter le fichier conteneur %s : délai d’attente dépassé en attendant la configuration de la boucle.\nVeuillez essayer d’utiliser l’application <i>Disques</i> à la place."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr "Choisir un fichier conteneur"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Voulez-vous vraiment lancer le navigateur non-sécurisé ?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr "L’activité réseau dans le navigateur non-sécurisé n’est <b>pas anonyme</b>.\\nN’utilisez le navigateur non-sécurisé que si nécessaire, par exemple\\nsi vous devez vous identifier ou vous inscrire pour activer votre connexion Internet."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "Démarrage du navigateur non-sécurisé..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-msgid "This may take a while, so please be patient."
-msgstr "Cela peut prendre du temps, merci de patienter."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "Fermeture du navigateur non-sécurisé..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid ""
-"This may take a while, and you may not restart the Unsafe Browser until it "
-"is properly shut down."
-msgstr "Cela peut prendre du temps et vous ne devez pas redémarrer le navigateur non-sécurisé avant sa fermeture complète."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid "Failed to restart Tor."
-msgstr "Échec du redémarrage de Tor."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr "Navigateur non-sécurisé"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-msgstr "Un autre navigateur non-sécurisé est en cours d’utilisation, ou est en train d’être nettoyé. Veuillez réessayer dans un moment."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
-msgid "Failed to setup chroot."
-msgstr "Échec d’exécution de chroot."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
-msgid "Failed to configure browser."
-msgstr "Échec de configuration du navigateur."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr "Aucun serveur DNS n’a été obtenu par le DHCP ou n’est configuré manuellement dans le gestionnaire de réseau."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
-msgid "Failed to run browser."
-msgstr "Échec de démarrage du navigateur."
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr "Signaler une erreur"
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
-msgid "Tails documentation"
-msgstr "Documentation de Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
-msgid "Root Terminal"
-msgstr "Terminal superutilisateur"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
-msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Ouvre un terminal en tant que superutilisateur, en utilisant gksu pour demander le mot de passe"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Apprendre à utiliser Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "En apprendre davantage sur Tails"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr "Navigateur Tor"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr "Navigateur Web anonyme"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
-msgid "Browse the World Wide Web without anonymity"
-msgstr "Naviguer sur le Web sans anonymat"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr "Navigateur Web non-sécurisé"
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
-msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Monter des fichiers conteneurs et des périphériques chiffrés VeraCrypt"
-
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
-msgid ""
-"Configure the additional software installed from your persistent storage "
-"when starting Tails"
-msgstr "Configurer les logiciels additionnels installés depuis votre stockage persistant lors du démarrage de Tails"
-
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr "Outils spécifiques à Tails"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
-msgid "To start a Root Terminal, you need to authenticate."
-msgstr "Vous devez vous authentifier pour lancer un Terminal administrateur."
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
-msgid "Remove an additional software package"
-msgstr "Enlever un paquet de logiciel additionnel"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
-msgid ""
-"Authentication is required to remove a package from your additional software"
-" ($(command_line))"
-msgstr "Une authentification est nécessaire pour enlever un paquet depuis vos logiciels additionnels ($(command_line))"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
-msgid "File Containers"
-msgstr "Fichiers conteneurs"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
-msgid "_Add"
-msgstr "_Ajouter"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
-msgid "Add a file container"
-msgstr "Ajouter un fichier conteneur"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
-msgid "Partitions and Drives"
-msgstr "Partitions et lecteurs"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
-msgid ""
-"This application is not affiliated with or endorsed by the VeraCrypt project"
-" or IDRIX."
-msgstr "Cette application n’est pas liée ou approuvée par le projet VeraCrypt ou IDRIX."
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
-msgid "_Open"
-msgstr "_Ouvrir"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
-msgid "Lock this volume"
-msgstr "Verrouiller ce volume"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
-msgid "_Unlock"
-msgstr "_Déverrouiller"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
-msgid "Detach this volume"
-msgstr "Détacher ce volume"
-
-#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
-msgid "TrueCrypt/VeraCrypt container"
-msgstr "Conteneur TrueCrypt/VeraCrypt"
diff --git a/tails.pot b/tails.pot
index 0bc3178b1..66f476226 100644
--- a/tails.pot
+++ b/tails.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -19,11 +19,11 @@ msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
msgid "Tor is ready"
-msgstr "Tor is ready"
+msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
msgid "You can now access the Internet."
-msgstr "You can now access the Internet."
+msgstr ""
#: config/chroot_local-includes/etc/whisperback/config.py:69
#, python-format
@@ -40,24 +40,24 @@ msgid ""
"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
"confirm that you are using Tails.\n"
"</p>\n"
-msgstr "<h1>Help us fix your bug!</h1>\n<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n<p><strong>Do not include more personal information than\nneeded!</strong></p>\n<h2>About giving us an email address</h2>\n<p>\nGiving us an email address allows us to contact you to clarify the problem. This\nis needed for the vast majority of the reports we receive as most reports\nwithout any contact information are useless. On the other hand it also provides\nan opportunity for eavesdroppers, like your email or Internet provider, to\nconfirm that you are using Tails.\n</p>\n"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
msgid "Additional Software"
-msgstr "Additional Software"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
msgid ""
"You can install additional software automatically from your persistent "
"storage when starting Tails."
-msgstr "You can install additional software automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
msgid ""
"The following software is installed automatically from your persistent "
"storage when starting Tails."
-msgstr "The following software is installed automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
@@ -65,36 +65,352 @@ msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To add more, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
msgid "_Create persistent storage"
-msgstr "_Create persistent storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:57
msgid "Persistence is disabled for Electrum"
-msgstr "Persistence is disabled for Electrum"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:59
msgid ""
"When you reboot Tails, all of Electrum's data will be lost, including your "
"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
"persistence feature is activated."
-msgstr "When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet. It is strongly recommended to only run Electrum when its persistence feature is activated."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:60
msgid "Do you want to start Electrum anyway?"
-msgstr "Do you want to start Electrum anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:63
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
msgid "_Launch"
-msgstr "_Launch"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:64
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
msgid "_Exit"
-msgstr "_Exit"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
@@ -106,60 +422,60 @@ msgid ""
"<i>${filename}</i>\n"
"\n"
"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n\nYou have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n\n<i>${filename}</i>\n\nRenaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:23
msgid "Rename"
-msgstr "Rename"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:24
msgid "Keep current name"
-msgstr "Keep current name"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
-msgstr "su is disabled. Please use sudo instead."
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
-msgstr "Lock screen"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
msgid "Suspend"
-msgstr "Suspend"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
msgid "Restart"
-msgstr "Restart"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
msgid "Power Off"
-msgstr "Power Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:22
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
msgid "Tails"
-msgstr "Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:25
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
msgid "About Tails"
-msgstr "About Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:35
msgid "The Amnesic Incognito Live System"
-msgstr "The Amnesic Incognito Live System"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:36
#, python-format
msgid ""
"Build information:\n"
"%s"
-msgstr "Build information:\n%s"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:54
msgid "not available"
-msgstr "not available"
+msgstr ""
#. Translators: Don't translate {details}, it's a placeholder and will
#. be replaced.
@@ -168,32 +484,32 @@ msgstr "not available"
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
-msgstr "{details} Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
-msgstr "Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Show Log"
-msgstr "Show Log"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Configure"
-msgstr "Configure"
+msgstr ""
#. Translators: Don't translate {beginning} or {last}, they are
#. placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
#, python-brace-format
msgid "{beginning} and {last}"
-msgstr "{beginning} and {last}"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
msgid ", "
-msgstr ", "
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will
#. be replaced.
@@ -201,115 +517,109 @@ msgstr ", "
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
#, python-brace-format
msgid "Add {packages} to your additional software?"
-msgstr "Add {packages} to your additional software?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
-msgstr "To install it automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
msgid "Install Every Time"
-msgstr "Install Every Time"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Install Only Once"
-msgstr "Install Only Once"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
msgid "The configuration of your additional software failed."
-msgstr "The configuration of your additional software failed."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
-msgstr "To install it automatically when starting Tails, you can create a persistent storage and activate the <b>Additional Software</b> feature."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
msgid "Create Persistent Storage"
-msgstr "Create Persistent Storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
msgid "Creating your persistent storage failed."
-msgstr "Creating your persistent storage failed."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
-msgstr "You could install {packages} automatically when starting Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
-msgstr "To do so, you need to run Tails from a USB stick installed using <i>Tails Installer</i>."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
#, python-brace-format
msgid "Remove {packages} from your additional software?"
-msgstr "Remove {packages} from your additional software?"
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
#, python-brace-format
msgid "This will stop installing {packages} automatically."
-msgstr "This will stop installing {packages} automatically."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
msgid "Remove"
-msgstr "Remove"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancel"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
-msgstr "Installing your additional software from persistent storage..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
msgid "This can take several minutes."
-msgstr "This can take several minutes."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "The installation of your additional software failed"
-msgstr "The installation of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
msgid "Additional software installed successfully"
-msgstr "Additional software installed successfully"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
msgid "The check for upgrades of your additional software failed"
-msgstr "The check for upgrades of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
-msgstr "Please check your network connection, restart Tails, or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
msgid "The upgrade of your additional software failed"
-msgstr "The upgrade of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
msgid "Documentation"
-msgstr "Documentation"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
@@ -318,32 +628,32 @@ msgstr "Documentation"
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
-msgstr "Remove {package} from your additional software? This will stop installing the package automatically."
+msgstr ""
#. Translators: Don't translate {pkg}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
#, python-brace-format
msgid "Failed to remove {pkg}"
-msgstr "Failed to remove {pkg}"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
msgid "Failed to read additional software configuration"
-msgstr "Failed to read additional software configuration"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
#, python-brace-format
msgid "Stop installing {package} automatically"
-msgstr "Stop installing {package} automatically"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
-msgstr "To do so, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
msgid ""
@@ -351,89 +661,85 @@ msgid ""
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
"line</a>."
-msgstr "To do so, unlock your persistent storage when starting Tails and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To do so, create a persistent storage and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "To do so, install Tails on a USB stick using <a href=\"tails-installer.desktop\">Tails Installer</a> and create a persistent storage."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
msgid "[package not available]"
-msgstr "[package not available]"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr "Synchronizing the system's clock"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
-msgstr "Tor needs an accurate clock to work properly, especially for Hidden Services. Please wait..."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr "Failed to synchronize the clock!"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
msgid "Lock Screen"
-msgstr "Lock Screen"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
msgid "Screen Locker"
-msgstr "Screen Locker"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
msgid "Set up a password to unlock the screen."
-msgstr "Set up a password to unlock the screen."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
msgid "Password"
-msgstr "Password"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirm"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
-msgstr "This version of Tails has known security issues:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
msgid "Known security issues"
-msgstr "Known security issues"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
#, sh-format
msgid "Network card ${nic} disabled"
-msgstr "Network card ${nic} disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
msgid "All networking disabled"
-msgstr "All networking disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
msgid ""
@@ -446,25 +752,25 @@ msgid ""
"\n"
"Or do a manual upgrade.\n"
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>Not enough memory available to check for upgrades.</b>\n\nMake sure this system satisfies the requirements for running Tails.\nSee file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTry to restart Tails to check for upgrades again.\n\nOr do a manual upgrade.\nSee https://tails.boum.org/doc/first_steps/upgrade#manual\""
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
-msgstr "error:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
-msgstr "Error"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
msgid "Warning: virtual machine detected!"
-msgstr "Warning: virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
msgid "Warning: non-free virtual machine detected!"
-msgstr "Warning: non-free virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
msgid ""
@@ -472,66 +778,66 @@ msgid ""
"monitor what you are doing in Tails. Only free software can be considered "
"trustworthy, for both the host operating system and the virtualization "
"software."
-msgstr "Both the host operating system and the virtualization software are able to monitor what you are doing in Tails. Only free software can be considered trustworthy, for both the host operating system and the virtualization software."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
msgid "Learn more"
-msgstr "Learn more"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:43
msgid "Tor is not ready"
-msgstr "Tor is not ready"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:44
msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor is not ready. Start Tor Browser anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:45
msgid "Start Tor Browser"
-msgstr "Start Tor Browser"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
msgid "Tor Status"
-msgstr "Tor Status"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
msgid "Open Onion Circuits"
-msgstr "Open Onion Circuits"
+msgstr ""
#. Translators: Don't translate {volume_label} or {volume_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
+msgstr ""
#. Translators: Don't translate {partition_name} or {partition_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
+msgstr ""
#. Translators: Don't translate {volume_size}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
-msgstr "{volume_size} Volume"
+msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Read-Only)"
+msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} in {container_path}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {path_to_file_container},
#. they are placeholders and will be replaced. You should only have to
@@ -540,14 +846,14 @@ msgstr "{partition_name} in {container_path}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
+msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} on {drive_name}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {drive_name},
#. they are placeholders and will be replaced. You should only have to
@@ -556,15 +862,15 @@ msgstr "{partition_name} on {drive_name}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
msgid "Wrong passphrase or parameters"
-msgstr "Wrong passphrase or parameters"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
msgid "Error unlocking volume"
-msgstr "Error unlocking volume"
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -573,11 +879,11 @@ msgstr "Error unlocking volume"
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't unlock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
msgid "One or more applications are keeping the volume busy."
-msgstr "One or more applications are keeping the volume busy."
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -586,37 +892,37 @@ msgstr "One or more applications are keeping the volume busy."
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't lock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
msgid "Locking the volume failed"
-msgstr "Locking the volume failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
-msgstr "No file containers added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
msgid "No VeraCrypt devices detected"
-msgstr "No VeraCrypt devices detected"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
msgid "Unlock VeraCrypt Volumes"
-msgstr "Unlock VeraCrypt Volumes"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
msgid "Container already added"
-msgstr "Container already added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
#, python-format
msgid "The file container %s should already be listed."
-msgstr "The file container %s should already be listed."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
msgid "Container opened read-only"
-msgstr "Container opened read-only"
+msgstr ""
#. Translators: Don't translate {path}, it's a placeholder and will be
#. replaced.
@@ -625,205 +931,205 @@ msgstr "Container opened read-only"
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
-msgstr "The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
-msgstr "Error opening file"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
-msgstr "Not a VeraCrypt container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "The file %s does not seem to be a VeraCrypt container."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
-msgstr "Failed to add container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.\n"
"Please try using the <i>Disks</i> application instead."
-msgstr "Could not add file container %s: Timeout while waiting for loop setup.\nPlease try using the <i>Disks</i> application instead."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
-msgstr "Choose File Container"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Do you really want to launch the Unsafe Browser?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
msgid ""
"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
"use the Unsafe Browser if necessary, for example\\nif you have to login or "
"register to activate your Internet connection."
-msgstr "Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly use the Unsafe Browser if necessary, for example\\nif you have to login or register to activate your Internet connection."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
msgid "Starting the Unsafe Browser..."
-msgstr "Starting the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
msgid "This may take a while, so please be patient."
-msgstr "This may take a while, so please be patient."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
msgid "Shutting down the Unsafe Browser..."
-msgstr "Shutting down the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
msgid ""
"This may take a while, and you may not restart the Unsafe Browser until it "
"is properly shut down."
-msgstr "This may take a while, and you may not restart the Unsafe Browser until it is properly shut down."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
msgid "Failed to restart Tor."
-msgstr "Failed to restart Tor."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
msgid "Unsafe Browser"
-msgstr "Unsafe Browser"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
msgid ""
"Another Unsafe Browser is currently running, or being cleaned up. Please "
"retry in a while."
-msgstr "Another Unsafe Browser is currently running, or being cleaned up. Please retry in a while."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
msgid "Failed to setup chroot."
-msgstr "Failed to setup chroot."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
msgid "Failed to configure browser."
-msgstr "Failed to configure browser."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
msgid ""
"No DNS server was obtained through DHCP or manually configured in "
"NetworkManager."
-msgstr "No DNS server was obtained through DHCP or manually configured in NetworkManager."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
msgid "Failed to run browser."
-msgstr "Failed to run browser."
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
-msgstr "Report an error"
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
msgid "Tails documentation"
-msgstr "Tails documentation"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
msgid "Root Terminal"
-msgstr "Root Terminal"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
msgid "Learn how to use Tails"
-msgstr "Learn how to use Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
msgid "Learn more about Tails"
-msgstr "Learn more about Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
msgid "Tor Browser"
-msgstr "Tor Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
msgid "Anonymous Web Browser"
-msgstr "Anonymous Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
msgid "Browse the World Wide Web without anonymity"
-msgstr "Browse the World Wide Web without anonymity"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
msgid "Unsafe Web Browser"
-msgstr "Unsafe Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Mount VeraCrypt encrypted file containers and devices"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
msgid ""
"Configure the additional software installed from your persistent storage "
"when starting Tails"
-msgstr "Configure the additional software installed from your persistent storage when starting Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
-msgstr "Tails specific tools"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
msgid "To start a Root Terminal, you need to authenticate."
-msgstr "To start a Root Terminal, you need to authenticate."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
msgid "Remove an additional software package"
-msgstr "Remove an additional software package"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
msgid ""
"Authentication is required to remove a package from your additional software"
" ($(command_line))"
-msgstr "Authentication is required to remove a package from your additional software ($(command_line))"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
msgid "File Containers"
-msgstr "File Containers"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
msgid "_Add"
-msgstr "_Add"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
msgid "Add a file container"
-msgstr "Add a file container"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
msgid "Partitions and Drives"
-msgstr "Partitions and Drives"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
msgid ""
"This application is not affiliated with or endorsed by the VeraCrypt project"
" or IDRIX."
-msgstr "This application is not affiliated with or endorsed by the VeraCrypt project or IDRIX."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
msgid "_Open"
-msgstr "_Open"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
msgid "Lock this volume"
-msgstr "Lock this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
msgid "_Unlock"
-msgstr "_Unlock"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
msgid "Detach this volume"
-msgstr "Detach this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
msgid "TrueCrypt/VeraCrypt container"
-msgstr "TrueCrypt/VeraCrypt container"
+msgstr ""
diff --git a/tr.po b/tr.po
deleted file mode 100644
index c926d2125..000000000
--- a/tr.po
+++ /dev/null
@@ -1,851 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Translators:
-# Ayca Omrak <aycaom(a)hotmail.com>, 2013
-# Bullgeschichte <bullgeschichte(a)riseup.net>, 2015
-# Can Günay <cangunay(a)yandex.com>, 2018
-# Cenk Yıldızlı <goncagul(a)national.shitposting.agency>, 2019
-# cmldrs, 2014
-# cmldrs, 2014
-# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
-# ecocan <eecocan(a)yahoo.com>, 2014
-# ecocan <eecocan(a)yahoo.com>, 2014
-# Emma Peel, 2018
-# imratirtil <d.imra.gundogdu(a)gmail.com>, 2014
-# Kaya Zeren <kayazeren(a)gmail.com>, 2015-2019
-# metint, 2014
-# metint, 2014
-# Ozancan Karataş <ozancankaratas96(a)outlook.com>, 2015-2016
-# Tails_developers <tails(a)boum.org>, 2014
-# Tails_developers <tails(a)boum.org>, 2014
-# T. E. Kalayci <tekrei(a)gmail.com>, 2017-2018
-# Th3Kh3d1v3, 2018
-# Ümit Türk <zucchinitr(a)gmail.com>, 2013
-# Volkan Gezer <volkangezer(a)gmail.com>, 2013-2016
-# Yasin Özel <iletisim(a)yasinozel.com.tr>, 2013
-msgid ""
-msgstr ""
-"Project-Id-Version: Tor Project\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-14 08:32+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
-"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
-msgid "Tor is ready"
-msgstr "Tor hazır"
-
-#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
-msgid "You can now access the Internet."
-msgstr "Artık İnternet'e erişebilirsiniz."
-
-#: config/chroot_local-includes/etc/whisperback/config.py:69
-#, python-format
-msgid ""
-"<h1>Help us fix your bug!</h1>\n"
-"<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n"
-"<p><strong>Do not include more personal information than\n"
-"needed!</strong></p>\n"
-"<h2>About giving us an email address</h2>\n"
-"<p>\n"
-"Giving us an email address allows us to contact you to clarify the problem. This\n"
-"is needed for the vast majority of the reports we receive as most reports\n"
-"without any contact information are useless. On the other hand it also provides\n"
-"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
-"confirm that you are using Tails.\n"
-"</p>\n"
-msgstr "<h1>Karşılaştığınız sorunu çözmemize yardım edin!</h1>\n<p><a href=\"%s\">Hata bildirme yönergelerini</a> okuyun.</p>\n<p><strong>Gerektiğinden fazla kişisel bilgi vermeyin!</strong></p>\n<h2>E-posta adresinizi bildirmeniz hakkında</h2>\n<p>\nBir e-posta adresi bildirmeniz, sorununuzu daha iyi anlamak için sizinle iletişim\nkurmamızı sağlar. Bize iletilen pek çok hata bildirimi, iletişim bilgileri bulunmadığı\niçin işe yaramıyor. Ancak gerçek bilgilerinizi verdiğinizde sizi izliyor olabilecek \nkişi ya da kuruluşlara (e-posta ya da İnternet hizmeti sağlayıcınıza) Tails uygulamasını kullandığınızı\nbelirleme fırsatı vermiş olursunuz. Bu nedenle farklı bir e-posta adresi kullanmanız önerilir.\n</p>\n"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
-msgid "Additional Software"
-msgstr "Ek Yazılımlar"
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
-msgid ""
-"You can install additional software automatically from your persistent "
-"storage when starting Tails."
-msgstr "Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan ek yazılımlar kurabilirsiniz."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
-msgid ""
-"The following software is installed automatically from your persistent "
-"storage when starting Tails."
-msgstr "Şu yazılımlar Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurulacak."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
-msgid ""
-"To add more, install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Başka yazılımlar eklemek için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-
-#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
-msgid "_Create persistent storage"
-msgstr "_Kalıcı depolama oluştur"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:57
-msgid "Persistence is disabled for Electrum"
-msgstr "Electrum için kalıcılık devre dışı bırakıldı"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:59
-msgid ""
-"When you reboot Tails, all of Electrum's data will be lost, including your "
-"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
-"persistence feature is activated."
-msgstr "Tails uygulamasını yeniden başlattığınızda, Bitcoin cüzdanınız da dahil tüm Electrum verileri kaybolur. Electrum uygulamasının yalnız kalıcılık özelliği etkin iken çalıştırılması önerilir."
-
-#: config/chroot_local-includes/usr/local/bin/electrum:60
-msgid "Do you want to start Electrum anyway?"
-msgstr "Electrum yine de başlatılsın mı?"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:63
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
-msgid "_Launch"
-msgstr "_Başlat"
-
-#: config/chroot_local-includes/usr/local/bin/electrum:64
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
-msgid "_Exit"
-msgstr "Çı_kış"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:15
-#, sh-format
-msgid ""
-"<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n"
-"\n"
-"You have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n"
-"\n"
-"<i>${filename}</i>\n"
-"\n"
-"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big><i>KeePassXC</i> veritabanınızı yeniden adlandırmak ister misiniz?</big></b>\n\n<i>Kalıcı</i> klasörünüzde bir <i>KeePassXC</i> veritabanı var:\n\n<i>${filename}</i>\n\nBu dosyayı <i>keepassx.kdbx</i> olarak yeniden adlandırarak gelecekte <i>KeePassXC</i> ile otomatik olarak açılmasını sağlayabilirsiniz."
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:23
-msgid "Rename"
-msgstr "Yeniden Adlandır"
-
-#: config/chroot_local-includes/usr/local/bin/keepassxc:24
-msgid "Keep current name"
-msgstr "Geçerli ad korunsun"
-
-#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
-msgid "su is disabled. Please use sudo instead."
-msgstr " su komutu devre dışı bırakılmış. Lütfen yerine sudo komutunu kullanın."
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
-msgid "Lock screen"
-msgstr "Ekranı kilitle"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
-msgid "Suspend"
-msgstr "Duraklat"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
-msgid "Restart"
-msgstr "Yeniden başlat"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
-msgid "Power Off"
-msgstr "Gücü Kapat"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:22
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
-msgid "Tails"
-msgstr "Tails"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:25
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
-msgid "About Tails"
-msgstr "Tails Hakkında"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:35
-msgid "The Amnesic Incognito Live System"
-msgstr "The Amnesic Incognito Live System"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:36
-#, python-format
-msgid ""
-"Build information:\n"
-"%s"
-msgstr "Yapım bilgisi:\n%s"
-
-#: config/chroot_local-includes/usr/local/bin/tails-about:54
-msgid "not available"
-msgstr "kullanılamıyor"
-
-#. Translators: Don't translate {details}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:148
-#, python-brace-format
-msgid ""
-"{details} Please check your list of additional software or read the system "
-"log to understand the problem."
-msgstr "{details} Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
-msgid ""
-"Please check your list of additional software or read the system log to "
-"understand the problem."
-msgstr "Lütfen ek yazılım listenizi denetleyin ya da sorunu anlamak için sistem günlüğüne bakın."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Show Log"
-msgstr "Günlüğü Görüntüle"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
-msgid "Configure"
-msgstr "Yapılandır"
-
-#. Translators: Don't translate {beginning} or {last}, they are
-#. placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
-#, python-brace-format
-msgid "{beginning} and {last}"
-msgstr "{beginning} ile {last}"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
-msgid ", "
-msgstr ", "
-
-#. Translators: Don't translate {packages}, it's a placeholder and will
-#. be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:290
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
-#, python-brace-format
-msgid "Add {packages} to your additional software?"
-msgstr "Ek yazılımlarına {packages} eklensin mi?"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
-msgid ""
-"To install it automatically from your persistent storage when starting "
-"Tails."
-msgstr "Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurmak için."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
-msgid "Install Every Time"
-msgstr "Her Defasında Kurulsun"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
-msgid "Install Only Once"
-msgstr "Yalnız Bir Kez Kurulsun"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
-msgid "The configuration of your additional software failed."
-msgstr "Ek yazılımınız yapılandırılamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
-msgid ""
-"To install it automatically when starting Tails, you can create a persistent"
-" storage and activate the <b>Additional Software</b> feature."
-msgstr "Tails başlatılırken otomatik olarak kurulması için bir kalıcı depolama oluşturarak <b>Ek Yazılımlar</b> özelliğini etkinleştirmeniz gerekir."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
-msgid "Create Persistent Storage"
-msgstr "Kalıcı Depolama Oluştur"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
-msgid "Creating your persistent storage failed."
-msgstr "Kalıcı depolamanız oluşturulamadı."
-
-#. Translators: Don't translate {packages}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
-#, python-brace-format
-msgid "You could install {packages} automatically when starting Tails"
-msgstr "Tails başlatılırken otomatik olarak {packages} kurabilirsiniz"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
-msgid ""
-"To do so, you need to run Tails from a USB stick installed using <i>Tails "
-"Installer</i>."
-msgstr "Bunun için Tails uygulamasını <i>Tails Kurucu</i> ile hazırlanmış bir USB bellekten çalıştırmalısınız."
-
-#. Translators: Don't translate {packages}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
-#, python-brace-format
-msgid "Remove {packages} from your additional software?"
-msgstr "{packages} ek yazılımlarınızdan kaldırılsın mı?"
-
-#. Translators: Don't translate {packages}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
-#, python-brace-format
-msgid "This will stop installing {packages} automatically."
-msgstr "Bu işlem otomatik {packages} kurulumunu durduracak."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
-msgid "Remove"
-msgstr "Kaldır"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "İptal"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
-msgid "Installing your additional software from persistent storage..."
-msgstr "Ek yazılımınız kalıcı depolama alanınızdan kuruluyor..."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
-msgid "This can take several minutes."
-msgstr "Bu işlem bir kaç dakika sürebilir."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
-msgid "The installation of your additional software failed"
-msgstr "Ek yazılım kurulamadı"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
-msgid "Additional software installed successfully"
-msgstr "Ek yazılım kuruldu"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
-msgid "The check for upgrades of your additional software failed"
-msgstr "Ek yazılımınızın güncellemeleri denetlenemedi"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
-msgid ""
-"Please check your network connection, restart Tails, or read the system log "
-"to understand the problem."
-msgstr "Lütfen ağ bağlantınızı denetleyin, Tails uygulamasını yeniden başlatın ya da sorunu anlamak için sistem günlüğüne bakın."
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
-msgid "The upgrade of your additional software failed"
-msgstr "Ek yazılım güncellenemedi"
-
-#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
-msgid "Documentation"
-msgstr "Belgeler"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:94
-#, python-brace-format
-msgid ""
-"Remove {package} from your additional software? This will stop installing "
-"the package automatically."
-msgstr "{package} ek yazılımlarınız arasından kaldırılsın mı? Bu işlem paketin otomatik olarak kurulmasını durduracak."
-
-#. Translators: Don't translate {pkg}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
-#, python-brace-format
-msgid "Failed to remove {pkg}"
-msgstr "{pkg} kaldırılamadı"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
-msgid "Failed to read additional software configuration"
-msgstr "Ek yazılım yapılandırması okunamadı"
-
-#. Translators: Don't translate {package}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
-#, python-brace-format
-msgid "Stop installing {package} automatically"
-msgstr "{package} otomatik olarak kurulmasın"
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
-msgid ""
-"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
-"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
-"command line</a>."
-msgstr "Bunun için <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
-msgid ""
-"To do so, unlock your persistent storage when starting Tails and install "
-"some software using <a href=\"synaptic.desktop\">Synaptic Package "
-"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
-"line</a>."
-msgstr "Bunun için Tails uygulamasını başlatırken kalıcı deponuzun kilidini açın ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
-msgid ""
-"To do so, create a persistent storage and install some software using <a "
-"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
-"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "Bunun için, kalıcı bir depo ekleyin ve <a href=\"synaptic.desktop\">Synaptic Paket Yöneticisi</a> ya da <a href=\"org.gnome.Terminal.desktop\">komut satırından APT kullanarak</a> başka yazılımlar kurun."
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
-msgid ""
-"To do so, install Tails on a USB stick using <a href=\"tails-"
-"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "Bunun için <a href=\"tails-installer.desktop\">Tails Kurucu </a>uygulamasını kullanarak bir Tails uygulamasını bir USB belleğe kurun ve kalıcı bir depo ekleyin. "
-
-#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
-msgid "[package not available]"
-msgstr "[paket kullanılamıyor]"
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
-msgid "Synchronizing the system's clock"
-msgstr "Sistem saati eşitleniyor "
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
-msgid ""
-"Tor needs an accurate clock to work properly, especially for Hidden "
-"Services. Please wait..."
-msgstr "Tor uygulamasının düzgün çalışabilmesi için saatin doğru olması önemlidir, özellikle Gizli Servisler için. Lütfen bekleyin..."
-
-#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
-msgid "Failed to synchronize the clock!"
-msgstr "Saat eşitlenemedi!"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
-msgid "Lock Screen"
-msgstr "Ekranı Kilitle"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
-msgid "Screen Locker"
-msgstr "Ekran Kilitleyici"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
-msgid "Set up a password to unlock the screen."
-msgstr "Ekran kilidini açmak için bir parola ayarlayın."
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
-msgid "Password"
-msgstr "Parola"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Onayla"
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
-msgid "This version of Tails has known security issues:"
-msgstr "Bu Tails sürümünde bilinen bazı güvenlik sorunları var: "
-
-#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
-msgid "Known security issues"
-msgstr "Bilinen güvenlik sorunları"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
-#, sh-format
-msgid "Network card ${nic} disabled"
-msgstr "${nic} ağ kartı devre dışı"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız bu yüzden geçici olarak devre dışı bırakıldı.\nTails'i yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
-msgid "All networking disabled"
-msgstr "Tüm ağ devre dışı"
-
-#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
-#, sh-format
-msgid ""
-"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
-"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "${nic_name} (${nic}) ağ kartı için MAC maskelemesi başarısız. Ayrıca bu hatanın kurtarılma girişimi de başarısız dolayısıyla tüm ağ devre dışı.\nTails uygulamasını yeniden başlatmanız ve MAC maskelemesini kapatmanız gerekebilir."
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
-msgid ""
-"\"<b>Not enough memory available to check for upgrades.</b>\n"
-"\n"
-"Make sure this system satisfies the requirements for running Tails.\n"
-"See file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n"
-"\n"
-"Try to restart Tails to check for upgrades again.\n"
-"\n"
-"Or do a manual upgrade.\n"
-"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>Güncellemeleri denetlemek için yeterli bellek yok.</b>\n\nSistemin Tails uygulamasını çalıştırmak için gereksinimleri karşıladığından emin olun.\nfile:///usr/share/doc/tails/website/doc/about/requirements.en.html dosyasına bakabilirsiniz\n\nGüncellemeleri yeniden denetlemek için Tails uygulamasını yeniden başlatmayı deneyin.\n\nYa da el ile güncellemeyi deneyin.\nAyrıntılı bilgi almak için https://tails.boum.org/doc/first_steps/upgrade#manual\" adresine bakabilirsiniz"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
-msgid "error:"
-msgstr "hata:"
-
-#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
-msgid "Error"
-msgstr "Hata"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
-msgid "Warning: virtual machine detected!"
-msgstr "Uyarı: Sanal makine algılandı!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
-msgid "Warning: non-free virtual machine detected!"
-msgstr "Uyarı: Özgür olmayan sanal makine algılandı!"
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
-msgid ""
-"Both the host operating system and the virtualization software are able to "
-"monitor what you are doing in Tails. Only free software can be considered "
-"trustworthy, for both the host operating system and the virtualization "
-"software."
-msgstr "Sunucu işletim sistemi ve sanallaştırma uygulaması Tails üzerinde yaptığınız işlemleri izler. Sunucu işletim sistemi ve sanallaştırma uygulaması için yalnızca özgür yazılımlar güvenilir olarak düşünülebilir."
-
-#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
-msgid "Learn more"
-msgstr "Ayrıntılı bilgi alın"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:43
-msgid "Tor is not ready"
-msgstr "Tor hazır değil"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:44
-msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor hazır değil. Gene de Tor Browser başlatılsın mı?"
-
-#: config/chroot_local-includes/usr/local/bin/tor-browser:45
-msgid "Start Tor Browser"
-msgstr "Tor Browser Başlatılsın"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
-msgid "Tor Status"
-msgstr "Tor Durumu"
-
-#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
-msgid "Open Onion Circuits"
-msgstr "Açık Onion Devreleri"
-
-#. Translators: Don't translate {volume_label} or {volume_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
-#, python-brace-format
-msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
-
-#. Translators: Don't translate {partition_name} or {partition_size},
-#. they are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
-#, python-brace-format
-msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
-
-#. Translators: Don't translate {volume_size}, it's a placeholder
-#. and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
-#, python-brace-format
-msgid "{volume_size} Volume"
-msgstr "{volume_size} Birim"
-
-#. Translators: Don't translate {volume_name}, it's a placeholder and
-#. will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
-#, python-brace-format
-msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Salt Okunur)"
-
-#. Translators: Don't translate {partition_name} and {container_path}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
-#, python-brace-format
-msgid "{partition_name} in {container_path}"
-msgstr "{container_path} içindeki {partition_name}"
-
-#. Translators: Don't translate {volume_name} and {path_to_file_container},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
-#, python-brace-format
-msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
-
-#. Translators: Don't translate {partition_name} and {drive_name}, they
-#. are placeholders and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
-#, python-brace-format
-msgid "{partition_name} on {drive_name}"
-msgstr "{drive_name} üzerindeki {partition_name}"
-
-#. Translators: Don't translate {volume_name} and {drive_name},
-#. they are placeholders and will be replaced. You should only have to
-#. translate
-#. this string if it makes sense to reverse the order of the placeholders.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
-#, python-brace-format
-msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
-msgid "Wrong passphrase or parameters"
-msgstr "Parola ya da parametreler hatalı"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
-msgid "Error unlocking volume"
-msgstr "Birim kilidi açılırken sorun çıktı"
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:228
-#, python-brace-format
-msgid ""
-"Couldn't unlock volume {volume_name}:\n"
-"{error_message}"
-msgstr "{volume_name} biriminin kilidi açılamadı:\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
-msgid "One or more applications are keeping the volume busy."
-msgstr "Bir ya da birkaç uygulama bu birimi meşgul ediyor."
-
-#. Translators: Don't translate {volume_name} or {error_message},
-#. they are placeholder and will be replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:336
-#, python-brace-format
-msgid ""
-"Couldn't lock volume {volume_name}:\n"
-"{error_message}"
-msgstr "Birim kilitlenemedi {volume_name}:\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
-msgid "Locking the volume failed"
-msgstr "Birim kilitlenemedi"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
-msgid "No file containers added"
-msgstr "Herhangi bir dosya kapsayıcısı eklenmedi"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
-msgid "No VeraCrypt devices detected"
-msgstr "Herhangi bir VeraCrypt aygıtı algılanamadı"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
-msgid "Unlock VeraCrypt Volumes"
-msgstr "VeraCrypt Birimlerinin Kilidini Aç"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
-msgid "Container already added"
-msgstr "Kapsayıcı zaten eklenmiş"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
-#, python-format
-msgid "The file container %s should already be listed."
-msgstr "%s kapsayıcısının zaten listede olması gerekir."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
-msgid "Container opened read-only"
-msgstr "Kapsayıcı salt okunur olarak açıldı"
-
-#. Translators: Don't translate {path}, it's a placeholder and will be
-#. replaced.
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:133
-#, python-brace-format
-msgid ""
-"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
-"{error_message}"
-msgstr "{path} dosya kapsayıcısı yazma izinleri ile açılamadı. Bu nedenle salt okunur olarak açıldı. Kapsayıcının içeriğini değiştiremeyeceksiniz.\n{error_message}"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
-msgid "Error opening file"
-msgstr "Dosya açılırken sorun çıktı"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
-msgid "Not a VeraCrypt container"
-msgstr "Bir VeraCrypt kapsayıcısı değil"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
-#, python-format
-msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "%s dosyası bir VeraCrypt kapsayıcısı gibi görünmüyor."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
-msgid "Failed to add container"
-msgstr "Kapsayıcı eklenemedi"
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
-#, python-format
-msgid ""
-"Could not add file container %s: Timeout while waiting for loop setup.\n"
-"Please try using the <i>Disks</i> application instead."
-msgstr "%s dosya kapsayıcısı eklenemedi: Çevrim kurulumu beklenirken zaman aşımı oluştu.\nLütfen bunun yerine <i>Diskler</i> uygulamasını kullanmayı deneyin."
-
-#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
-msgid "Choose File Container"
-msgstr "Dosya Kapsayıcısını Seçin"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
-msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Güvenli Olmayan Tarayıcıyı başlatmak istediğinize emin misiniz?"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
-msgid ""
-"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
-"use the Unsafe Browser if necessary, for example\\nif you have to login or "
-"register to activate your Internet connection."
-msgstr "Güvensiz Tarayıcı ile ağ etkinlikleriniz <b>anonim değildir</b>.\\nGüvensiz Tarayıcıyı yalnızca kullanmanız gerekiyorsa, örneğin\\nİnternet bağlantınızı etkinleştirmek için kaydolmanız ya da oturum açmanız gerekiyorsa kullanın."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
-msgid "Starting the Unsafe Browser..."
-msgstr "Güvenli Olmayan Tarayıcı başlatılıyor..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
-msgid "This may take a while, so please be patient."
-msgstr "Bu işlem biraz zaman alabilir, lütfen sabırlı olun."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
-msgid "Shutting down the Unsafe Browser..."
-msgstr "Güvenli Olmayan Tarayıcı kapatılıyor..."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
-msgid ""
-"This may take a while, and you may not restart the Unsafe Browser until it "
-"is properly shut down."
-msgstr "Bu işlem biraz zaman alabilir. Güvenli Olmayan Tarayıcı düzgün kapatılmadan yeniden başlatamayabilirsiniz."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
-msgid "Failed to restart Tor."
-msgstr "Tor yeniden başlatılamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
-msgid "Unsafe Browser"
-msgstr "Güvenli Olmayan Tarayıcı"
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
-msgid ""
-"Another Unsafe Browser is currently running, or being cleaned up. Please "
-"retry in a while."
-msgstr "Şu anda başka bir Güvenli Olmayan Tarayıcı çalışıyor ya da temizleniyor. Lütfen bir süre sonra yeniden deneyin."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
-msgid "Failed to setup chroot."
-msgstr "chroot kurulamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
-msgid "Failed to configure browser."
-msgstr "Tarayıcıyı ayarlanamadı."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
-msgid ""
-"No DNS server was obtained through DHCP or manually configured in "
-"NetworkManager."
-msgstr "DHCP aracılığıyla bir DNS sunucusu bulunamadı ya da AğYöneticisi içinde el ile ayarlanmış."
-
-#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
-msgid "Failed to run browser."
-msgstr "Tarayıcıyı çalıştırılamadı."
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
-msgid "Report an error"
-msgstr "Hata bildirin"
-
-#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
-msgid "Tails documentation"
-msgstr "Tails belgeleri"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
-msgid "Root Terminal"
-msgstr "Root Uçbirimi"
-
-#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
-msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Uçbirimi root kullanıcı ile açar. Parola sormak için gksu kullanır"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
-msgid "Learn how to use Tails"
-msgstr "Tails uygulamasını nasıl kullanacağınızı öğrenin"
-
-#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
-msgid "Learn more about Tails"
-msgstr "Tails hakkında ayrıntılı bilgi alın"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
-msgid "Tor Browser"
-msgstr "Tor Browser"
-
-#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
-msgid "Anonymous Web Browser"
-msgstr "Anonim Web Tarayıcısı"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
-msgid "Browse the World Wide Web without anonymity"
-msgstr "Web üzerinde anonim olmadan gez"
-
-#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
-msgid "Unsafe Web Browser"
-msgstr "Güvenli Olmayan Tarayıcı"
-
-#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
-msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "VeraCrypt ile şifrelenmiş dosya kapsayıcı ve aygıtlarını bağla"
-
-#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
-msgid ""
-"Configure the additional software installed from your persistent storage "
-"when starting Tails"
-msgstr "Tails başlatılırken otomatik olarak kalıcı depolama alanınızdan kurulacak ek yazılımları yapılandırın."
-
-#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
-msgid "Tails specific tools"
-msgstr "Özel Tails araçları"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
-msgid "To start a Root Terminal, you need to authenticate."
-msgstr "Bir Root Uç Birimi başlatmak için kimliğinizi doğrulamalısınız."
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
-msgid "Remove an additional software package"
-msgstr "Bir ek yazılım paketini kaldır"
-
-#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
-msgid ""
-"Authentication is required to remove a package from your additional software"
-" ($(command_line))"
-msgstr "Ek yazılımlarınızdan bir paket kaldırmak için kimlik doğrulaması gerekir ($(command_line))"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
-msgid "File Containers"
-msgstr "Dosya Kapsayıcıları"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
-msgid "_Add"
-msgstr "_Ekle"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
-msgid "Add a file container"
-msgstr "Bir dosya kapsayıcısı ekle"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
-msgid "Partitions and Drives"
-msgstr "Bölüm ve Sürücüler"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
-msgid ""
-"This application is not affiliated with or endorsed by the VeraCrypt project"
-" or IDRIX."
-msgstr "Bu uygulamanın VeraCrypt ya da IDRIX ile herhangi bir bağlantısı ve onlardan alınmış bir parçası yoktur."
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
-msgid "_Open"
-msgstr "_Aç"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
-msgid "Lock this volume"
-msgstr "Bu birimi kilitle"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
-msgid "_Unlock"
-msgstr "_Engellemeyi Kaldır"
-
-#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
-msgid "Detach this volume"
-msgstr "Bu birimin bağlantısını kes"
-
-#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
-msgid "TrueCrypt/VeraCrypt container"
-msgstr "TrueCrypt/VeraCrypt kapsayıcısı"
1
0

[translation/tails-misc] Update translations for tails-misc
by translation@torproject.org 24 Aug '19
by translation@torproject.org 24 Aug '19
24 Aug '19
commit ba8e28f76ce9cee976504c89d01c18cf0e9151d4
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Aug 24 02:20:12 2019 +0000
Update translations for tails-misc
---
ach.po | 330 ++++++++++++++++++++++++++++++--
af.po | 332 ++++++++++++++++++++++++++++++--
ar.po | 332 ++++++++++++++++++++++++++++++--
ast.po | 332 ++++++++++++++++++++++++++++++--
az.po | 332 ++++++++++++++++++++++++++++++--
be.po | 332 ++++++++++++++++++++++++++++++--
bg.po | 332 ++++++++++++++++++++++++++++++--
bn.po | 332 ++++++++++++++++++++++++++++++--
br.po | 332 ++++++++++++++++++++++++++++++--
bs.po | 332 ++++++++++++++++++++++++++++++--
ca.po | 332 ++++++++++++++++++++++++++++++--
cs.po | 332 ++++++++++++++++++++++++++++++--
cy.po | 332 ++++++++++++++++++++++++++++++--
da.po | 332 ++++++++++++++++++++++++++++++--
de.po | 332 ++++++++++++++++++++++++++++++--
el.po | 332 ++++++++++++++++++++++++++++++--
en_GB.po | 332 ++++++++++++++++++++++++++++++--
eo.po | 332 ++++++++++++++++++++++++++++++--
es.po | 332 ++++++++++++++++++++++++++++++--
es_AR.po | 332 ++++++++++++++++++++++++++++++--
es_MX.po | 332 ++++++++++++++++++++++++++++++--
et.po | 332 ++++++++++++++++++++++++++++++--
eu.po | 330 ++++++++++++++++++++++++++++++--
fa.po | 332 ++++++++++++++++++++++++++++++--
fi.po | 332 ++++++++++++++++++++++++++++++--
fr.po | 332 ++++++++++++++++++++++++++++++--
fy.po | 332 ++++++++++++++++++++++++++++++--
ga.po | 332 ++++++++++++++++++++++++++++++--
gd.po | 330 ++++++++++++++++++++++++++++++--
gl.po | 332 ++++++++++++++++++++++++++++++--
gu.po | 332 ++++++++++++++++++++++++++++++--
he.po | 332 ++++++++++++++++++++++++++++++--
hi.po | 332 ++++++++++++++++++++++++++++++--
hr.po | 332 ++++++++++++++++++++++++++++++--
hu.po | 332 ++++++++++++++++++++++++++++++--
hy.po | 332 ++++++++++++++++++++++++++++++--
id.po | 332 ++++++++++++++++++++++++++++++--
is.po | 332 ++++++++++++++++++++++++++++++--
it.po | 332 ++++++++++++++++++++++++++++++--
ja.po | 332 ++++++++++++++++++++++++++++++--
ka.po | 332 ++++++++++++++++++++++++++++++--
kab.po | 332 ++++++++++++++++++++++++++++++--
kk.po | 332 ++++++++++++++++++++++++++++++--
km.po | 332 ++++++++++++++++++++++++++++++--
kn.po | 332 ++++++++++++++++++++++++++++++--
ko.po | 332 ++++++++++++++++++++++++++++++--
lt.po | 332 ++++++++++++++++++++++++++++++--
lv.po | 332 ++++++++++++++++++++++++++++++--
mk.po | 330 ++++++++++++++++++++++++++++++--
ml.po | 332 ++++++++++++++++++++++++++++++--
mr.po | 332 ++++++++++++++++++++++++++++++--
ms_MY.po | 330 ++++++++++++++++++++++++++++++--
my.po | 332 ++++++++++++++++++++++++++++++--
nb.po | 332 ++++++++++++++++++++++++++++++--
ne.po | 332 ++++++++++++++++++++++++++++++--
nl.po | 332 ++++++++++++++++++++++++++++++--
nl_BE.po | 332 ++++++++++++++++++++++++++++++--
nn.po | 332 ++++++++++++++++++++++++++++++--
oc.po | 332 ++++++++++++++++++++++++++++++--
or.po | 332 ++++++++++++++++++++++++++++++--
pa.po | 332 ++++++++++++++++++++++++++++++--
pl.po | 332 ++++++++++++++++++++++++++++++--
pt_BR.po | 332 ++++++++++++++++++++++++++++++--
pt_PT.po | 332 ++++++++++++++++++++++++++++++--
ro.po | 332 ++++++++++++++++++++++++++++++--
ru.po | 332 ++++++++++++++++++++++++++++++--
si_LK.po | 332 ++++++++++++++++++++++++++++++--
sk.po | 330 ++++++++++++++++++++++++++++++--
sl.po | 332 ++++++++++++++++++++++++++++++--
son.po | 332 ++++++++++++++++++++++++++++++--
sq.po | 332 ++++++++++++++++++++++++++++++--
sr.po | 330 ++++++++++++++++++++++++++++++--
sv.po | 332 ++++++++++++++++++++++++++++++--
sw.po | 332 ++++++++++++++++++++++++++++++--
ta.po | 332 ++++++++++++++++++++++++++++++--
tails.pot | 636 ++++++++++++++++++++++++++++++++++++++++++++++----------------
te.po | 332 ++++++++++++++++++++++++++++++--
th.po | 332 ++++++++++++++++++++++++++++++--
tr.po | 332 ++++++++++++++++++++++++++++++--
uk.po | 332 ++++++++++++++++++++++++++++++--
ur.po | 332 ++++++++++++++++++++++++++++++--
uz.po | 332 ++++++++++++++++++++++++++++++--
vi.po | 332 ++++++++++++++++++++++++++++++--
zh_CN.po | 332 ++++++++++++++++++++++++++++++--
zh_HK.po | 332 ++++++++++++++++++++++++++++++--
zh_TW.po | 332 ++++++++++++++++++++++++++++++--
86 files changed, 27579 insertions(+), 1263 deletions(-)
diff --git a/ach.po b/ach.po
index ae380c925..1ca50e18b 100644
--- a/ach.po
+++ b/ach.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Acoli (http://www.transifex.com/otf/torproject/language/ach/)\n"
"MIME-Version: 1.0\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/af.po b/af.po
index 699d3371d..3131fa0fb 100644
--- a/af.po
+++ b/af.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Afrikaans (http://www.transifex.com/otf/torproject/language/af/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ar.po b/ar.po
index 1a3e6b397..df546b950 100644
--- a/ar.po
+++ b/ar.po
@@ -31,9 +31,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: محيي الدين <tx99h4(a)hotmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Martus Translations <translations(a)martus.org>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,6 +120,322 @@ msgstr "_Launch"
msgid "_Exit"
msgstr "_Exit"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -294,12 +610,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -424,10 +734,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "هذه النسخة من تيلز تحتوي مشاكل أمنية:"
diff --git a/ast.po b/ast.po
index 900f0ac4b..b1d74315d 100644
--- a/ast.po
+++ b/ast.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Asturian (http://www.transifex.com/otf/torproject/language/ast/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/az.po b/az.po
index b5d4e3733..79be04451 100644
--- a/az.po
+++ b/az.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Azerbaijani (http://www.transifex.com/otf/torproject/language/az/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/be.po b/be.po
index f7a1e1125..ef0f91ab0 100644
--- a/be.po
+++ b/be.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Belarusian (http://www.transifex.com/otf/torproject/language/be/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bg.po b/bg.po
index a097db556..95ed9aeae 100644
--- a/bg.po
+++ b/bg.po
@@ -19,9 +19,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Bulgarian (http://www.transifex.com/otf/torproject/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -108,6 +108,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -282,12 +598,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -412,10 +722,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bn.po b/bn.po
index 939fdec03..883707614 100644
--- a/bn.po
+++ b/bn.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Al Shahrior Hasan Sagor <shahrior3814(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Bengali (http://www.transifex.com/otf/torproject/language/bn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/br.po b/br.po
index dda44e39c..9dbe1a117 100644
--- a/br.po
+++ b/br.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Breton (http://www.transifex.com/otf/torproject/language/br/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/bs.po b/bs.po
index 865eb1f14..7b6b8b0b2 100644
--- a/bs.po
+++ b/bs.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Mersad Avdic <mersad.developer(a)gmail.com>\n"
"Language-Team: Bosnian (http://www.transifex.com/otf/torproject/language/bs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ca.po b/ca.po
index 63114823b..d40c5e05a 100644
--- a/ca.po
+++ b/ca.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 20:59+0000\n"
-"Last-Translator: Benny Beat <bennybeat(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Catalan (http://www.transifex.com/otf/torproject/language/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr "_Executa"
msgid "_Exit"
msgstr "_Surt"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancel·la"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancel·la"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -417,10 +727,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Aquesta versió de Tails té problemes de seguretat coneguts:"
diff --git a/cs.po b/cs.po
index 349b3a4d0..b3d828c06 100644
--- a/cs.po
+++ b/cs.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: multiflexi <multi.flexi(a)seznam.cz>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Czech (http://www.transifex.com/otf/torproject/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr "_Spustit"
msgid "_Exit"
msgstr "_Odejít"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Zrušit"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tato verze Tails obsahuje následující bezpečnostní problémy:"
diff --git a/cy.po b/cy.po
index bea8f36b3..08103ded6 100644
--- a/cy.po
+++ b/cy.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Welsh (http://www.transifex.com/otf/torproject/language/cy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/da.po b/da.po
index acc97a2f7..85a306c4a 100644
--- a/da.po
+++ b/da.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-18 17:41+0000\n"
-"Last-Translator: scootergrisen\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Danish (http://www.transifex.com/otf/torproject/language/da/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/de.po b/de.po
index e87121414..5b84491d0 100644
--- a/de.po
+++ b/de.po
@@ -36,9 +36,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 13:45+0000\n"
-"Last-Translator: try once\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: German (http://www.transifex.com/otf/torproject/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -125,6 +125,322 @@ msgstr "_Start"
msgid "_Exit"
msgstr "_Beenden"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Abbrechen"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Bestätigen"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -299,12 +615,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Abbrechen"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -429,10 +739,6 @@ msgstr ""
msgid "Password"
msgstr "Passwort"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Bestätigen"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Diese Tails-Version weist Sicherheitslücken auf:"
diff --git a/el.po b/el.po
index e351985ad..305dee57b 100644
--- a/el.po
+++ b/el.po
@@ -28,9 +28,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Elektra M. <safiragon(a)yahoo.gr>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Greek (http://www.transifex.com/otf/torproject/language/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -117,6 +117,322 @@ msgstr "_Εκκίνηση"
msgid "_Exit"
msgstr "_Έξοδος"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Επιβεβαίωση"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -291,12 +607,6 @@ msgstr "Αυτό θα σταματήσει την εγκατάσταση των
msgid "Remove"
msgstr "Απομάκρυνση"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -421,10 +731,6 @@ msgstr ""
msgid "Password"
msgstr "Κωδικός ασφαλείας"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Επιβεβαίωση"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/en_GB.po b/en_GB.po
index ed9202331..3ca8dccca 100644
--- a/en_GB.po
+++ b/en_GB.po
@@ -11,9 +11,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Andi Chandler <andi(a)gowling.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/otf/torproject/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/eo.po b/eo.po
index 7df4986c2..bab2a4c69 100644
--- a/eo.po
+++ b/eo.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Esperanto (http://www.transifex.com/otf/torproject/language/eo/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/es.po b/es.po
index 9339a5c84..3eacfa573 100644
--- a/es.po
+++ b/es.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-17 11:03+0000\n"
-"Last-Translator: Emma Peel\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (http://www.transifex.com/otf/torproject/language/es/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -106,6 +106,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Salir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -280,12 +596,6 @@ msgstr "Esto parará la instalación de {packages} de forma automática."
msgid "Remove"
msgstr "Eliminar"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando tu software adicional desde el almacenamiento persistente..."
@@ -410,10 +720,6 @@ msgstr "Establece una contraseña para desbloquear la pantalla"
msgid "Password"
msgstr "Contraseña"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versión de Tails tiene problemas de seguridad conocidos:"
diff --git a/es_AR.po b/es_AR.po
index ae7a185e3..0bd9cfbe9 100644
--- a/es_AR.po
+++ b/es_AR.po
@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Zuhualime Akoochimoya\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (Argentina) (http://www.transifex.com/otf/torproject/language/es_AR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -102,6 +102,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Salir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -276,12 +592,6 @@ msgstr "Esto detendrá la instalación de {packages} automáticamente."
msgid "Remove"
msgstr "Remover"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Instalando tus programas adicionales desde almacenamiento persistente..."
@@ -406,10 +716,6 @@ msgstr "Definí una contraseña para desbloquear la pantalla."
msgid "Password"
msgstr "Contraseña"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versión de Tails tiene problemas de seguridad conocidos:"
diff --git a/es_MX.po b/es_MX.po
index 6b23925bc..5a5b800e7 100644
--- a/es_MX.po
+++ b/es_MX.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Spanish (Mexico) (http://www.transifex.com/otf/torproject/language/es_MX/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/et.po b/et.po
index 33f0424cb..82c2c237f 100644
--- a/et.po
+++ b/et.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Estonian (http://www.transifex.com/otf/torproject/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/eu.po b/eu.po
index e9024c8ef..44bd398f5 100644
--- a/eu.po
+++ b/eu.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Radiation Gamma\n"
"Language-Team: Basque (http://www.transifex.com/otf/torproject/language/eu/)\n"
"MIME-Version: 1.0\n"
@@ -103,6 +103,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/fa.po b/fa.po
index 0ef5bf687..2000c5b29 100644
--- a/fa.po
+++ b/fa.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Mehrad Rousta <mehrad77(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Persian (http://www.transifex.com/otf/torproject/language/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +122,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -296,12 +612,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -426,10 +736,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/fi.po b/fi.po
index 85d4d52bd..d5cd5c43d 100644
--- a/fi.po
+++ b/fi.po
@@ -17,9 +17,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Mikko Ilmonen <mikko(a)5x.fi>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Mikko Päivärinta <paivarinta.mikko.o(a)gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/otf/torproject/language/fi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -106,6 +106,322 @@ msgstr "_Käynnistä"
msgid "_Exit"
msgstr "_Lopeta"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Peruuta"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -280,12 +596,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Peruuta"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -410,10 +720,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tässä Tails-versiossa on tunnettuja turvallisuusriskejä:"
diff --git a/fr.po b/fr.po
index 4c604bf61..b76571e36 100644
--- a/fr.po
+++ b/fr.po
@@ -39,9 +39,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 13:10+0000\n"
-"Last-Translator: AO <ao(a)localizationlab.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: French (http://www.transifex.com/otf/torproject/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -128,6 +128,322 @@ msgstr "_Lancer"
msgid "_Exit"
msgstr "_Quitter"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Annuler"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmer"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -302,12 +618,6 @@ msgstr "Cela devrait stopper l’installation automatique de {packages}."
msgid "Remove"
msgstr "Enlever"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Annuler"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installation de vos logiciels additionnels depuis le stockage persistant..."
@@ -432,10 +742,6 @@ msgstr "Définir un mot de passe pour déverrouiller l’écran"
msgid "Password"
msgstr "Mot de passe"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmer"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Cette version de Tails a des problèmes de sécurité connus :"
diff --git a/fy.po b/fy.po
index 34c99ba42..e336ee75a 100644
--- a/fy.po
+++ b/fy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Western Frisian (http://www.transifex.com/otf/torproject/language/fy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ga.po b/ga.po
index 04bbd601b..98b49bbdf 100644
--- a/ga.po
+++ b/ga.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Kevin Scannell <kscanne(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Irish (http://www.transifex.com/otf/torproject/language/ga/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr "_Tosaigh"
msgid "_Exit"
msgstr "_Scoir"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cealaigh"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Deimhnigh"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr "Ní shuiteálfar {packages} go huathoibríoch a thuilleadh."
msgid "Remove"
msgstr "Bain"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cealaigh"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Bogearraí breise á suiteáil ón stóras seasmhach..."
@@ -402,10 +712,6 @@ msgstr "Socraigh focal faire chun an scáileán a dhíghlasáil."
msgid "Password"
msgstr "Focal faire"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Deimhnigh"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Tá fadhbanna slándála sa leagan seo de Tails:"
diff --git a/gd.po b/gd.po
index b51c0fdb8..e13788de2 100644
--- a/gd.po
+++ b/gd.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Gaelic, Scottish (http://www.transifex.com/otf/torproject/language/gd/)\n"
"MIME-Version: 1.0\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/gl.po b/gl.po
index 466e37000..d48170921 100644
--- a/gl.po
+++ b/gl.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Galician (http://www.transifex.com/otf/torproject/language/gl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/gu.po b/gu.po
index 39c84d42e..37817f2bd 100644
--- a/gu.po
+++ b/gu.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Michael Hathi <numerativetech(a)gmail.com>\n"
"Language-Team: Gujarati (http://www.transifex.com/otf/torproject/language/gu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/he.po b/he.po
index 9d5998a3f..5f1018b2f 100644
--- a/he.po
+++ b/he.po
@@ -14,9 +14,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 19:56+0000\n"
-"Last-Translator: ION\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hebrew (http://www.transifex.com/otf/torproject/language/he/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -103,6 +103,322 @@ msgstr "_הפעל"
msgid "_Exit"
msgstr "_צא"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "בטל"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "אשר"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "בטל"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr "קבע סיסמה לביטול נעילת המסך."
msgid "Password"
msgstr "סיסמה"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "אשר"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "לגרסה זו של Tails יש סוגיות אבטחה ידועות:"
diff --git a/hi.po b/hi.po
index 510417975..c31e1a5e3 100644
--- a/hi.po
+++ b/hi.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hindi (http://www.transifex.com/otf/torproject/language/hi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/hr.po b/hr.po
index 9d4cbe495..3a8dcda1b 100644
--- a/hr.po
+++ b/hr.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Ljubo Šimić <aske777(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Croatian (http://www.transifex.com/otf/torproject/language/hr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/hu.po b/hu.po
index e20bdaacd..633c0fccf 100644
--- a/hu.po
+++ b/hu.po
@@ -16,9 +16,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: vargaviktor <viktor.varga(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Hungarian (http://www.transifex.com/otf/torproject/language/hu/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -105,6 +105,322 @@ msgstr "_Indítás"
msgid "_Exit"
msgstr "_Kilépés"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Mégse"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Megerősít"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -279,12 +595,6 @@ msgstr "Ez leállítja a(z) {packages} csomagok automatikus telepítését."
msgid "Remove"
msgstr "Eltávolít"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Mégse"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "A további szoftvere telepítése a perzisztens tárolóból..."
@@ -409,10 +719,6 @@ msgstr "Adjon meg jelszót a képernyő feloldáshoz."
msgid "Password"
msgstr "Jelszó"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Megerősít"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "A Tails ezen verziója ismert biztonsági problémákkal rendelkezik:"
diff --git a/hy.po b/hy.po
index e497c6332..83c3c8290 100644
--- a/hy.po
+++ b/hy.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Armenian (http://www.transifex.com/otf/torproject/language/hy/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/id.po b/id.po
index e83ad8773..d71081cf0 100644
--- a/id.po
+++ b/id.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: ical\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Indonesian (http://www.transifex.com/otf/torproject/language/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr "_Luncurkan"
msgid "_Exit"
msgstr "_Keluar"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/is.po b/is.po
index ad6eb16ac..823907797 100644
--- a/is.po
+++ b/is.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Sveinn í Felli <sv1(a)fellsnet.is>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Icelandic (http://www.transifex.com/otf/torproject/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/it.po b/it.po
index 39cca5ac9..764f57127 100644
--- a/it.po
+++ b/it.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-21 17:53+0000\n"
-"Last-Translator: Davide Sant <spuuu(a)outlook.it>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Italian (http://www.transifex.com/otf/torproject/language/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -121,6 +121,322 @@ msgstr "_Avvia"
msgid "_Exit"
msgstr "_Esci"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Annulla"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Conferma"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -295,12 +611,6 @@ msgstr "Ciò eviterà l'installazione automatica di {packages}."
msgid "Remove"
msgstr "Rimuovi"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Annulla"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installazione del software aggiuntivo dall'archivio persistente..."
@@ -425,10 +735,6 @@ msgstr "Imposta una password per sbloccare lo schermo."
msgid "Password"
msgstr "Password"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Conferma"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Questa versione di Tails ha problemi di sicurezza noti:"
diff --git a/ja.po b/ja.po
index cf3627a7b..ab1b762f7 100644
--- a/ja.po
+++ b/ja.po
@@ -26,9 +26,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Naofumi <naofum(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Japanese (http://www.transifex.com/otf/torproject/language/ja/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -115,6 +115,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -289,12 +605,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -419,10 +729,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ka.po b/ka.po
index d61112a4c..920136210 100644
--- a/ka.po
+++ b/ka.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-16 01:20+0000\n"
-"Last-Translator: Georgianization\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Georgian (http://www.transifex.com/otf/torproject/language/ka/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/kab.po b/kab.po
index a0bf38d4f..705ac841c 100644
--- a/kab.po
+++ b/kab.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2013-07-25 09:07+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
+"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: Kabyle (http://www.transifex.com/otf/torproject/language/kab/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/kk.po b/kk.po
index d081bd823..54ef54a31 100644
--- a/kk.po
+++ b/kk.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Dinmuhamed Esengeldi <esengeldi0202(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Kazakh (http://www.transifex.com/otf/torproject/language/kk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/km.po b/km.po
index 76bd8e0d2..1ab2b6727 100644
--- a/km.po
+++ b/km.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Moses Ngeth\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Ty Sok <sokty2(a)gmail.com>\n"
"Language-Team: Khmer (http://www.transifex.com/otf/torproject/language/km/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr "ចាប់ផ្ដើម"
msgid "_Exit"
msgstr "ចេញ"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "បោះបង់"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "បោះបង់"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "កំណែរបស់ Tails នេះគឺស្គាល់បញ្ហាសុវត្ថិភាព៖"
diff --git a/kn.po b/kn.po
index 14ea193bd..d8a8522bf 100644
--- a/kn.po
+++ b/kn.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Kannada (http://www.transifex.com/otf/torproject/language/kn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ko.po b/ko.po
index 380225e5c..3bf183e21 100644
--- a/ko.po
+++ b/ko.po
@@ -15,9 +15,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Harry Cha <diamondphonix(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Korean (http://www.transifex.com/otf/torproject/language/ko/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -104,6 +104,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -278,12 +594,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -408,10 +718,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/lt.po b/lt.po
index 6d9dc0d16..8609a1e61 100644
--- a/lt.po
+++ b/lt.po
@@ -10,9 +10,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 18:23+0000\n"
-"Last-Translator: Moo\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Lithuanian (http://www.transifex.com/otf/torproject/language/lt/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -99,6 +99,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Atsisakyti"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Patvirtinkite"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -273,12 +589,6 @@ msgstr ""
msgid "Remove"
msgstr "Šalinti"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Atsisakyti"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -403,10 +713,6 @@ msgstr "Nusistatykite slaptažodį ekrano atrakinimui."
msgid "Password"
msgstr "Slaptažodis"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Patvirtinkite"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Šioje Tails versijoje yra žinomos saugumo problemos:"
diff --git a/lv.po b/lv.po
index a3375e68d..a51068bf2 100644
--- a/lv.po
+++ b/lv.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Latvian (http://www.transifex.com/otf/torproject/language/lv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/mk.po b/mk.po
index a3f968fb3..8a9f0140e 100644
--- a/mk.po
+++ b/mk.po
@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 18:33+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Matej Plavevski <matej.plavevski+github(a)gmail.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/otf/torproject/language/mk/)\n"
"MIME-Version: 1.0\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ml.po b/ml.po
index b6a1f8e61..fd6663e78 100644
--- a/ml.po
+++ b/ml.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Malayalam (http://www.transifex.com/otf/torproject/language/ml/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/mr.po b/mr.po
index 6a421c530..db14bf301 100644
--- a/mr.po
+++ b/mr.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Marathi (http://www.transifex.com/otf/torproject/language/mr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ms_MY.po b/ms_MY.po
index d04c357a9..290089d47 100644
--- a/ms_MY.po
+++ b/ms_MY.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: abuyop <abuyop(a)gmail.com>\n"
"Language-Team: Malay (Malaysia) (http://www.transifex.com/otf/torproject/language/ms_MY/)\n"
"MIME-Version: 1.0\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/my.po b/my.po
index 5ecb57c2e..39c8dde56 100644
--- a/my.po
+++ b/my.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Burmese (http://www.transifex.com/otf/torproject/language/my/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nb.po b/nb.po
index 29b05ed55..e1a74249e 100644
--- a/nb.po
+++ b/nb.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Jørgen Moen Isaksen <klokkefriken2(a)protonmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/otf/torproject/language/nb/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ne.po b/ne.po
index db49340c9..86cf3371a 100644
--- a/ne.po
+++ b/ne.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Nepali (http://www.transifex.com/otf/torproject/language/ne/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nl.po b/nl.po
index 71b219a10..be90f8c54 100644
--- a/nl.po
+++ b/nl.po
@@ -33,9 +33,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Tonnes <tonnes.mb(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Dutch (http://www.transifex.com/otf/torproject/language/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +122,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -296,12 +612,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -426,10 +736,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nl_BE.po b/nl_BE.po
index 516f8cdfa..169b6c50e 100644
--- a/nl_BE.po
+++ b/nl_BE.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Dutch (Belgium) (http://www.transifex.com/otf/torproject/language/nl_BE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/nn.po b/nn.po
index 4bfee1fbd..d2c496bc6 100644
--- a/nn.po
+++ b/nn.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Norwegian Nynorsk (http://www.transifex.com/otf/torproject/language/nn/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/oc.po b/oc.po
index b9b84dfe9..35affdaef 100644
--- a/oc.po
+++ b/oc.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Cédric Valmary <cvalmary(a)yahoo.fr>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Occitan (post 1500) (http://www.transifex.com/otf/torproject/language/oc/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/or.po b/or.po
index dd6ae212e..b99f058ce 100644
--- a/or.po
+++ b/or.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Oriya (http://www.transifex.com/otf/torproject/language/or/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pa.po b/pa.po
index 79fd6c7e3..5f5ecc3f8 100644
--- a/pa.po
+++ b/pa.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/otf/torproject/language/pa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pl.po b/pl.po
index 35f9f8426..2451b1db1 100644
--- a/pl.po
+++ b/pl.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Marcin Januchta <marcin.januchta(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Polish (http://www.transifex.com/otf/torproject/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -417,10 +727,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/pt_BR.po b/pt_BR.po
index 1a9cc0b79..5861ff345 100644
--- a/pt_BR.po
+++ b/pt_BR.po
@@ -32,9 +32,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-13 17:41+0000\n"
-"Last-Translator: Eduardo Addad de Oliveira <eduardoaddad(a)hotmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/otf/torproject/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -121,6 +121,322 @@ msgstr "_Lançar"
msgid "_Exit"
msgstr "_Saída"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmar"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -295,12 +611,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -425,10 +735,6 @@ msgstr ""
msgid "Password"
msgstr "Senha"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmar"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versão do Tails tem problemas de segurança conhecidos:"
diff --git a/pt_PT.po b/pt_PT.po
index e36877c0d..38048c30f 100644
--- a/pt_PT.po
+++ b/pt_PT.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-21 13:20+0000\n"
-"Last-Translator: Hugo9191 <hugoncosta(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Rui <xymarior(a)yandex.com>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/otf/torproject/language/pt_PT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr "_Iniciar"
msgid "_Exit"
msgstr "_Sair"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Cancelar"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancelar"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Esta versão do Tails tem alguns problemas de segurança conhecidos:"
diff --git a/ro.po b/ro.po
index 768ba2f69..b94f7d819 100644
--- a/ro.po
+++ b/ro.po
@@ -25,9 +25,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: A C <ana(a)shiftout.net>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Romanian (http://www.transifex.com/otf/torproject/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -114,6 +114,322 @@ msgstr "_Lansare"
msgid "_Exit"
msgstr "_Iesire"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Anulare"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Confirmă"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -288,12 +604,6 @@ msgstr "Acest lucru va opri instalarea {packages} în mod automat."
msgid "Remove"
msgstr "Eliminare"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Anulare"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Se instalează aplicațiile dumneavoastră adiționale din stocarea persistentă..."
@@ -418,10 +728,6 @@ msgstr "Setați o parolă pentru a debloca ecranul."
msgid "Password"
msgstr "Parola"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirmă"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Această versiune Tails are probleme de securitate cunoscute:"
diff --git a/ru.po b/ru.po
index a86f2e550..b1bc25925 100644
--- a/ru.po
+++ b/ru.po
@@ -37,9 +37,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Imran Aliyev <mr.imranaliyev(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Russian (http://www.transifex.com/otf/torproject/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -126,6 +126,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -300,12 +616,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -430,10 +740,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/si_LK.po b/si_LK.po
index cabf5d2c8..f0ae3ed8d 100644
--- a/si_LK.po
+++ b/si_LK.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/otf/torproject/language/si_LK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sk.po b/sk.po
index b3f3e349e..526d06bdf 100644
--- a/sk.po
+++ b/sk.po
@@ -14,8 +14,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Marek Čápek <capek.marek(a)gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/otf/torproject/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -103,6 +103,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -277,12 +593,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -407,10 +717,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sl.po b/sl.po
index 859acd4d5..12a19e07d 100644
--- a/sl.po
+++ b/sl.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Slovenian (http://www.transifex.com/otf/torproject/language/sl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/son.po b/son.po
index 6f52f693d..6ba0fddd3 100644
--- a/son.po
+++ b/son.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Songhay (http://www.transifex.com/otf/torproject/language/son/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sq.po b/sq.po
index 3b938f1b2..5d819e104 100644
--- a/sq.po
+++ b/sq.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Bujar Tafili\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Vili Suli\n"
"Language-Team: Albanian (http://www.transifex.com/otf/torproject/language/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sr.po b/sr.po
index 5cc48f378..ca8287071 100644
--- a/sr.po
+++ b/sr.po
@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
"Last-Translator: Aleksa Ristić\n"
"Language-Team: Serbian (http://www.transifex.com/otf/torproject/language/sr/)\n"
"MIME-Version: 1.0\n"
@@ -100,6 +100,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -274,12 +590,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -404,10 +714,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/sv.po b/sv.po
index 03c1d79ff..2e98573ac 100644
--- a/sv.po
+++ b/sv.po
@@ -24,9 +24,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Jonatan Nyberg\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Swedish (http://www.transifex.com/otf/torproject/language/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -113,6 +113,322 @@ msgstr "_Starta"
msgid "_Exit"
msgstr "_Avsluta"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "Avbryt"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Bekräfta"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -287,12 +603,6 @@ msgstr "Detta kommer att sluta installera {packages} automatiskt."
msgid "Remove"
msgstr "Ta bort"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Avbryt"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Installera dina extra program från bestående lagring..."
@@ -417,10 +727,6 @@ msgstr "Ställ in ett lösenord för att låsa upp skärmen."
msgid "Password"
msgstr "Lösenord"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Bekräfta"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Det finns kända säkerhetsproblem i den här Tails versionen:"
diff --git a/sw.po b/sw.po
index 80a6d838a..bf4e96ba7 100644
--- a/sw.po
+++ b/sw.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: Zaituni Njovu <zaituni(a)zainafoundationtz.org>\n"
"Language-Team: Swahili (http://www.transifex.com/otf/torproject/language/sw/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ta.po b/ta.po
index 9cc17a18a..721bbcabe 100644
--- a/ta.po
+++ b/ta.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Tamil (http://www.transifex.com/otf/torproject/language/ta/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/tails.pot b/tails.pot
index 0bc3178b1..66f476226 100644
--- a/tails.pot
+++ b/tails.pot
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:10+0000\n"
"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
"Language-Team: English (http://www.transifex.com/otf/torproject/language/en/)\n"
"MIME-Version: 1.0\n"
@@ -19,11 +19,11 @@ msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:39
msgid "Tor is ready"
-msgstr "Tor is ready"
+msgstr ""
#: config/chroot_local-includes/etc/NetworkManager/dispatcher.d/60-tor-ready.sh:40
msgid "You can now access the Internet."
-msgstr "You can now access the Internet."
+msgstr ""
#: config/chroot_local-includes/etc/whisperback/config.py:69
#, python-format
@@ -40,24 +40,24 @@ msgid ""
"an opportunity for eavesdroppers, like your email or Internet provider, to\n"
"confirm that you are using Tails.\n"
"</p>\n"
-msgstr "<h1>Help us fix your bug!</h1>\n<p>Read <a href=\"%s\">our bug reporting instructions</a>.</p>\n<p><strong>Do not include more personal information than\nneeded!</strong></p>\n<h2>About giving us an email address</h2>\n<p>\nGiving us an email address allows us to contact you to clarify the problem. This\nis needed for the vast majority of the reports we receive as most reports\nwithout any contact information are useless. On the other hand it also provides\nan opportunity for eavesdroppers, like your email or Internet provider, to\nconfirm that you are using Tails.\n</p>\n"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:8
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:1
msgid "Additional Software"
-msgstr "Additional Software"
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:51
msgid ""
"You can install additional software automatically from your persistent "
"storage when starting Tails."
-msgstr "You can install additional software automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:77
msgid ""
"The following software is installed automatically from your persistent "
"storage when starting Tails."
-msgstr "The following software is installed automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:135
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:171
@@ -65,36 +65,352 @@ msgid ""
"To add more, install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To add more, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/share/tails/additional-software/configuration-window.ui:154
msgid "_Create persistent storage"
-msgstr "_Create persistent storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:57
msgid "Persistence is disabled for Electrum"
-msgstr "Persistence is disabled for Electrum"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:59
msgid ""
"When you reboot Tails, all of Electrum's data will be lost, including your "
"Bitcoin wallet. It is strongly recommended to only run Electrum when its "
"persistence feature is activated."
-msgstr "When you reboot Tails, all of Electrum's data will be lost, including your Bitcoin wallet. It is strongly recommended to only run Electrum when its persistence feature is activated."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:60
msgid "Do you want to start Electrum anyway?"
-msgstr "Do you want to start Electrum anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:63
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:41
msgid "_Launch"
-msgstr "_Launch"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/electrum:64
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:42
msgid "_Exit"
-msgstr "_Exit"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
@@ -106,60 +422,60 @@ msgid ""
"<i>${filename}</i>\n"
"\n"
"Renaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
-msgstr "<b><big>Do you want to rename your <i>KeePassXC</i> database?</big></b>\n\nYou have a <i>KeePassXC</i> database in your <i>Persistent</i> folder:\n\n<i>${filename}</i>\n\nRenaming it to <i>keepassx.kdbx</i> would allow <i>KeePassXC</i> to open it automatically in the future."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:23
msgid "Rename"
-msgstr "Rename"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/keepassxc:24
msgid "Keep current name"
-msgstr "Keep current name"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/replace-su-with-sudo:21
msgid "su is disabled. Please use sudo instead."
-msgstr "su is disabled. Please use sudo instead."
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:75
msgid "Lock screen"
-msgstr "Lock screen"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:79
msgid "Suspend"
-msgstr "Suspend"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:83
msgid "Restart"
-msgstr "Restart"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/status-menu-helper@tails.boum.org/extension.js:87
msgid "Power Off"
-msgstr "Power Off"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:22
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:1
msgid "Tails"
-msgstr "Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:25
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:1
msgid "About Tails"
-msgstr "About Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:35
msgid "The Amnesic Incognito Live System"
-msgstr "The Amnesic Incognito Live System"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:36
#, python-format
msgid ""
"Build information:\n"
"%s"
-msgstr "Build information:\n%s"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-about:54
msgid "not available"
-msgstr "not available"
+msgstr ""
#. Translators: Don't translate {details}, it's a placeholder and will
#. be replaced.
@@ -168,32 +484,32 @@ msgstr "not available"
msgid ""
"{details} Please check your list of additional software or read the system "
"log to understand the problem."
-msgstr "{details} Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:153
msgid ""
"Please check your list of additional software or read the system log to "
"understand the problem."
-msgstr "Please check your list of additional software or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Show Log"
-msgstr "Show Log"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:157
msgid "Configure"
-msgstr "Configure"
+msgstr ""
#. Translators: Don't translate {beginning} or {last}, they are
#. placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:223
#, python-brace-format
msgid "{beginning} and {last}"
-msgstr "{beginning} and {last}"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:224
msgid ", "
-msgstr ", "
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will
#. be replaced.
@@ -201,115 +517,109 @@ msgstr ", "
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:320
#, python-brace-format
msgid "Add {packages} to your additional software?"
-msgstr "Add {packages} to your additional software?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:292
msgid ""
"To install it automatically from your persistent storage when starting "
"Tails."
-msgstr "To install it automatically from your persistent storage when starting Tails."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:294
msgid "Install Every Time"
-msgstr "Install Every Time"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:295
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:326
msgid "Install Only Once"
-msgstr "Install Only Once"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:301
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:331
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:372
msgid "The configuration of your additional software failed."
-msgstr "The configuration of your additional software failed."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:322
msgid ""
"To install it automatically when starting Tails, you can create a persistent"
" storage and activate the <b>Additional Software</b> feature."
-msgstr "To install it automatically when starting Tails, you can create a persistent storage and activate the <b>Additional Software</b> feature."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:325
msgid "Create Persistent Storage"
-msgstr "Create Persistent Storage"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:333
msgid "Creating your persistent storage failed."
-msgstr "Creating your persistent storage failed."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:342
#, python-brace-format
msgid "You could install {packages} automatically when starting Tails"
-msgstr "You could install {packages} automatically when starting Tails"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:345
msgid ""
"To do so, you need to run Tails from a USB stick installed using <i>Tails "
"Installer</i>."
-msgstr "To do so, you need to run Tails from a USB stick installed using <i>Tails Installer</i>."
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:360
#, python-brace-format
msgid "Remove {packages} from your additional software?"
-msgstr "Remove {packages} from your additional software?"
+msgstr ""
#. Translators: Don't translate {packages}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:364
#, python-brace-format
msgid "This will stop installing {packages} automatically."
-msgstr "This will stop installing {packages} automatically."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:366
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:154
msgid "Remove"
-msgstr "Remove"
-
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "Cancel"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
-msgstr "Installing your additional software from persistent storage..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:547
msgid "This can take several minutes."
-msgstr "This can take several minutes."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:560
msgid "The installation of your additional software failed"
-msgstr "The installation of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:575
msgid "Additional software installed successfully"
-msgstr "Additional software installed successfully"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:595
msgid "The check for upgrades of your additional software failed"
-msgstr "The check for upgrades of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:597
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:605
msgid ""
"Please check your network connection, restart Tails, or read the system log "
"to understand the problem."
-msgstr "Please check your network connection, restart Tails, or read the system log to understand the problem."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:604
msgid "The upgrade of your additional software failed"
-msgstr "The upgrade of your additional software failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-additional-software-notify:37
msgid "Documentation"
-msgstr "Documentation"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
@@ -318,32 +628,32 @@ msgstr "Documentation"
msgid ""
"Remove {package} from your additional software? This will stop installing "
"the package automatically."
-msgstr "Remove {package} from your additional software? This will stop installing the package automatically."
+msgstr ""
#. Translators: Don't translate {pkg}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:105
#, python-brace-format
msgid "Failed to remove {pkg}"
-msgstr "Failed to remove {pkg}"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:122
msgid "Failed to read additional software configuration"
-msgstr "Failed to read additional software configuration"
+msgstr ""
#. Translators: Don't translate {package}, it's a placeholder and will be
#. replaced.
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:152
#, python-brace-format
msgid "Stop installing {package} automatically"
-msgstr "Stop installing {package} automatically"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:178
msgid ""
"To do so, install some software using <a href=\"synaptic.desktop\">Synaptic "
"Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the "
"command line</a>."
-msgstr "To do so, install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:187
msgid ""
@@ -351,89 +661,85 @@ msgid ""
"some software using <a href=\"synaptic.desktop\">Synaptic Package "
"Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command "
"line</a>."
-msgstr "To do so, unlock your persistent storage when starting Tails and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:197
msgid ""
"To do so, create a persistent storage and install some software using <a "
"href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a "
"href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
-msgstr "To do so, create a persistent storage and install some software using <a href=\"synaptic.desktop\">Synaptic Package Manager</a> or <a href=\"org.gnome.Terminal.desktop\">APT on the command line</a>."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:205
msgid ""
"To do so, install Tails on a USB stick using <a href=\"tails-"
"installer.desktop\">Tails Installer</a> and create a persistent storage."
-msgstr "To do so, install Tails on a USB stick using <a href=\"tails-installer.desktop\">Tails Installer</a> and create a persistent storage."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-additional-software-config:252
msgid "[package not available]"
-msgstr "[package not available]"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:52
msgid "Synchronizing the system's clock"
-msgstr "Synchronizing the system's clock"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:53
msgid ""
"Tor needs an accurate clock to work properly, especially for Hidden "
"Services. Please wait..."
-msgstr "Tor needs an accurate clock to work properly, especially for Hidden Services. Please wait..."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-htp-notify-user:87
msgid "Failed to synchronize the clock!"
-msgstr "Failed to synchronize the clock!"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:110
msgid "Lock Screen"
-msgstr "Lock Screen"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:125
msgid "Screen Locker"
-msgstr "Screen Locker"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:131
msgid "Set up a password to unlock the screen."
-msgstr "Set up a password to unlock the screen."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:149
msgid "Password"
-msgstr "Password"
-
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Confirm"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
-msgstr "This version of Tails has known security issues:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-security-check:135
msgid "Known security issues"
-msgstr "Known security issues"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:52
#, sh-format
msgid "Network card ${nic} disabled"
-msgstr "Network card ${nic} disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:53
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}) so it is temporarily disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:62
msgid "All networking disabled"
-msgstr "All networking disabled"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-spoof-mac:63
#, sh-format
msgid ""
"MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\n"
"You might prefer to restart Tails and disable MAC spoofing."
-msgstr "MAC spoofing failed for network card ${nic_name} (${nic}). The error recovery also failed so all networking is disabled.\nYou might prefer to restart Tails and disable MAC spoofing."
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:35
msgid ""
@@ -446,25 +752,25 @@ msgid ""
"\n"
"Or do a manual upgrade.\n"
"See https://tails.boum.org/doc/first_steps/upgrade#manual\""
-msgstr "\"<b>Not enough memory available to check for upgrades.</b>\n\nMake sure this system satisfies the requirements for running Tails.\nSee file:///usr/share/doc/tails/website/doc/about/requirements.en.html\n\nTry to restart Tails to check for upgrades again.\n\nOr do a manual upgrade.\nSee https://tails.boum.org/doc/first_steps/upgrade#manual\""
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:72
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:27
msgid "error:"
-msgstr "error:"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tails-upgrade-frontend-wrapper:73
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:28
msgid "Error"
-msgstr "Error"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:71
msgid "Warning: virtual machine detected!"
-msgstr "Warning: virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:74
msgid "Warning: non-free virtual machine detected!"
-msgstr "Warning: non-free virtual machine detected!"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:77
msgid ""
@@ -472,66 +778,66 @@ msgid ""
"monitor what you are doing in Tails. Only free software can be considered "
"trustworthy, for both the host operating system and the virtualization "
"software."
-msgstr "Both the host operating system and the virtualization software are able to monitor what you are doing in Tails. Only free software can be considered trustworthy, for both the host operating system and the virtualization software."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/tails-virt-notify-user:81
msgid "Learn more"
-msgstr "Learn more"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:43
msgid "Tor is not ready"
-msgstr "Tor is not ready"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:44
msgid "Tor is not ready. Start Tor Browser anyway?"
-msgstr "Tor is not ready. Start Tor Browser anyway?"
+msgstr ""
#: config/chroot_local-includes/usr/local/bin/tor-browser:45
msgid "Start Tor Browser"
-msgstr "Start Tor Browser"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:35
msgid "Tor Status"
-msgstr "Tor Status"
+msgstr ""
#: config/chroot_local-includes/usr/share/gnome-shell/extensions/torstatus@tails.boum.org/extension.js:50
msgid "Open Onion Circuits"
-msgstr "Open Onion Circuits"
+msgstr ""
#. Translators: Don't translate {volume_label} or {volume_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:58
#, python-brace-format
msgid "{volume_label} ({volume_size})"
-msgstr "{volume_label} ({volume_size})"
+msgstr ""
#. Translators: Don't translate {partition_name} or {partition_size},
#. they are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:63
#, python-brace-format
msgid "{partition_name} ({partition_size})"
-msgstr "{partition_name} ({partition_size})"
+msgstr ""
#. Translators: Don't translate {volume_size}, it's a placeholder
#. and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:68
#, python-brace-format
msgid "{volume_size} Volume"
-msgstr "{volume_size} Volume"
+msgstr ""
#. Translators: Don't translate {volume_name}, it's a placeholder and
#. will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:107
#, python-brace-format
msgid "{volume_name} (Read-Only)"
-msgstr "{volume_name} (Read-Only)"
+msgstr ""
#. Translators: Don't translate {partition_name} and {container_path}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:115
#, python-brace-format
msgid "{partition_name} in {container_path}"
-msgstr "{partition_name} in {container_path}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {path_to_file_container},
#. they are placeholders and will be replaced. You should only have to
@@ -540,14 +846,14 @@ msgstr "{partition_name} in {container_path}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:122
#, python-brace-format
msgid "{volume_name} – {path_to_file_container}"
-msgstr "{volume_name} – {path_to_file_container}"
+msgstr ""
#. Translators: Don't translate {partition_name} and {drive_name}, they
#. are placeholders and will be replaced.
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:128
#, python-brace-format
msgid "{partition_name} on {drive_name}"
-msgstr "{partition_name} on {drive_name}"
+msgstr ""
#. Translators: Don't translate {volume_name} and {drive_name},
#. they are placeholders and will be replaced. You should only have to
@@ -556,15 +862,15 @@ msgstr "{partition_name} on {drive_name}"
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:135
#, python-brace-format
msgid "{volume_name} – {drive_name}"
-msgstr "{volume_name} – {drive_name}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:222
msgid "Wrong passphrase or parameters"
-msgstr "Wrong passphrase or parameters"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:224
msgid "Error unlocking volume"
-msgstr "Error unlocking volume"
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -573,11 +879,11 @@ msgstr "Error unlocking volume"
msgid ""
"Couldn't unlock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't unlock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:330
msgid "One or more applications are keeping the volume busy."
-msgstr "One or more applications are keeping the volume busy."
+msgstr ""
#. Translators: Don't translate {volume_name} or {error_message},
#. they are placeholder and will be replaced.
@@ -586,37 +892,37 @@ msgstr "One or more applications are keeping the volume busy."
msgid ""
"Couldn't lock volume {volume_name}:\n"
"{error_message}"
-msgstr "Couldn't lock volume {volume_name}:\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume.py:338
msgid "Locking the volume failed"
-msgstr "Locking the volume failed"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:83
msgid "No file containers added"
-msgstr "No file containers added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_list.py:98
msgid "No VeraCrypt devices detected"
-msgstr "No VeraCrypt devices detected"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:40
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:1
msgid "Unlock VeraCrypt Volumes"
-msgstr "Unlock VeraCrypt Volumes"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:114
msgid "Container already added"
-msgstr "Container already added"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:115
#, python-format
msgid "The file container %s should already be listed."
-msgstr "The file container %s should already be listed."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:131
msgid "Container opened read-only"
-msgstr "Container opened read-only"
+msgstr ""
#. Translators: Don't translate {path}, it's a placeholder and will be
#. replaced.
@@ -625,205 +931,205 @@ msgstr "Container opened read-only"
msgid ""
"The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n"
"{error_message}"
-msgstr "The file container {path} could not be opened with write access. It was opened read-only instead. You will not be able to modify the content of the container.\n{error_message}"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:138
msgid "Error opening file"
-msgstr "Error opening file"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:160
msgid "Not a VeraCrypt container"
-msgstr "Not a VeraCrypt container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:161
#, python-format
msgid "The file %s does not seem to be a VeraCrypt container."
-msgstr "The file %s does not seem to be a VeraCrypt container."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:163
msgid "Failed to add container"
-msgstr "Failed to add container"
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:164
#, python-format
msgid ""
"Could not add file container %s: Timeout while waiting for loop setup.\n"
"Please try using the <i>Disks</i> application instead."
-msgstr "Could not add file container %s: Timeout while waiting for loop setup.\nPlease try using the <i>Disks</i> application instead."
+msgstr ""
#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/unlock_veracrypt_volumes/volume_manager.py:209
msgid "Choose File Container"
-msgstr "Choose File Container"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:38
msgid "Do you really want to launch the Unsafe Browser?"
-msgstr "Do you really want to launch the Unsafe Browser?"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:40
msgid ""
"Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly "
"use the Unsafe Browser if necessary, for example\\nif you have to login or "
"register to activate your Internet connection."
-msgstr "Network activity within the Unsafe Browser is <b>not anonymous</b>.\\nOnly use the Unsafe Browser if necessary, for example\\nif you have to login or register to activate your Internet connection."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:51
msgid "Starting the Unsafe Browser..."
-msgstr "Starting the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:52
msgid "This may take a while, so please be patient."
-msgstr "This may take a while, so please be patient."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:57
msgid "Shutting down the Unsafe Browser..."
-msgstr "Shutting down the Unsafe Browser..."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:58
msgid ""
"This may take a while, and you may not restart the Unsafe Browser until it "
"is properly shut down."
-msgstr "This may take a while, and you may not restart the Unsafe Browser until it is properly shut down."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:70
msgid "Failed to restart Tor."
-msgstr "Failed to restart Tor."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:84
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:1
msgid "Unsafe Browser"
-msgstr "Unsafe Browser"
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:91
msgid ""
"Another Unsafe Browser is currently running, or being cleaned up. Please "
"retry in a while."
-msgstr "Another Unsafe Browser is currently running, or being cleaned up. Please retry in a while."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:99
msgid "Failed to setup chroot."
-msgstr "Failed to setup chroot."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:104
msgid "Failed to configure browser."
-msgstr "Failed to configure browser."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:110
msgid ""
"No DNS server was obtained through DHCP or manually configured in "
"NetworkManager."
-msgstr "No DNS server was obtained through DHCP or manually configured in NetworkManager."
+msgstr ""
#: config/chroot_local-includes/usr/local/sbin/unsafe-browser:121
msgid "Failed to run browser."
-msgstr "Failed to run browser."
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/Report_an_error.desktop.in.h:1
msgid "Report an error"
-msgstr "Report an error"
+msgstr ""
#: ../config/chroot_local-includes/etc/skel/Desktop/tails-documentation.desktop.in.h:1
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:1
msgid "Tails documentation"
-msgstr "Tails documentation"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:1
msgid "Root Terminal"
-msgstr "Root Terminal"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/root-terminal.desktop.in.h:2
msgid "Opens a terminal as the root user, using gksu to ask for the password"
-msgstr "Opens a terminal as the root user, using gksu to ask for the password"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-documentation.desktop.in.h:2
msgid "Learn how to use Tails"
-msgstr "Learn how to use Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tails-about.desktop.in.h:2
msgid "Learn more about Tails"
-msgstr "Learn more about Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:1
msgid "Tor Browser"
-msgstr "Tor Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/tor-browser.desktop.in.h:2
msgid "Anonymous Web Browser"
-msgstr "Anonymous Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:2
msgid "Browse the World Wide Web without anonymity"
-msgstr "Browse the World Wide Web without anonymity"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unsafe-browser.desktop.in.h:3
msgid "Unsafe Web Browser"
-msgstr "Unsafe Web Browser"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/unlock-veracrypt-volumes.desktop.in.h:2
msgid "Mount VeraCrypt encrypted file containers and devices"
-msgstr "Mount VeraCrypt encrypted file containers and devices"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/applications/org.boum.tails.additional-software-config.desktop.in.h:2
msgid ""
"Configure the additional software installed from your persistent storage "
"when starting Tails"
-msgstr "Configure the additional software installed from your persistent storage when starting Tails"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/desktop-directories/Tails.directory.in.h:2
msgid "Tails specific tools"
-msgstr "Tails specific tools"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.root-terminal.policy.in.h:1
msgid "To start a Root Terminal, you need to authenticate."
-msgstr "To start a Root Terminal, you need to authenticate."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:1
msgid "Remove an additional software package"
-msgstr "Remove an additional software package"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/polkit-1/actions/org.boum.tails.additional-software.policy.in.h:2
msgid ""
"Authentication is required to remove a package from your additional software"
" ($(command_line))"
-msgstr "Authentication is required to remove a package from your additional software ($(command_line))"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:61
msgid "File Containers"
-msgstr "File Containers"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:80
msgid "_Add"
-msgstr "_Add"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:86
msgid "Add a file container"
-msgstr "Add a file container"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:103
msgid "Partitions and Drives"
-msgstr "Partitions and Drives"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/main.ui.in:121
msgid ""
"This application is not affiliated with or endorsed by the VeraCrypt project"
" or IDRIX."
-msgstr "This application is not affiliated with or endorsed by the VeraCrypt project or IDRIX."
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:29
msgid "_Open"
-msgstr "_Open"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:38
msgid "Lock this volume"
-msgstr "Lock this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:52
msgid "_Unlock"
-msgstr "_Unlock"
+msgstr ""
#: ../config/chroot_local-includes/usr/share/tails/unlock-veracrypt-volumes/volume.ui.in:61
msgid "Detach this volume"
-msgstr "Detach this volume"
+msgstr ""
#: ../config/chroot_local-includes/usr/local/share/mime/packages/unlock-veracrypt-volumes.xml.in.h:1
msgid "TrueCrypt/VeraCrypt container"
-msgstr "TrueCrypt/VeraCrypt container"
+msgstr ""
diff --git a/te.po b/te.po
index f5368ff07..d81b9f767 100644
--- a/te.po
+++ b/te.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Telugu (http://www.transifex.com/otf/torproject/language/te/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/th.po b/th.po
index 5efa81a56..6c8278ab9 100644
--- a/th.po
+++ b/th.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Thai (http://www.transifex.com/otf/torproject/language/th/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/tr.po b/tr.po
index c926d2125..ceebd14d1 100644
--- a/tr.po
+++ b/tr.po
@@ -29,9 +29,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-14 08:32+0000\n"
-"Last-Translator: Kaya Zeren <kayazeren(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Turkish (http://www.transifex.com/otf/torproject/language/tr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -118,6 +118,322 @@ msgstr "_Başlat"
msgid "_Exit"
msgstr "Çı_kış"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "İptal"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "Onayla"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -292,12 +608,6 @@ msgstr "Bu işlem otomatik {packages} kurulumunu durduracak."
msgid "Remove"
msgstr "Kaldır"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "İptal"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "Ek yazılımınız kalıcı depolama alanınızdan kuruluyor..."
@@ -422,10 +732,6 @@ msgstr "Ekran kilidini açmak için bir parola ayarlayın."
msgid "Password"
msgstr "Parola"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "Onayla"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "Bu Tails sürümünde bilinen bazı güvenlik sorunları var: "
diff --git a/uk.po b/uk.po
index 353f8cf2e..845d2c780 100644
--- a/uk.po
+++ b/uk.po
@@ -18,9 +18,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Ukrainian (http://www.transifex.com/otf/torproject/language/uk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -107,6 +107,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -281,12 +597,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -411,10 +721,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/ur.po b/ur.po
index f1680ef86..b39ba3ee4 100644
--- a/ur.po
+++ b/ur.po
@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Urdu (http://www.transifex.com/otf/torproject/language/ur/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -97,6 +97,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -271,12 +587,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -401,10 +711,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/uz.po b/uz.po
index abb347f02..5bc024c2c 100644
--- a/uz.po
+++ b/uz.po
@@ -7,9 +7,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Uzbek (http://www.transifex.com/otf/torproject/language/uz/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -96,6 +96,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -270,12 +586,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -400,10 +710,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/vi.po b/vi.po
index d0160055c..ca53b6fbd 100644
--- a/vi.po
+++ b/vi.po
@@ -9,9 +9,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 13:45+0000\n"
-"Last-Translator: carolyn <carolyn(a)anhalt.org>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Vietnamese (http://www.transifex.com/otf/torproject/language/vi/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -98,6 +98,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -272,12 +588,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -402,10 +712,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/zh_CN.po b/zh_CN.po
index 5f7bf3cbb..6217eb8db 100644
--- a/zh_CN.po
+++ b/zh_CN.po
@@ -31,9 +31,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-20 14:53+0000\n"
-"Last-Translator: ciaran <ciaranchen(a)qq.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (China) (http://www.transifex.com/otf/torproject/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -120,6 +120,322 @@ msgstr "启动(_L)"
msgid "_Exit"
msgstr "退出(_E)"
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr "取消"
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr "确认"
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -294,12 +610,6 @@ msgstr "这将导致 {packages}的安装进程自动中止。"
msgid "Remove"
msgstr "移除"
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr "取消"
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr "从持久存储中安装您的附加软件……"
@@ -424,10 +734,6 @@ msgstr "设定解锁屏幕的密码"
msgid "Password"
msgstr "密码"
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr "确认"
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr "该版本 Tails 的已知安全问题:"
diff --git a/zh_HK.po b/zh_HK.po
index 7dbebb231..2f8e8ae87 100644
--- a/zh_HK.po
+++ b/zh_HK.po
@@ -12,9 +12,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Chi-Hsun Tsai\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/otf/torproject/language/zh_HK/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -101,6 +101,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -275,12 +591,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -405,10 +715,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
diff --git a/zh_TW.po b/zh_TW.po
index b874602c2..6968e6b8d 100644
--- a/zh_TW.po
+++ b/zh_TW.po
@@ -20,9 +20,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Tor Project\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-12 11:57+0200\n"
-"PO-Revision-Date: 2019-08-12 16:11+0000\n"
-"Last-Translator: Hsiu-Ming Chang <cges30901(a)gmail.com>\n"
+"POT-Creation-Date: 2019-08-14 14:11+0200\n"
+"PO-Revision-Date: 2019-08-24 02:11+0000\n"
+"Last-Translator: erinm\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/otf/torproject/language/zh_TW/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -109,6 +109,322 @@ msgstr ""
msgid "_Exit"
msgstr ""
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:386
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1687
+msgid "Direct (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:392
+msgid "Bridge & Proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:398
+msgid "Offline"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:479
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:529
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1080
+msgid "Unlock"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:482
+msgid "Failed to relock persistent storage."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:500
+msgid "Unlocking…"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:533
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:419
+msgid "Cannot unlock encrypted storage with this passphrase."
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:595
+msgid "Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:603
+#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
+#: config/chroot_local-includes/usr/local/bin/tor-browser:46
+msgid "Cancel"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:609
+msgid "Add"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:617
+msgid "Back"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:731
+msgid "Shutdown"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/gui.py:736
+msgid "_Start Tails"
+msgstr ""
+
+#. Translators: please do not translate this string (it is read from
+#. Gtk translation)
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/language.py:139
+msgid "default:LTR"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:91
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:124
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:141
+#, python-brace-format
+msgid ""
+"cryptsetup failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:158
+#, python-brace-format
+msgid ""
+"live-persist failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/persistence.py:172
+#, python-brace-format
+msgid ""
+"umount failed with return code {returncode}:\n"
+"{stdout}\n"
+"{stderr}"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:18
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:56
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1887
+msgid "Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:34
+msgid ""
+"Set up an administration password if you need to perform administrative "
+"tasks. Otherwise, the administration password is disabled for better "
+"security."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:69
+msgid "Enter an administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:95
+#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
+msgid "Confirm"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:109
+msgid "Confirm your administration password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:129
+msgid "Disable"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:160
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1899
+msgid "Windows Camouflage"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:176
+msgid ""
+"This option makes Tails look like Microsoft Windows 10. This can be useful "
+"to avoid attracting suspicion in public places."
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:198
+msgid "Microsoft Windows 10 camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:239
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1891
+msgid "MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:255
+msgid ""
+"MAC address spoofing hides the serial number of your network interface (Wi-"
+"Fi or wired) to the local network. Spoofing MAC addresses is generally safer"
+" as it helps you hide your geographical location. But it might also create "
+"connectivity problems or look suspicious."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:298
+msgid "Spoof all MAC addresses (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:344
+msgid "Don't spoof MAC addresses"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:479
+msgid ""
+"You will configure the Tor bridge and local proxy later on after connecting "
+"to a network."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:531
+msgid "Welcome to Tails!"
+msgstr ""
+
+#. This string will never be displayed in the 1st version of the greeter.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:546
+msgctxt ""
+"\"Take a Tour\" would be an assistant to guide the user through the "
+"available settings."
+msgid ""
+"To get guided through Tails' settings, click on <b>Take a Tour</b> above"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:581
+msgid "Language & Region"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:617
+msgid "Default Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:630
+msgid "Save Language & Region Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:691
+msgid "_Language"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:748
+msgid "_Keyboard Layout"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:806
+msgid "_Formats"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:863
+msgid "_Time Zone"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:924
+msgid "Encrypted _Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:965
+msgid "Show Passphrase"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1037
+msgid "Configure Persistent Storage"
+msgstr ""
+
+#. The label for this placeholder text is not very big, so keep this string
+#. short.
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1065
+msgid "Enter your passphrase to unlock the persistent storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1111
+msgid "Relock Persistent Storage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1126
+msgid "Your persistent storage is unlocked. Restart Tails to lock it again."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1164
+msgid "_Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1204
+msgid "Save Additional Settings"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1262
+msgid "Add an additional setting"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1317
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1895
+msgid "Network Configuration"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1333
+msgid ""
+"If your Internet connection is censored, filtered, or proxied you can "
+"configure a Tor bridge or a local proxy. To work completely offline, you can"
+" disable all networking."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1375
+msgid "Connect directly to the Tor network (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1421
+msgid "Configure a Tor bridge or local proxy"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1465
+msgid "Disable all networking"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1512
+msgid ""
+"The default settings are safe in most situations. To add a custom setting, "
+"press the \"+\" button below."
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1559
+msgid "_Administration Password"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1573
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1745
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:45
+msgid "Off (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1616
+msgid "_MAC Address Spoofing"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1630
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:43
+msgid "On (default)"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1673
+msgid "_Network Connection"
+msgstr ""
+
+#: config/chroot_local-includes/usr/share/tails-greeter/greeter.ui:1731
+msgid "_Windows Camouflage"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:48
+msgid "On"
+msgstr ""
+
+#: config/chroot_local-includes/usr/local/lib/python3/dist-packages/tailsgreeter/utils.py:50
+msgid "Off"
+msgstr ""
+
#: config/chroot_local-includes/usr/local/bin/keepassxc:15
#, sh-format
msgid ""
@@ -283,12 +599,6 @@ msgstr ""
msgid "Remove"
msgstr ""
-#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:367
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:119
-#: config/chroot_local-includes/usr/local/bin/tor-browser:46
-msgid "Cancel"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/sbin/tails-additional-software:545
msgid "Installing your additional software from persistent storage..."
msgstr ""
@@ -413,10 +723,6 @@ msgstr ""
msgid "Password"
msgstr ""
-#: config/chroot_local-includes/usr/local/bin/tails-screen-locker:150
-msgid "Confirm"
-msgstr ""
-
#: config/chroot_local-includes/usr/local/bin/tails-security-check:124
msgid "This version of Tails has known security issues:"
msgstr ""
1
0

24 Aug '19
commit 73174b403978a92b0cbc1114111d19054cf134e4
Author: David Fifield <david(a)bamsoftware.com>
Date: Fri Aug 23 18:31:10 2019 -0600
Add ids to more elements in static/index.html.
---
proxy/static/index.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/proxy/static/index.html b/proxy/static/index.html
index 5607e07..d193d9c 100644
--- a/proxy/static/index.html
+++ b/proxy/static/index.html
@@ -25,7 +25,7 @@
<div class="clear">
- <div class="browser"><div class="padding">
+ <div id="browser" class="browser"><div class="padding">
<h3>Browser</h3>
<p>If your internet access is censored, you should download
@@ -34,7 +34,7 @@
<p class="screenshot"><img src="screenshot.png" alt="Tor Browser screenshot" /></p>
</div></div>
- <div class="extension"><div class="padding">
+ <div id="extension" class="extension"><div class="padding">
<h3>Extension</h3>
<p>If your internet access is <strong>not</strong> censored, you should
@@ -58,7 +58,7 @@
</div>
- <h3>REPORTING BUGS</h3>
+ <h3 id="bugs">REPORTING BUGS</h3>
<p>If you encounter problems with Snowflake as a client or a proxy,
please consider filing a bug. To do so, you will have to,</p>
@@ -78,7 +78,7 @@
to let us know how which part of the Snowflake system is experiencing
problems.</p>
- <h3>EMBED</h3>
+ <h3 id="embed">EMBED</h3>
<p>It is now possible to embed the Snowflake badge on any website:</p>
1
0

23 Aug '19
commit 8d04c68cfd87320b786b858ed267718230565945
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Aug 23 19:58:23 2019 +0000
Update translations for tpo-web
---
contents+ca.po | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/contents+ca.po b/contents+ca.po
index da2e00ae1..afdc24236 100644
--- a/contents+ca.po
+++ b/contents+ca.po
@@ -670,25 +670,28 @@ msgstr "Cerca"
#: templates/contact.html:8
msgid "Chat with us on"
-msgstr ""
+msgstr "Xarreu amb nosaltres al"
#: templates/contact.html:9
msgid "Ask questions about using Tor."
-msgstr ""
+msgstr "Feu preguntes sobre com utilitzar el Tor."
#: templates/contact.html:10
msgid "Discuss Tor-related coding and protocols. Ideas are welcome."
msgstr ""
+"Discutiu sobre el codi i els protocols del Tor. Agraïm les vostres idees."
#: templates/contact.html:11
msgid ""
"Discuss organization and community related topics: meetups, outreach, "
"translation, or website improvements."
msgstr ""
+"Discutiu sobre temes relacionats amb l'organització i la comunitat: "
+"trobades, participació, traducció, o millores del lloc web."
#: templates/contact.html:12
msgid "Watch or join publicly logged team meetings."
-msgstr ""
+msgstr "Mireu o uniu-vos a les nostres reunions públiques."
#: templates/contact.html:13
msgid "Discuss running a Tor relay."
@@ -696,15 +699,15 @@ msgstr ""
#: templates/contact.html:14
msgid "Talk with Tor's global south community."
-msgstr ""
+msgstr "Parleu amb la comunitat del Tor global del sur."
#: templates/contact.html:20
msgid "Find us on Social Media"
-msgstr ""
+msgstr "Trobeu-nos a les xarxes socials"
#: templates/contact.html:34
msgid "Volunteer with Tor"
-msgstr ""
+msgstr "Feu-vos voluntari del Tor"
#: templates/contact.html:38
msgid "Get Involved"
@@ -712,7 +715,7 @@ msgstr "Involucreu-vos"
#: templates/contact.html:44
msgid "Join an email list"
-msgstr ""
+msgstr "Uniu-vos a una llista de correu"
#: templates/contact.html:47
msgid ""
1
0

[translation/exoneratorproperties_completed] Update translations for exoneratorproperties_completed
by translation@torproject.org 23 Aug '19
by translation@torproject.org 23 Aug '19
23 Aug '19
commit 8081ad2c49f1a067972faffa92d91bfb372f423e
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Aug 23 19:45:50 2019 +0000
Update translations for exoneratorproperties_completed
---
id/exonerator.properties | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/id/exonerator.properties b/id/exonerator.properties
index 374e4aae3..0920b876c 100644
--- a/id/exonerator.properties
+++ b/id/exonerator.properties
@@ -21,10 +21,10 @@ summary.invalidparams.noip.title=Tidak tersedia alamat IP
# summary.invalidparams.invalidtimestamp.body=Sorry, %s is not a valid date. The expected date format is %s.
# summary.invalidparams.timestamptoorecent.title=Date parameter too recent
# summary.invalidparams.timestamptoorecent.body=The database may not yet contain enough data to correctly answer this request. The latest accepted data is the day before yesterday. Please repeat your search on another day.
-# summary.serverproblem.nodata.title=Server problem
+summary.serverproblem.nodata.title=Masalah server
# summary.serverproblem.nodata.body.text=The database does not contain any data for the requested date. Please try again later. If this problem persists, please %s!
-# summary.serverproblem.nodata.body.link=let us know
-# summary.negativesamenetwork.title=Result is negative
+summary.serverproblem.nodata.body.link=beritahu kami
+summary.negativesamenetwork.title=Hasilnya salah
# summary.negativesamenetwork.body=We did not find IP address %s on or within a day of %s. But we did find other IP addresses of Tor relays in the same /%d network around the time:
# summary.positive.title=Result is positive
# summary.positive.body=We found one or more Tor relays on IP address %s on or within a day of %s that Tor clients were likely to know.
1
0

[translation/exoneratorproperties] Update translations for exoneratorproperties
by translation@torproject.org 23 Aug '19
by translation@torproject.org 23 Aug '19
23 Aug '19
commit bfee4eab32bf7710a343b7d4bc45899d97fa279e
Author: Translation commit bot <translation(a)torproject.org>
Date: Fri Aug 23 19:45:45 2019 +0000
Update translations for exoneratorproperties
---
id/exonerator.properties | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/id/exonerator.properties b/id/exonerator.properties
index cacd0d1e1..dee27e5ca 100644
--- a/id/exonerator.properties
+++ b/id/exonerator.properties
@@ -21,10 +21,10 @@ summary.invalidparams.invalidtimestamp.title=parameter tanggal salah.
summary.invalidparams.invalidtimestamp.body=Maaf, %s tanggal yang salah. Format tanggal yang diharapkan adalah %s.
summary.invalidparams.timestamptoorecent.title=Parameter tanggal terlalu baru atau terlalu kini
summary.invalidparams.timestamptoorecent.body=Database mungkin belum memiliki data yang cukup untuk memenuhi permintaan ini dengan baik. Data terakhir yang diterima adalah kemarin lusa. Mohon ulangi pencarian anda besok atau di hari lain.
-summary.serverproblem.nodata.title=masalah di server.
+summary.serverproblem.nodata.title=Masalah server
summary.serverproblem.nodata.body.text=database tidak berisi data tanggal yang diminta. Silahkan mengulang lagi nanti. Jika masalah ini masih muncul.silahkan %s!
-summary.serverproblem.nodata.body.link=Agar kami tahu
-summary.negativesamenetwork.title=Hasilnya salah.
+summary.serverproblem.nodata.body.link=beritahu kami
+summary.negativesamenetwork.title=Hasilnya salah
summary.negativesamenetwork.body=Kami tidak menemukan lamat IP %s pada atau antara hari ke %s. Tetapi kami menemukan alamat-alamat IP dari perelay Tor pada jaringan yang sama /%d pada saat yang sama:
summary.positive.title=Hasilnya benar.
summary.positive.body=Kami menemukan satu atau lebih perelay Tor pada alamat IP %s pada atau diantara hari ke %s yang klien Tor nya dikenali.
1
0